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.

learn more… | top users | synonyms (1)

-4
votes
0answers
31 views

Play wave as pcm 16-bit (Signed and BytesSwap and Sequential Stereo) - vb6 or delphi [closed]

How to play stream bytes as wave with all this features: PCM 16-bit Signed BytesSwap NOT Padded MSB Stereo ( Sequential ) this file could play with Awave Studio using that features as raw data, I ...
2
votes
1answer
158 views

need SQLite3 for a portable program vb6

Is there any idea to use sqlite version 3 in vb6 like sqlite version 1 ? sqlite version 1 use ags_sqlite.dll http://www.freevbcode.com/imagesvr_ce/184390/source/008/zully_lite_sqlite.zip
-1
votes
2answers
31 views

How can I get a count of attached monitors, and details about them?

How can I get a count of attached monitors, and details about them?
0
votes
1answer
4k views

Compare two date times

Newbie to VB6 please help, Struggling with something I just can’t get right, label1 display a last transaction date/time which I get from a date base throw a query label2 is the system date/time. I ...
-2
votes
1answer
25 views

add value to existing value in sql table by vb

iD NAME 1 ALEX 2 SAM 3 MARK The above is table i need code in vb to add value to existing value same as ID Name 1 ALEX,nancy 2 SAM 3 MARK, SUZAN
0
votes
0answers
9 views

Running Sum in Group Header

I designed a report having a running sum that calculate the G.P.A of students. This running sum field is to be calculated in the header of semester. (The header is underlying Following Section). But ...
1
vote
2answers
30 views

How to calculate ETA without a map

Need a little help from someone who knows a little about logistics; I am currently working with an application known as Framework. The application is not really something that I am familiar with, ...
0
votes
2answers
33 views

VisualBasic6 - read continuously a variable

I need read in an infinite loop some variables and in the case it changes the boolean status it must do something. I tried to use a Do...Loop but the application crashes. Is there a way in visual ...
-5
votes
0answers
19 views

Is there a VB6 ocx that will let me change the icon of other programs? [closed]

I want to make a simple vb6 program that can change the icon of other programs. Is there an ocx available that will let me do this?
0
votes
2answers
5k views

Running VB6 App under Windows 2008 R2 64-bit

I have a VB6 application that I need to move over to Windows 2008 R2 64-bit machine. Compiled app does not run there. So I have tried to run a simple VBScript file to try and debug the problem. On ...
-1
votes
1answer
41 views

What does <> mean in visual basic?

I can't google it because google removes <> from the search even when surrounding it with quotes. So what does <> do in VB6?
0
votes
1answer
64 views

In ICollectionOnSTLImpl implementation, can't access m_T or item object's members

I'm trying to implement a collections of objects via VC6 that can be accessed by a VB6 programs. I haven't been able to make it come together. I have defined _CopyVariantFromAdaptItf and ...
3
votes
2answers
74 views

VB6/COM Interop: where do these events come from?

I have written a COM-visible class library in C# 4.0 which I'm consuming with VB6. The thing works, only if I open up the VB6 object browser and look at the members exposed, I'm seeing an event for ...
-5
votes
0answers
21 views

Send an email from a group email address using vb6 [closed]

We have a group mail id and a mailbox exists for that. Group mail id is ReleaseManagement@example.com and administrators has access to check the mails present in this mail box. SO when the admin sent ...
2
votes
2answers
51 views

calling a long running vb6 com object in classic asp .. time out error

I have a long running vb6 Com object called from a classic asp page it works perfectly when there is not a lot to do but it times out if it has to do a lot. is there a way of calling it async so it ...
1
vote
3answers
47 views

MS Access query from VB6 too long?

I perform a query on an Access 2010 DB from a VB6 application. The SQL looks like that: SELECT *, NetPrice AS Price FROM Products WHERE Len(ProductName)<>0 AND ProductID IN (1,5,8,13); The ...
1
vote
0answers
9 views

Visual Basic — Key List (Gamecontroller?)

How can I find a specific value for Gamecontroller-Key? I want to use them for a script in a game. Example: isKeyPressed(Settings.GetValueKey("Key", Keys.X)) Here are the only key-values I ...
0
votes
1answer
19 views

send file location to a textbox while user clicks on file then application runs

My application saves a file with *.SAH type (it is a custom file type). Then i can open it with a file open dialog. Im wondering how i can send the file location to a textbox when user directly ...
0
votes
3answers
59 views

Exporting c++ function, declared in vb6, getting “remote procedure call failed” runtime error

I have a dll written in C++ that is being exported like so: extern "C" { extern _declspec(dllexport) (VOID) Merge(LPCSTR szFileName, LPCSTR szMergeString, DWORD dwAlignment, BOOL fRepeat); } ...
-1
votes
1answer
46 views

Node.js async socket chat client in visual basic

I have this code: // Load the TCP Library net = require('net'); //var sys = require('sys'); // Keep track of the chat clients var clients = []; // Start a TCP Server net.createServer(function ...
-1
votes
0answers
30 views

how to parse xml file in vb6

I have a XML file like this. <?XML version="1.0"?> <message id> <id no="1"> <name>computer</name> <roll no>12</roll no> </id> <id ...
2
votes
1answer
30 views

How do you set the “Friendly” name for a Visual Basic 6 ActiveX CLSID

I have an ActiveX control that I wrote in Visual Basic 6 several years ago. It's an OCX loaded by a CAB file and used in Internet Explorer. If you go to Tools|Manage add-ons in Internet Explorer I ...
1
vote
2answers
45 views

What is the vbError returned by VarType in VB6?

I have been searching for this all over the web, but everything is either talking about the ErrObject class, or the constant vbError returned by the VarType function. I want to know what that type ...
4
votes
8answers
542 views

Is there a free VB5 or VB6 implementation?

I'm looking for a free Visual Basic compiler and/or IDE. Is there something like this? Actually, is there any other implementation than Microsoft's?
1
vote
2answers
915 views

Need To Find My Own Process ID In VB6

I am changing the architecture of a VB 6 scheduling application from serial execution architecture to parallel execution and I need to do this with as little code changes as possible. Basically, the ...
4
votes
5answers
2k views

Testing Delphi DLL crashes VB6 IDE

I've had my first go at writing a DLL in Delphi. So far so good. By using a typelib I've been able to pass Widestrings to and from the DLL without difficulty. What's curious at the moment is that I'm ...
1
vote
1answer
3k views

Use the ADO OpenSchema Method to get table list, column list and value

I am unable to get the values of the selected column in the value listbox.Please guide me my mistake.There seems to be some mistake in the private sub ListValues Option Explicit ' The database file ...
-1
votes
0answers
32 views

vb6: Crystal Reports 8 not opening in Client PC but working in Server

My VB6 application is working in server (windows server 2003) and reports are opening in the same system and these are shared across the LAN. Application is working perfectly but crystal reports are ...
3
votes
1answer
55 views

Protocol Buffers for VB6?

I can't seem to find any libraries for using Protocol Buffers in VB6? Is my only option to use a wrapper C# library via COM Interop?
4
votes
3answers
800 views

VB6 Database operations slow when multiple users connect to the database

I am currently using VB6 to connect to a MS access DB using DAO and I’m experiencing a very noticeable speed reduction when a 2nd user connects to the Database. Here are the steps to reproduce: ...
0
votes
1answer
47 views

Assigning an array of custom type from a function return

I've constructed a C# DLL which uses a custom object (called PropertyObject) to store some data. I can pass this through to VB6 and use it fine. However, I have a function which returns an array of ...
-1
votes
1answer
36 views

Call vbp inside vb6 IDE

I have to debug a group of vb6 projects. There is a root project (say toolbar.exe). This program is basically a toolbar that call another .exe Ex:Call Shell(App.Path & "\ModMag2008.exe ", ...
0
votes
2answers
787 views

How to Raise Keyboard Events for Special Characters/ Extended ASCII? (Visual Basic 6)

How to a raise a keypress event for Special Character for typing extended ASCII Characters ? Sample code snippet : keybd_event vbKeyE, 0, KEYEVENTF_KEYDOWN, 0 Is there any alternative so that I ...
0
votes
0answers
34 views

Word 2010 Spell Check Hidden in Remote App, on Windows Server 2008 R2

I have a problem with a legacy VB6 app that uses Word spellcheck. We put this on the new 2008R2 server as a emote App but the problem we are having is when we invoke the spellcheck it does not focus ...
1
vote
1answer
23 views

How to insert Image object as picture in Word document

So I have this function where I am generating and returning my image (a .bmp format). I want to put it into a word document. I looked at InlineShapes.AddPicture but it only takes a string argument, ...
2
votes
1answer
368 views

Web browser independent of IE

I would like to make a web browser for my own use with various customizations. However, in VB6 the various web related control like winsock, inet fetch only html. Using webbrowser control is not the ...
-2
votes
1answer
36 views

How to Remove the Blue Lock Icon on my VB6 Form?

I created forms and functions in a draft project. When it was time to put it to the final project, I tried adding my files but a blue lock icon appeared just on the left of my file. Now I cannot edit ...
1
vote
2answers
27 views

Delete Worksheet from Excel doesn't appear to be working

I am attempting to replace the last worksheet in an Excel spreadsheet using VB6. Since deleting the last worksheet isn't allowed, I have been trying to add a temporary worksheet, delete the one I ...
-1
votes
1answer
506 views

VB6 + how to exe script on linux machine from VB6 app

How can a VB6 application that runs on a Windows XP machine, run a script on a Linux machine (Redhat 5.3) via SSH? VB application should take the following arguments Linux login Linux password ...
4
votes
1answer
93 views

How do I open “Windows Search” in a Visual Basic application?

How can I open "Windows Search Companion" or "Windows Basic Search" for a specific folder in an application using Visual Basic ? I have found this article, but it's not what I'm looking for.
-2
votes
1answer
41 views

how to hide Code portion of combo in vb6?

SQL = "SELECT A.* FROM [ASSET] A WHERE BITT='FALSE' " .Open SQL, CON, 1, 2 If .RecordCount > 0 Then Combo2.Clear .MoveFirst Do While Not .EOF Combo2.AddItem ...
0
votes
1answer
67 views

byRef argument type mismatch help anyone

My supervisor asked me to debug a recent program in vb6. I only have basic knowledge in vb. When I try to run the program a byref argument mismatch is shown. Can anyone help me with this. I'll ...
-2
votes
1answer
29 views

Running an invisible form on the foreground

I'm wondering how I would be able to run an invisible form in the foreground (meaning it runs wherever the heck you might be in your computer). I've tried playing around with formless applications ...
-3
votes
0answers
43 views

windows driver source code . pdfcreator . how do I compile the source code

You can find the source code here http://sourceforge.net/projects/pdfcreator/files/PDFCreator/PDFCreator%201.7.0/ I see lots of .vbs, .bas. ,.cls, .ctl, .ctx, .frm files. How do I compile these ...
0
votes
1answer
61 views

How to select the characters part of string in Visual basic

I have some string variables with combinations of numbers and characters. like this: A12452 BCD23 ESK56003 Using vbscript I want to get the characters and not the numbersfrom these strings. So I ...
0
votes
4answers
88 views

C# Equivalent of VB String Greater Than

Have an old vb6 project that is being rewritten in C# and a function has the following code: If (strPlainChar >= "A" And strPlainChar <= "Z") Then But obviously C# if statement won't allow a ...
0
votes
1answer
41 views

Vb6 type mismatch with random number generator

I wanted to generate a random number between 1 and 20 for a game that I am creating and for some reason this code has stopped working and gives me a type mismatch error, I have tried other generators ...
14
votes
3answers
18k views

Is there a vb6 decompiler?

I lost the source code from one project I did on the company I'm working for and haven't been able to find a vb6 decompiler, does that even exists? Forgot to say that I only have the EXE. I ...
0
votes
0answers
32 views

How can I drag elements from LabelArray1 to LabelArray2 and check to see if the text matches

I'm converting an app from VB6 to VB2008. Drag and drop provides an essential eye-hand coordination workout for the traumatic brain injured and I can't get it to work with VB2008. I get errors. ...
2
votes
2answers
622 views

How do I un-hide the Project Explorer window in my VB6 IDE?

In my VB6 IDE, I accidentally clicked Hide on the context menu of the Project Explorer window (the pane on the right side with all the files from the project). I can't figure out how to un-hide it. ...

1 2 3 4 5 106