December 9th, 2003 08:19 AM
Here is an email response I received directly from Seagate CR several years ago when I ask that question. You may be able to gleen something from this:
Hi Michael,
You will basically need to...
October 23rd, 2003 07:44 AM
Thanks, Cimperiali! I'll try it!
October 22nd, 2003 01:01 PM
Try using Sendkeys "{F4}" when the dropdown has focus.
Cubbie
October 22nd, 2003 12:48 PM
Dores anyone know how I could change the Font, Font Style, Font size, and page setup information (specifically margins) in Notepad by using VBA? I have a third party application that I can program...
September 30th, 2003 08:23 AM
'Microsoft Scripting Runtime
Dim fso As FileSystemObject
Set fso = New FileSystemObject
If Not fso.FolderExists("Path") Then fso.CreateFolder("Path")
September 24th, 2003 12:26 PM
Here's the code way just for fun! After all this is the "VB" forum.
Option Explicit
Private Declare Function GetVersionEx Lib "kernel32" Alias "GetVersionExA" (lpVersionInformation As...
September 18th, 2003 07:03 AM
Try QueryDef object if using DAO.
In ADO use Command object.
September 11th, 2003 03:15 PM
'Try this.
'If you put a line number in that is not valid you will not get a msg
'Set Microsoft Scripting Runtime as a reference
Dim fso As FileSystemObject
Dim ts As TextStream
Dim f As...
September 10th, 2003 02:42 PM
'Set Microsoft Scripting Runtime as a reference
The following uses the FileSystemObject and TextStream Object to read from a file. The message box will display the last line of the text file.
...
September 10th, 2003 01:58 PM
I am doing client side scripting in .NET. The scripting seems to work find until the third time. The thid time I enter something in a textbox the scripting fails to run. Anyone else have this problem...
August 19th, 2003 02:32 PM
You could try creating a batch file using the ASSOC command to associate files and then call the batch file in your program. Never tried this so I can't guarantee anything.
Cubbie
August 6th, 2003 05:36 AM
Thanks Coolbiz! I'll give it a try.
Cubbie
August 5th, 2003 05:26 AM
OnBlur, however, I am open for suggestions.