Hello all, I am using scGrid ocx for the first time but have come undone ! I am trying to pull some cells from an excel spreadsheet and put them in my scGrid....
Hi All I have a String "FEO CHARGES INCURRED AFTER OR OVERLAP DATE OF DEATHLine 1 - FEOLine 2 - FEO" I want to just grab "Line 1 - FEOLine 2 - FEO" and further...
Thanks, Rob! I am confused as to why it runs on certain machines and not others. It could be because I installed the program earlier on them? I am pretty sure...
Shahid, If I am understanding your question correctly, you can use a statement such as LINE1$=MID$(MYSTRING$,52,12):LINE2$=RIGHT$(MYSTRING$,12) or for the last...
... First, create a module with the following: Option Explicit Global Const WINDING = 2 Global Const ALTERNATE = 1 Global Const RGN_OR = 2 Type POINTAPI x As...
Hello everyone, May I know is there anyone here used this DXAnimatedGIF1 control before? Does it works only in English version of Windows XP? How about...
Hi, I may not be understanding your request ? Does this help - 'I place a textbox on form and set to multiline. 'I typed into it's Text property 4 lines of...
Hi, I need help on changing some of the settings under the "Regional and Language Options". Please open Control Panel ---> Regional and Language Options ---> ...
how about transparent form ... First, create a module with the following: Option Explicit Global Const WINDING = 2 Global Const ALTERNATE = 1 Global Const...
... http://vb.mvps.org/samples/project.asp?id=Translucent http://vb.mvps.org/samples/project.asp?id=CustomBlt Regards, Shawn K. Hall http://12PointDesign.com/...
I am automating an excell spreadsheet through VB, to automatically log test reults from an functional board tester. I got it working and debugged on my system....
... log ... ocx ... is ... someone ... rectifying ... Managed to get this one sorted, found some info on MSDN. For some reason adding a timer and firing the...
I have a DLL written for VC 6 that I want to use in a VB6 app. Here are the first few lines of the header: // Include file for hct99hid.dll V1.38 (VisualC...
Ok, i'll take a stab at this.. If i'm correct about this, you cannot have opening underscores "__" being used in VB. The underscore is a C/C++ interface. So,...
The underscore is the line continuation character in VB 6. But there is still a way to use the underscore as illustrated here. Put the underscore and the...
hello, I'm using VB6, with the reference "Microsoft DAO 3.6 Object Library". After I installed the exe file create by VB6, i get the following error message...
Here is a prob I have so far. Below is the VB6 code... Option Explicit Private Declare Sub addLongs Lib "myDLLFile" (ByRef number1 As Long, ByVal number2 As...
you installer is I think grabbing part of the jet libraries and not all. You could try downloading the jet SP from Microsoft and installing that on the...
... The Jet drivers should not be installed through the VB installer - at least not directly. Different file versions are required by different operating...
Hello, I'm using VB6. I wish to create a setup for win98. So I use DAO350.dll and connect to Access. I got error : Class not registered. Looking for object...
Good Day all; I have written a program in VB Express in which a button control displays a pdf file. All works good on my own computer, but when the program is...
This should help: http://support.microsoft.com/default.aspx/kb/288706 ... -- Don Roberts - don@... http://www.myspace.com/donroberts [Non-text portions...
hello, i created a vb project, with a splash form & a main form. i set the splash form as the start up screen and i used "Load frmMain" command in the splash...
Is there a reason that you use Load instead of Show ? Would this code in your Splash Form do the trick ? Private Sub cmdShowFrmMain_Click() Unload Me ...
yup, i want to show the splash screen to let user see 1st. then i need to do some database reading and setup the display screen for the frmmain inside the...
If you posted a simple example of your code, we could work out what is wrong. or You could try this approach - http://vb-helper.com/howto_splash_screen.html ...