February 21st, 2011 12:09 PM
I found going through the code in this sample was a great help.
http://msdn.microsoft.com/en-us/library/ms720416(v=vs.85).aspx
The project "RecoVB" includes most of the functions you might...
February 21st, 2011 08:01 AM
You need to set a reference to the Ms Excel 12.0 library
Dim objExcel As Excel.Application
Dim objWorkbook As Excel.Workbook
Dim objWorksheet As Excel.Worksheet
Dim strExcelFileName As...
March 24th, 2010 06:20 AM
Is This Thread still unresolved ?
I have played around with it a bit and it seems to work fine for me.
March 23rd, 2010 08:44 AM
Thks WoF
Using the keybd_event approach with SendMessage() also seems to work.ie:
Call keybd_event(16, 0, 0, 0)
Sleep 100:DoEvents
Call SendMessage(hwnd, &HF5, 0&, 0&) ' Button Click
Call...
March 23rd, 2010 03:10 AM
LOL the "****" say "Shift"
I am not swearing!!!
March 23rd, 2010 03:07 AM
I guess you are trying to select a rang of items in a list like in windows explorer or the likes.
**** lets you select between two points ctrl lets you select additional items.
This is some code...
March 17th, 2010 11:28 AM
March 16th, 2010 06:59 PM
This is a project that uses the functions that I use.
It is developed in VB.Net 2008 and I am using Windows 7 which has quite a different UI than XP
First open "Map Network Drive"
Press...
March 16th, 2010 11:58 AM
yeh but the box he is talking about is a drop down combo box, not a text box and you need to select an item from the list before you can apttempt to get the text from it. This is why he wants to...
March 15th, 2010 10:56 PM
Hi Groom
I may be totally on a different wavelength but I do quite a bit of this stuff and it strikes me that the stuff you are copying from the "Map Network Drive" window is data that resides...
March 15th, 2010 09:22 PM
Leave out the "Item" bit
The Correct code is Timer1.enabled=False
not Timer1.Item.Enabled=false
I think this solves your problem
March 11th, 2010 07:45 PM
That does it Sotoasty Thanks for that.
You were on the right track dglenna thanks also.
BTW the 101 code articles are great.
March 10th, 2010 06:36 AM
Thanks for replying dglienna.
When I log in on the main machine the remote machine goes to the user log in screen. This has to happen cos 2 users can't log in to a windows machine at the same...