Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
20% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
0 Endorsements
Ranked #4K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

6 Posted Topics

Member Avatar for davesexcel

I can't get the owner account to access the internet, the guest account was on and the user okayed windows to be updated and internet explorer to be updated, now the owner account can get onto the internet, only the guest account,:rolleyes:

Member Avatar for reganstar
0
100
Member Avatar for Smithers

You can add a button from the activeX Contols, then write a code for that button in the worksheet module Sub AddButtonMakeMacro() Dim MySht As Worksheet Dim MyOle As OLEObject Set MySht = ActiveSheet MySht.Range("H1").Select Set MyOle = ActiveSheet.OLEObjects.Add(ClassType:="Forms.CommandButton.1", _ Left:=237.75, Top:=21, Width:=93, Height:=22.5) With MyOle .Object.Caption = "Click Me" …

Member Avatar for davesexcel
0
267
Member Avatar for gerchi152

If you have a cell selected in the row you want copied, then you can use the code below to insert the copied rows to the next row. Sub Button2_Click() Range(Cells(ActiveCell.Row, 1), Cells(ActiveCell.Row, 16)).Copy Cells(ActiveCell.Row + 1, 1).Insert Shift:=xlDown Application.CutCopyMode = 0 End Sub 'Here is you original code cleaned …

Member Avatar for davesexcel
0
392
Member Avatar for davesexcel

My Form Looks like this [Click Here](http://www.davesexcel.com/LineForm.jpg) I have edited the code I got from MSN, I enter Numbers in the textboxes and click "Draw Line" button. If the user wants to enter new numbers in the textbox, and click the button again, how can that line be deleted before …

0
52
Member Avatar for SimonLeefe

[CODE]x=worksheets("Sheet2").range("A1")[/CODE] You are using a named range, it is strange it is not getting picked up.

Member Avatar for SimonLeefe
0
548
Member Avatar for davesexcel

I have heard of sites beeing able to analys results for hyjack this , I can't find it, but I see that results are analysed here, can somebody help me get this computer not to be so slugish [QUOTE]Logfile of HijackThis v1.99.1 Scan saved at 9:48:39 AM, on 29/12/2006 Platform: …

Member Avatar for gerbil
0
115

The End.