| Thread | Last Post | Replies |
|
| Displaying Cyrillic Characters in VB6 | 14 Aug 2008 16:05 GMT | 4 |
I'm trying to program my VB6 application to display Cyrillic characters on the screen. I can get the text boxes and labels to display the Cyrillic characters by setting the charset property (Text1.Font.Charset = 204 and Label1.Font.Charset = 204) but the
|
| dhSqlite demo question | 14 Aug 2008 16:05 GMT | 2 |
Trying to run the dhSqliteDemo.vbp I copied dhRichClient.dll and sqlite35_engine.dll from .../bin folder to .../windows/system32 then registered dhRichClient.dll
|
| Out of process AX-DLL (.exe) Help Needed | 14 Aug 2008 14:47 GMT | 9 |
VB6 Out of process AX-DLL (.exe) Better Procedure Needed? Sometimes I can hook up and sometimes not while doing development.
|
| This is a tough one - Panel Location within a window | 14 Aug 2008 14:15 GMT | 14 |
I know how to determine the position of a window of any running program. I had written a VB6 program a number of years ago that could detrmine this and then move the cursor a certain distance down and left and click a button. This allowed me to automate some repative
|
| Making exe will crash VB6 IDE | 14 Aug 2008 04:29 GMT | 5 |
Well. Actually, this is a repost of my question in the following link. I repost her to regenerate the attention. http://groups.google.com/group/microsoft.public.vb.general.discussion/browse_thr ead/thread/8e85a7368b55a219 The question is
|
| Inno Setup Struggle | 13 Aug 2008 22:51 GMT | 9 |
Raw newbie with Inno needs help big time, and you need to be patient as I am finding it hard to follow. where I am at I created Setup.lst with VBs P&D I then ran Inno which produced an *.iss file
|
| Debugging ActiveX Components: How does VB6 IDE work around the problem? | 13 Aug 2008 21:04 GMT | 19 |
As far as I can tell and aside from msgboxes, there's really only two ways to debug VB6 ActiveX components: 1. Use Visual C++ 2. Use the VB IDE: Add a new test-client project to the project
|
| User control jumps upon being clicked at design time? | 13 Aug 2008 20:35 GMT | 6 |
I just made a simple user control in VB6, and put it on a form. I then tried to select its instance on that form at design time (to get to its properties), by clicking on it. Immediately, the user control jumped - i.e. its position on the form
|
| Help understanding why I am receiving "Object reference not set to an instance of an object" error | 13 Aug 2008 19:47 GMT | 5 |
Please be gentle. I am quite new to visual basic, but I have been going through tutorials and reading up. I found a code snippet on the internet that I wanted to see if I could re-purpose for a project, but I keep getting the error: "Object reference not set to an instance of
|
| Serial Port Issue | 13 Aug 2008 17:56 GMT | 4 |
I have a simple VB application that sends data to a serial port using ta VB MSCOMM object named OutputPort and a timer event. The following code works, sort of. Private Sub Timer1_Timer()
|
| accessing mail through vba | 13 Aug 2008 17:03 GMT | 2 |
I'm trying to mail something to a list of addresses in my spreadsheet. As best as I can tell, everything works fine EXCEPT, the mail never seems to go out. I don't believe there are any errors being returned as I step through it and it seems to execute each
|
| VB6 Always On Top | 13 Aug 2008 16:56 GMT | 3 |
Apologies if I'm in the wrong forum. I have a VB6 windows forms program that I would like to be "always on top". What code is needed to achieve that? Thanks
|
| HitTest method in TreeView gives an error | 13 Aug 2008 08:13 GMT | 5 |
Initially, my project used TreeView of Ms Win Common Control ver 5.0. Due to the requirement by the client that i need to set the forecolor of the nodes in the TreeView, i changed to use TreeView of 6.0. After i replace the TreeView with version 6.0, the program keeps
|
| Why doesn't this work? | 13 Aug 2008 04:28 GMT | 11 |
Sub fnTest On Error Resume Next Set rs = CreateObject("ADODB.Recordset") If IsObject(rs) Then
|
| Read Binary File into an Array. | 13 Aug 2008 02:44 GMT | 2 |
is it possible to open a binary file and read it byte for byte into an array, so then I can manipulate the array to my needs, read a particular part of the array to obtain info from it? delete parts of the array, etc, etc...
|