0
votes
1answer
36 views

WinApi: Calculate ListView height

I have a VB6 listview in Details mode, showing X number of items. I want to create some kind of auto-height function that evaluates the height based on a specified width and the number of items. The ...
0
votes
2answers
396 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 ...
0
votes
2answers
100 views

Why FindFirstFileW always return -1?

FindFirstFileA (ANSI) works as it should, while FindFirstFileW (Unicode) not. The Wide version always return -1 (INVALID_HANDLE_VALUE), but why? 'Declarations: Option Explicit Private Const ...
0
votes
0answers
157 views

To find the current DPI settings of a monitor in VB6

I am developing this application in VB6 in which i need to find the current DPI settings of the windows monitor. I have done some research on the topic and found that the Windows API GetDeviceCaps() ...
0
votes
1answer
110 views

How to convert FILETIME from WinApi to DateTime in vb6?

How to convert FILETIME from WinApi (e.g. from result of a call to this WINAPI function to DateTime in vb6? (e.g. if I want to use it as input to the DateTime.DateDiff function.)
1
vote
1answer
198 views

Changing soundcard and playing an MP3

I want to play an MP3 on a sound card other than the default (e.g. I plugged in a USB headset). I have code that works perfectly fine if I want to play a WAV file on a different sound card. But with ...
0
votes
1answer
83 views

Convert StdPicture Transparency Colour to White

I am using a CodeJock ImageManager component to hold a variety of images. I want to put one of these images into a FlexGrid Cell. The Images I have are Png format and have transparent backgrounds so ...
0
votes
2answers
214 views

how to use mouse_event to move mouse cursor in windows login screen?

there is a same question in: SetCursorPos and GetCursorPos not working at login screen? the answer as resovled was Alternative solution: It is possible (but very tricky) to use mouse_event ...
3
votes
2answers
206 views

What is the Use of user32.dll in VB Application?

In our we have used the user32.dll and passing the value of hWnd.So I would like to know what is the use of this User32.dll and passing the value hWnd? They are setting this Values SetProp hwnd, ...
1
vote
3answers
350 views

How To Get DeleteUrlCacheEntry() Error Codes? (Or additional information on why a particular deletion didn't work)?

Basically, when I call DeleteUrlCacheEntry (which is part of the Wininet.dll API) I either get returned the number 1 (which means, deletion successful) or the number 0 (which meant, deletion didn't ...
0
votes
0answers
57 views

DeleteUrlCacheEntry() function (of WinINet API) not deleting some Internet Explorer Cache items begining with “Visited: ” [duplicate]

Possible Duplicate: How To Get DeleteUrlCacheEntry() Error Codes? (Or additional information on why a particular deletion didn't work)? Basically, I am calling DeleteUrlCacheEntry ...
3
votes
1answer
213 views

Position of Text in a TextBox

Hi I have a textbox containing some text. I am looking to replicate the red spelling mistake squiggle type behaviour. Using WinAPI I can draw the squiggle between 2 points. find out the height ...
3
votes
1answer
238 views

Simulate windowskey+L in visual basic?

I want to simulate WindowsKey + L (The short cut to lock the console) in visual basic and bind it to a function. So when this function is called it will lock the console. Can I do this?
2
votes
1answer
109 views

VB4 AddressOf equivalent (Adding items to the system menu)

Is there an equivalent to AddressOf in Visual Basic 4? I am attempting to get some Visual Basic 5/6 code that adds menu items to my form's system menu working in VB4. Below is the code snippet that ...
0
votes
2answers
504 views

Is there an API to get the advanced printer device settings?

I need to get the available supported printer document features for a particular printer through the win32 api. The options I'm referring to are displayed for a sample printer in the image below. You ...
2
votes
2answers
366 views

GetCursorPos only returning x value

I saw a thread on an MSDN forum where there was an issue with 32-bit vs. 64-bit integers. I'm not sure if that is my issue, but it seems as though this code should work, so I'm a bit confused. I'm ...
3
votes
3answers
2k views

Download URL Contents Directly into String (VB6) WITHOUT Saving to Disk

Basically, I want to download the contents of a particular URL (basically, just HTML codes in the form of a String) into my VB6 String variable. However, there are some conditions. I know about the ...
2
votes
3answers
420 views

SetWindowLong Hanging

Why does *SetWindowLong(myForm.hWnd, GWL_HWNDPARENT, parentHwnd)* hang? I can recreate this problem consistently doing these three steps. Create the .NET Form Initalize the WaitWindow COM object, ...
0
votes
1answer
493 views

Loading OCX dynamically in VB 6.0

I am loading OCX dynamically in VB 6.0. The following is the code that I am using to load and call the methods: Private Declare Function FreeLibrary Lib "kernel32" (ByVal hLibModule As Long) As Long ...
1
vote
1answer
165 views

URLDownloadToFile halts if limited bandwidth in VB 6.0

I am using URLDownloadToFile to download files from internet in VB 6.0. The issue is that if I restrict my bandwidth of network, my application halts when I start downloading. I am using callbacks ...
0
votes
3answers
594 views

VB6 dll call to win32 C function

I need to write some functions in C for someone else's VB6 project (that being outdated is beyond the scope of this question). During initial tests, I could not get the calls to work. I have supplied ...
0
votes
2answers
279 views

SetTimer doesn't work in my vb6 app

I am using WinAPI, SetTimer and KillTimer in my vb6 app (it is legacy project). SetTimer does return the right event ID but the actual callback doesn't get called at set internval. I have .... lngID ...
2
votes
0answers
725 views

Can you use ChangeDisplaySettingsEx with multiple monitors to switch between clone and extended desktop

I'm working on a legacy vb6 application that operates on Windows XP (embedded) that uses ChangeDisplaySettingsEx to control the resolution of the connected monitors. I have been tasked with finding a ...
5
votes
3answers
569 views

Shell BrowseForFolder preselected path

I have this call: oShell.BrowseForFolder(Me.hwnd, "Select path:", 0, "C:\dir\") This opens a standard file browser dialog with "C:\dir\" as root. My problem is that you can not browse above the ...
2
votes
2answers
192 views

Can one detect how .exe was launched?

I want to be able to detect whether a given exe was shellex'd programmatically or if it was entered and executed interactively in, say, CMD.EXE. Is there anything about the way an exe is launched ...
2
votes
2answers
997 views

Use a window handle as an owner for a VB6 form

What is the Win32 equivalant of Form2.Show vbModeless, Form1 that allows me to set the owner (not the parent) to an arbitrary hWnd and set the default position, etc? As far as I'm aware, this can only ...
0
votes
1answer
379 views

How to enumerate nested groups across domains?

I am using MemberOf Attribute to enumerate nested groups. I have 2 domains, 2 groups and one user. Please see below for configuration: Domain DOMAIN-A has domain global group GROUP-A and USER-A. ...
0
votes
2answers
800 views

DNS name from NetBIOS name - API function

Is there any API function that can resolve netbios name of a user or group directory object. I need output in following formats: NameFullyQualifiedDN - example: CN=John ...
2
votes
2answers
581 views

How can I lock an application after period of user inactivity?

How can I lock an application after period of user inactivity? I have a fat Windows applocation written in VB6. User must log into the application to use it. I need to log the user out after a ...
0
votes
3answers
628 views

Why does my SystemTimeToFileTime return a result which is off by 5 hours?

It would make sense if I was in a ±5 hour timezone, but I'm in GMT -06:00, so I'm not sure if timezones are my problem or if it's something else. Here is my code I'm using: Private Sub ...
2
votes
3answers
2k views

Get Process Path and Name by ProcessID - Inconsistent Results (VB6, VBA)

I'm using the code below to get the file path and name for a given process. I simply pass in a ProcessID to the function ExePathFromProcID and it is supposed to return the full path. It enumerates the ...
2
votes
2answers
356 views

How to specify a sound card for use with mciSendString API

I am updating an old VB6 app. Back in the day, I coded a wrapper around the mciSendString command to be able to record and playback audio. Back then, computers typically had a single audio card. ...
1
vote
2answers
926 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 ...
1
vote
2answers
489 views

How to tell the position of a menu item in VB6?

I am using Visual Basic 6 (please don't laugh), and I would like to dynamically position a control, at runtime, in a position based upon the position of one of the "top level" menu items (such as ...
2
votes
1answer
1k views

Using Alias keyword to declare a function in VBA

I have VBA MS Access form code, where I type the following function declaration: Public Declare Function GetUserName Lib "advapi32.dll" () Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As ...
0
votes
1answer
358 views

get information from device path

One of our legacy applications is producing resource leaks on 1 specific machine. Over time the overall processor usage increases until the application is closed and restarted. Using perfmon I found ...
0
votes
2answers
268 views

Opening a handle to a driver from user mode

I have a driver and I created a symbolic name to it. The symbolic name is ... L"\\DosDevices\\hook" When I try to access the device object using CreateFile() from usermode, I always get an error, ...
6
votes
3answers
11k views

How to wait for a shell process to finish before executing further code in VB6

I have a small VB6 app in which I use the Shell command to execute a program. I am storing the output of the program in a file. I am then reading this file and putting the output on the screen using a ...
1
vote
3answers
2k views

How To Use the SHGetKnownFolderPath Function from Vb6

I am currently adding Windows 7 support to an existing Vb6 project and I have ran into a problem with locating special folder paths using SHGetFolderPath which is not supported on Windows versions ...
2
votes
2answers
408 views

Start external exe within own process

I have a VB6 executable we use as a Starter executable for our real program. The problem is that windows 7 shows a new icon in the taskbar for the new process, instead of the one i clicked on to ...
1
vote
2answers
2k views

Serial port programming VB6 via Win32 API

I am interacting with a bill acceptor connected via serial in VB6 using the MSComm control. We're having some communication issues, and I have been tasked with using the Win32 API directly to interact ...
1
vote
4answers
1k views

How does Process Explorer enumerate all process names from an XP Guest account?

I'm attempting to enumerate all running process EXE names, and have stumbled when attempting this on the XP Guest account. I am able to enumerate all Process IDs using EnumProcesses, but when I ...
1
vote
2answers
1k views

How do I get hardware info such as CPU name, total RAM, etc. with VB6?

Title pretty much explains it all. I need to get some hardware information such as CPU info, and total RAM with VB6. Ideally, it would return something like this for the CPU: Intel Core 2 Quad ...
1
vote
1answer
629 views

Access violation in MSVBVM60.dll with VB6 and C++ dll

I am investigating a crash of an application I am working on. The visual basic part is a simple form, which creates PictureBoxes and buttons. Calls are made to the C+ dll upon button clicks. The ...
0
votes
1answer
290 views

INI File With Duplicate Keys

Say I have an INI file like so: [123] name=Ryan name=Joe How would I retrieve "name=Ryan\nname=Joe" using API calls such as GetPrivateProfileSection and GetPrivateProfileString?
0
votes
2answers
388 views

check that outgoing network is open on port 443, with vb6

in Visual Basic 6 How can i check that communication to port 443 is opened for network requests? I must NOT use any 3rd party controls / activeX / OCX, so I'm looking for ways to send / receive an ...
0
votes
1answer
218 views

Why does my ReadFile call fail if it is not called within the same function as CreatePipe?

I'm having trouble using pipes in a larger application and so I created a minimal test application to investigate the problem. I'm creating a pipe: Dim sa As SECURITY_ATTRIBUTES Dim R As Long ...
1
vote
1answer
346 views

How do I check if a VB6 application is running (and not hung on a system error) from C#?

I need to monitor a legacy application written in vb6 from a C# service and force-quit/relaunch it whenever it hangs. How do I check if a VB6 application is running (and not either hung on a system ...
1
vote
0answers
229 views

Accessing contents of VB6 Data Grid from AutiIt script

I'm using an AutoIt script to access data from a application developed in Visual Basic 6. Data in all controls can be accessed using Control*() functions. However, Data Grid and Data List controls ...
4
votes
4answers
1k views

Launch CALC.EXE and retrieve value using VB6

EDIT Just to clarify, there is no intent of putting this into production. Purely from a coding/automatiion standpoint, and ignoring the fact that there are modules out there to do calcuations, how ...

1 2