0
votes
6answers
119 views
Any cheap or free IDE’s out there for VB6 programming?
Any cheap or free IDE's out there for VB6 programming? or is MS the only way to go?
Thanks.
0
votes
2answers
36 views
In VB6, how do I have a program open at a specific pixel-based resolution?
I need my vb6 application to open to a precise dimensions, in pixels. How do I do this?
3
votes
1answer
22 views
Can .local files be used during VB6 compile to avoid registering COM ocx and dll files
In an attempt to keep my build machine clean can .local files be used during the compile of an application or is there a better way to keep the bloat off the machine.
1
vote
3answers
37 views
How do I intercept DLL load/unload events in a VB6 ActiveX DLL?
I've inherited a legacy classic ASP application that uses VB6 ActiveX DLLs to perform the business logic.
I'd like to track the points at which the DLLs are loaded and unloaded. …
0
votes
1answer
23 views
If I registered a TLB do I still need to register the ocx in order to compile?
I am trying to compile a vb6 application and I can't register the ocx files. In order to attempt to compile I have replaced the Object= lines in the .vbp file with Reference= lines …
0
votes
3answers
27 views
Prevent windows from queuing shellexecute requests
Win.ShellExecute 0, "open", "C:\dir\program.exe", "arguments", vbNullString, SW_SHOWNORMAL
Win.ShellExecute 0, "open", "http://www.google.com", vbNullString, vbNullString, SW_SHOWN …
0
votes
3answers
66 views
VB6 execution with database is different when stepping through vs running
I've come across a weird scenario with the following code in a vb6 app:
Private database As dao.Database
Set database = openDaoDatabase([some valid database location], False)
cre …
2
votes
4answers
156 views
Converting C (not C++) to C#
I have some old C 32 Bit DLLs that are using Oracle's Pro C precompiler library (proc.exe) to expose a hundred or so sproc/func calls to an even older VB6 GUI which references thes …
0
votes
1answer
87 views
Data Recovery Lib [closed]
I am looking for a Data Recovery Lib if any are available.
Preferred development platforms are Delphi, VB6 and C++
0
votes
1answer
52 views
How to pass NULL or empty strings to stored procedure input parameter with ADO and VB?
I have a stored procedure in Sql Server 2005 with a varchar input parameter defined as:
@Value varchar(24) = NULL
in my VB6 application I try to set the parameter with an ADO fu …
0
votes
3answers
32 views
How to check the filesize?
Using VB6
I have the text file with different sizes, so i want to delete the file where filesize = 0 kb.
How to make a vb6 code for deleting the 0 kb files.
Need vb6 code Help
0
votes
2answers
27 views
Accept SSL Certificate in vb6 using the Webbrowser control.
The Problem:
I am creating a vb6 application that will connect to a particular web service located on a a HTTPS site. The problem is, the HTTPS site I'm accessing requires all requ …
0
votes
4answers
75 views
Compiling the software problem
Using VB6
i created a software in vb6 with xp operating system, In my system, software is working perfectly. When i run my software in other system(xp operating system), it showin …
0
votes
4answers
69 views
File Rename problem?
I'm using VB6 and I have a folder where I have n number of files.
I want to change the file extension to .txt. I used the code below to change the extension of all .fin files to …
0
votes
2answers
37 views
File Moving Problem?
Using VB6
I want to move the files to another folder.
Code.
Dim fso As FileSystemObject
fso.MoveFile (txtsourcedatabasefile & "\" & "1.txt"), App.Path & "\Uploaded\" …
