0
votes
1answer
25 views
Save file without Save Dialog in Visual Basic 6.0
I want to save a file without showing the save dialog because the file is always the same. How can I make it?
Thanks.
1
vote
2answers
28 views
Load image from memory into VB6 PictureBox
I'm not a VB6 developer so excuse me if I'm not making any sense.
If I have a VARIANT array of bytes containing an RGB array of image data, is it possible to get that data to be d …
1
vote
2answers
62 views
How can I tell that a directory is the Recycling bin in VB6?
I am attempting to mimic the code in this question (see also here), but I'm experiencing crashing. I'm pretty sure my error is in my call to SHBindToParent (MSDN entry) since SHPa …
0
votes
2answers
23 views
New MDI child resizes other maximized Forms
I have a project with a main MDI form. There is a child MDI form inside that is always present and cannot be closed (Is it possible to hide the close button while keeping the min …
0
votes
4answers
64 views
VB6 to VB.net conversion
Exact duplicate: How to switch a large app from VB6 to VB.Net
Exact duplicate: Best strategy for moving applications from VB6 to VB.Net
Exact duplicate: Conversion tool comparison …
0
votes
2answers
29 views
vb6 windows media player
How can i play windows media audio/video file(wmv) in windows media control in vb6? I tried playing it through this code but it didn't work
wmp.URL = App.Path & "filename"
wmp …
2
votes
3answers
43 views
VB6 authored ocx on a .NET WinForm?
I've inherited a VB6 project that has a Form with VB controls (Label, etc) and Windows Common controls (Treeview, ImageList, etc), which looks like an ideal candidate for a usercon …
0
votes
2answers
60 views
Accessing dynamically loaded DLL (with LoadLibrary) in Visual Basic 6
I have a need to create a wrapper for a DLL, loading and unloading it as needed (for those interested in the background of this question, see http://stackoverflow.com/questions/166 …
1
vote
1answer
19 views
How do I get ToolStripMenuItem Shortcut Key to work when WinForms control is hosted in VB6 Form.
We have a scenario where we are exposing a set of WinForms UserControls via COM to a Legacy VB6 application. We have 3 different controls which have a MenuStrip on it that has the …
0
votes
3answers
41 views
VB6 Form.Show is not working
I have a project with graphs that can be printed. When you click the print button, a Print Preview form loads with:
Public Sub print()
printPreview.Show
End Sub
Everything w …
1
vote
4answers
56 views
How to set software usage date limitation?
Using VB6
I want to compare the system date, if the exe should not work after 02/11/2009
vb6 code
Dim dte As Date
dte = DateValue(Now)
'MsgBox DateValue(Now)
If dte > DateVal …
2
votes
1answer
23 views
SQL Server 2000, ADO 2.8, VB6
Dear All,
How to determine if a Transaction is active i.e. before issuing Begin Transaction I want to ensure that no previous transaction are open.. the platform is VB6, MS-SQL Se …
0
votes
2answers
43 views
Vb6.0 How to bind a function/sub-procedure to external event as an event handler??
I need to construct a VB6.0 ocx that will be used as a plugin for some external VB6.0 applications
This ocx contains several sub procedures that are supposed to work as event-han …
1
vote
4answers
49 views
Get a file’s last modified date in VB6
How do you get any file's last modified date using VB6?
0
votes
2answers
44 views
How to call/hook kernel mode APIs from user mode?
I'd love to dive into kernel hooking - but my problem is that I don't like C/C++. But I've over 10 years experience in VB6 programming and would call my self as an expert in this l …
