- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 1
6 Posted Topics
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:
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" …
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 …
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 …
[CODE]x=worksheets("Sheet2").range("A1")[/CODE] You are using a named range, it is strange it is not getting picked up.
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: …
The End.
davesexcel