August 20th, 2004 01:30 PM
I have applications that store very large amounts of data in VB6 in memory at one time...and very rarely have out of memory issues.
Where there are problems is when loading controls with data...
August 18th, 2004 02:29 PM
Your lpxPos and lpyPos variables should be fine...they are being passed by Reference and thus by the address of the variable.
The only thing I can think of is that your Terminal custom control is...
August 18th, 2004 01:53 PM
Can you please include how you are referencing the function in the DLL in your project? For example:
Private Declare Function SendMessage Lib "User" (ByVal hWnd As Integer, ByVal
wMsg As...
August 18th, 2004 01:24 PM
Can you post the snipet of code where you are calling the DLL? Is this a custom DLL or are you using a system DLL?
August 18th, 2004 12:44 PM
You should be able to pass the hWnd for the control as the handle. These are properties that are available from the controls themselves. Using the hWnd property, you can make DLL calls such as...
August 18th, 2004 08:29 AM
Actually, you can do this with 15 lines of code and process only one line at a time to eliminate any memory concerns. I've added comments to explain it as it goes.
Dim InputFileNum As...
August 18th, 2004 08:15 AM
Thank you for the tip...my only problem with that is how do I get the directory heirarchy to populate those controls , complete with the folder type to know which icons to use? (for example floppy,...
August 17th, 2004 02:04 PM
In several applications, we need to be able to provide the ability to browse through the network as well as the local machines. In the past, we have relied on the Windows Common Control or...
August 17th, 2004 08:56 AM
I never knew about the vbaccelerator site...very useful info there! Thanks! :)
August 16th, 2004 07:52 AM
Thank you for the link. I am not looking for a data-bound grid, so I'm evaluating their VS FlexGrid product instead. The DataGrid was not what I was looking for in a hierarchial view.
Does...
August 12th, 2004 02:46 PM
I'm looking to include a grid control that has features similar to the email view in Microsoft Outlook. We have customized the Grid and FlexGrid control in previous applications to meet these needs,...
August 3rd, 1999 02:40 PM
I am having problems with my CTreeCtrl that is displayed in a FormView. I am using the +/- buttons to allow expansion/colapse of the tree branches. It is used with a tab control and other controls,...