Visual Basic 6.0 (VB6) is the third generation event-driven programming language and integrated development environment (IDE) from Microsoft for its COM programming model.
0
votes
1answer
44 views
Loops and depreciation [closed]
In my assignment, we're supposed to show a depreciation total over several years. I almost got it but the depreciation total is supposed to increase but mine is decreasing. I have:
Dim Cost As ...
3
votes
0answers
113 views
C# COM control in VB6: Make a container out of the control
I have a c# control that I use inside of VB6, which is basically a panel with rounded corners. I'd like to know if there is a way to make that control a container, sort of like a Frame is a container. ...
0
votes
0answers
150 views
VB6 treeview control Windows 8
VB6 app works fine on Windows 8 with one exception:
Display form with treeview. Displays correctly.
Click button which displays another form used for entry.
When the new form is dismissed (and a new ...
3
votes
3answers
178 views
Better Grid for VB6 that supports row and column spanning?
Can anyone suggest me better grid for vb 6 which have row-span, column-span facility and can work with around 150000 rows.
So we can achieve following kind of solution.
2
votes
4answers
69 views
How to hide command line arguments
We have a structure of calling helper exes and passing them command line arguments to control their execution. Since command line arguments can be seen and hence can be passed by other applications. ...
1
vote
1answer
257 views
Append data to Excel column using VB6 ADO
I am testing a sample VB6 application which inserts text from TextBox to Excel.
I would like to find the last used row in the column, and append text from txt1 TextBox at the next row whenever user ...
4
votes
2answers
107 views
Difficulty understanding enums
Why can a form have a public enum block if it cannot have a public constant declaration?
Also if I have a public variable in the declaration section of a form
I can reference it throughout the ...
3
votes
2answers
206 views
How to read command line parameters passed from VB6 IDE in a .NET library?
I have app1.exe (built with VB6) which takes a bunch of command line parameters. It calls lib1.dll - a C#/.NET interop library which needs access to the command line parameters of the EXE. I use ...
0
votes
2answers
51 views
Add mysql table column dynamically
How to add table column in mysql Dynamically?
I have a vb6 code and mysql as database.
Suppose I want to enter new column in the textbox then the value of textbox will be a column in mysql.
Is ...
0
votes
2answers
94 views
Changing the location of an existing VBA Reference from C:\Windows\system32\ to a shared drive
I've been trying for a while now to get a reference file to be loaded externally to no avail.
To be specific I am trying to load a "Microsoft Date and Time Picker Control 6.0(SP4)" which usually ...
0
votes
3answers
169 views
How to automatically close a modal form
I have a VB6 project and I implement a session timer with an automatic logout.
My problem is if a modal form is opened, this form is not in Forms Collection so I can't know if this form is opened in ...
1
vote
1answer
153 views
Sending messages with HTML contents using the MAPI control in VB6
How can I send a mail using MAPI with an HTML body? I need to create table in a message body.
I'm using vb6 and the MAPI control. Any ideas?
Function MailSend(sSendTo As String, sSubject As String, ...
1
vote
1answer
165 views
VB - Split String of Serial Data and Log Separately Into Excel
I have a string of data in the form "X0507Y0512Z0413". I am using VB to read the data from a pic microcontroller, and load the data into excel using VB script found on web. I can get the first line ...
4
votes
4answers
300 views
Error 0x800706F7 “The stub received bad data” on Windows XP SP3
In my VB6 application I make several calls to a COM server my team created from a Ada project (using GNATCOM). There are basically 2 methods available on the COM server. Their prototypes in VB are:
...
2
votes
1answer
65 views
is there equivalent of RecordSet.bookmark in DataSet C#
I wanted to migrate a vb6 code in C#, my question is : if there is an equivalent of RecordSet.bookmark in DataSet C#
Equivalent VB6 code:
pos = rsADO.Bookmark
rsADO is ADODB.Recordset type
0
votes
1answer
141 views
Checking processor is 32 bit or 64 bit [duplicate]
When a processor is considered 32 bit or 64 bit? I want to check whether a PC is having 32 bit or 64 bit processor. So how can i check it in a vb6 code?
While i was researching about it i got that i ...
0
votes
1answer
120 views
VB6: Different Proxy for every WebBrowser Control?
So far, i have never found any documentation to use different proxies for each and every webbowser control. Is there any possible hack/tweak to use different proxy for different webbrowser control?
...
0
votes
1answer
302 views
How to change the Encoding of an File in VB 6.0?
I am having huge external files with the "ANSI" and "UCS-2 Little Endian" encoding formats.
Now i Want to change the file encoding format into an UTF-8 using the Visual Basic 6.0.
And i dont want to ...
0
votes
0answers
39 views
VB6: How to make inet asynchronous?
my vb6 code currently uses the code below for inet control to retrive data. But it make my progarm slow because of the loop as it make its synchronous. Hoe can i make inet asynchronous?
HTML = ...
1
vote
1answer
444 views
Record Selection Formula in subreport vb6.0
I have a crystal report rpt1. I am using rpt1 as subreport of rpt2.
I have following selection formula in my rpt1
rpt1.RecordSelectionFormula = " {BANK.PRID}= " & PRID & " "
Here Bank is a ...
1
vote
2answers
85 views
How to retrive form value using execScript in VB6?
Say, this is my code
Dim Address as string
WebBrowser1.Document.parentWindow.execScript("var a =
document.form1.address.text", "JavaScript")
how can i extract the value of ...
0
votes
2answers
245 views
Get value of selected field in vb6 data grid
I'm using data grid for my vb6 project .
How can I know which record is selected by user?
0
votes
1answer
70 views
VB6 copy/paste image over RDP
I have a problem where I'm using the Snipping Tool in Windows 7 to cut a bitmap and copy it to the clipboard on my local computer, then paste the clipboard bitmap in another application (VB6 legacy ...
1
vote
1answer
211 views
textbox input as column header in listview and table column in vb6 and mysql
Is it possible to make the input of textbox as column header in listview and table column in mysql?
I want to make something like this:
textbox: name
listview columnheader: name
table column: name
...
1
vote
1answer
85 views
Convert 8-bytes array into Double
(Talking about Visual Basic 6)
I was able to find how to convert Double into 8-bytes array, but not the viceversa.
Before I start to try to code it, is there some routine to do it (like the ...
0
votes
1answer
98 views
UserControl in vb6.0 getting border in Windows 7
In my VB6 application, a UserControl is used. Recently we moved to Windows 7 from Windows XP. In Windows 7 the UserControl is getting borders on the top and the left.
Please tell me how to remove ...
0
votes
1answer
110 views
Check if file contains string in VB6
How do I check if a certain textfile contains a certain string?
Would I have to actually open the file and use InStr(), or is there a more convenient way to do it?
By the way, the language is Visual ...
1
vote
1answer
134 views
Upload file via ftp
How would I upload a textfile to my ftp server using Visual Basic 6.0?
I want to upload "C:\hello.txt" to "files/hello.txt" on my server.
I've previously tried this code, without success:
Function ...
0
votes
1answer
90 views
ADODB Recordset Binding in Windows 7
I have an old VB6 application that uses ADODB recorsets with ODBC connections. The application hs worked fine on Windows XP for years. I tried installing it on 3 different Windows 7 64 bit machines ...
3
votes
2answers
70 views
Preserve Zeroes Before Decimal When Converting Double to String
Using VB6, when I have a double i = -0.1 if I convert it to a string with strTemp = Str(i) I lose the leading 0 before the decimal and end up with just -.1
How do I keep the leading 0 before the ...
0
votes
2answers
260 views
How to draw in a picturebox in vb6
i have used loads of websites for this but none worked so i am hoping i could get a correct answer
i have tried this could any one tell me whats wrong with it:
Private sub Picture1_mouseDown
...
3
votes
1answer
87 views
VB6 - releasing only a few DLLs having heavy dependency without breaking any references
I have to release a few changes in selected DLLs (simple changes internal to methods - nothing that breaks the compatibility according to this)
So the generally accepted method is to maintain the old ...
3
votes
4answers
223 views
check OS and processor is 32 bit or 64 bit?
I want vb6 code to check OS is 32 bit or 64 bit and also processor is 32 bit or 64 bit.So please help me to get these codes.
In vb.net i can use Environment.Is64BitOperatingSystem Property and it ...
0
votes
1answer
125 views
VB6 WH_GETMESSAGE message hook
hello friends,i want to monitor an IP address control's(created by CreateWindowEx) input events which is on a form.i have used the API SetWindowsHookEx to hook WH_GETMESSAGE message ,but now i cannt ...
2
votes
1answer
93 views
Error 91 using CreateObject on XP machines
I have an old VB6 app that I've distributed to several users running XP, Windows 7 and Windows 8. The following code is throwing an Error 91 ""Object variable or With block variable not set".
...
-4
votes
2answers
57 views
VIsual basic scoring for form1 and form2 displayed in a label in form3 [closed]
i have developed a quiz program containing two forms and one module. i have also written the code to calculate the score for form 1 by clicking an exit button and a message is displayed showing the ...
2
votes
2answers
90 views
How to deal with enter to tab in vb6?
Public Function EnterToTab(KeyAscii As Integer)
If KeyAscii = vbKeyReturn Then
SendKeys "{tab}"
KeyAscii = 0
End If
End Function
Private Sub txtUserCode_KeyPress(KeyAscii As ...
1
vote
2answers
115 views
How to turn on or off the Caps Lock key in VB6?
How to turn on or off the Caps Lock key in Visual Basic6 ?
-1
votes
1answer
62 views
Regarding VB6 - Environment variable
Regarding VB6 :
I want to call 1 batch file using Environment variable, I am trying following code but i think some thing is missing that why its not working :
Code :
Dim sPathUser As String
...
0
votes
2answers
198 views
Interacting with VB6 client using hidden control in embedded web browser control
I'm having difficulty trapping a programmatically triggered click event on a hidden button control from a ASP.NET MVC 4 web app inside a VB6 thick client (which is using a web browser control). I'm ...
0
votes
1answer
127 views
WebBrowser.Navigate refresh every X minutes
I am making an application using VB6 in which a WebBrowser window is launched using this code, and it refreshes the page every 3 minutes
Private Sub Form_Load()
WebBrowser1.Navigate ...
0
votes
1answer
230 views
Use commands in VB6 Data Environment
I am working with vb6 project and i have a big problem.
I use data environment for my project but I can not use commands.
For example in button when I write " dataenvironment1.rsmycommand" vb can ...
1
vote
6answers
81 views
Declare multi-array
Sorry for the rookie question, but currently if I need multi-array (Array of Arrays), I declare it as Variant:
Dim ma() As Variant
ReDim ma(1 To 3)
ma(1) = Array(1, 2, 3)
Besides it works, I wish ...
-1
votes
1answer
162 views
Create a .php or .txt file with VB6
So I'm trying to finish up my website, but since it has a lot of pages I want to speed up the process.
Every post I make needs a .SQL file with the data that will later be used in the .php file to ...
0
votes
1answer
96 views
Faster approach to replace part of XML file: XMLDocument or TextStream?
I have an app in VB6 to store sales information into database. While user is entering data I want to store it into a local XML file so as to avoid losing data because of network failure, etc. So when ...
0
votes
1answer
50 views
Crystal report4.6.1.0 connection to Mysql
How to set path to a MySQL database which is installed on another server, e.g. 192.168.1.35?
strReportName = "Schedule.rpt"
intReportDestination = crptToWindow
With rptAnnSalExp
.ReportFileName ...
0
votes
1answer
81 views
How to use “0” before number in Visual Basic? [duplicate]
I want to print the result in my program like this: 06:03 in visual basic 6
How can I add "0" before numbers ?
m=6
h=3
print m;" : ";h
0
votes
2answers
417 views
VB6 — using POST & GET from URL and displaying in VB6 Form
How can my VB6 form POST 2 vars, pull the results from a URL and then assign a VB6 var to the results?
I need someone to show me VERY basic VB6 sample code or point me in the right direction. This is ...
1
vote
1answer
64 views
How to trace ADO calls
Friends, Is there a tool available to trace all sql statements passed between ADO (legacy vb6) (NOT ADO.NET) and database server? Appreciate your help
0
votes
2answers
287 views
How to nest multiple IF statements in Visual Basic 6?
How can I use an if in another if in Visual Basic 6?
For example, in C++ I can start my statements with { and finish them with }, and I can use another if in the first statement.
For example:
if ...





