
- Home
- Activity Stream
Activity Stream
New Activity ()
Please reload this page to view the 200+ new activity items that have been created.
-
Older Activity
-
Today, 08:53 AM
Thanks for posting the explanation; do you have any similar insights into how to get the icons for those windows as all of the usual approaches fail....
17 replies | 552 view(s)
-
Today, 08:46 AM
I didn't check at all just see error in declare:
Public Declare Function MTK_InitializeDevice Lib "MTKF32X3_API.dll" (ByVal bMode As Byte,ByVal...
1 replies | 97 view(s)
-
Today, 08:38 AM
First thing to do is read up on Accounting Principles and decide how you want to track things: Do you want to use a double entry system? This would...
2 replies | 41 view(s)
-
Today, 08:36 AM
A window object has the hidden hWnd property:
The problem is it seems work only for vbext_wt_MainWindow windows. So i just check how does...
17 replies | 552 view(s)
-
Today, 08:15 AM
Hi gurus,
Anyone can suggest what the best commercial datagrid for VB6
- Componentone TDBGrid
- Ultragrid
- etc
Recently, I stumbled with...
0 replies | 30 view(s)
-
Today, 08:15 AM
Aah, secret sauce. Of course. From now on, whenever I encounter any bugs in my programs, I'll just throw-in an &H1C.
EDIT: Actually, &H2A seems...
17 replies | 552 view(s)
-
Today, 08:08 AM
Also, your manifest for your exe goes in the .res file, then you add that to your project in the IDE, it gets compiled in, and that's it. You don't...
153 replies | 67917 view(s)
-
Today, 08:07 AM
It's the secret sauce! :-))
Otherwise you could use CopyMemory API to access Window object's internal state as well -- makes no difference.
...
17 replies | 552 view(s)
-
Today, 08:05 AM
that is something for my next task. I used vkusercontrols on all my forms to gain xp styles..think I need to switch to standard controls
thank...
153 replies | 67917 view(s)
-
Today, 08:03 AM
Just to be clear, I wasn't aiming that at any particular member or post. Individually I think our membership is excellent at open debate and good at...
414 replies | 9072 view(s)
-
Today, 08:02 AM
Awesome. Thanks so much...
I did have a try using GetMem4, but couldn't get it working. Then again, I didn't have that + &H1C. What is that for?
...
17 replies | 552 view(s)
-
Today, 07:50 AM
Which is a shock, these threads trying to develop a new VB6 never normally devolve into petty bickering and everyone having different priorities and...
59 replies | 936 view(s)
-
Today, 07:37 AM
I was given the info I need which is our permanent solution as long as the mail is sent from a PC in our building. For this particular function in...
10 replies | 141 view(s)
-
Today, 07:18 AM
The ConcurrentQueue class has no Clear method but, if you want to clear it, you can just dequeue in a loop as I demonstrated. Here's an extension...
3 replies | 69 view(s)
-
Today, 07:11 AM
I don't know if it will work with different windows:
Dim cWnd As Window
Dim hWnd As Long
On Error GoTo error_handler
...
17 replies | 552 view(s)
-
Today, 07:00 AM
This is really a SQL question. You can use SELECT TOP 1 to get the first record in a result set so you simply need to query your table and sort by...
1 replies | 42 view(s)
-
Today, 06:57 AM
Thank you jmcilhinney.
I am actually calling this from another background worker so I am only check for the first element and not running a loop....
3 replies | 69 view(s)
-
Today, 06:57 AM
Then you end up with defining your own kind of twips based on the current resolution and the DPI%?
And do all drawing yourself. Like Olaf proposed...
9 replies | 326 view(s)
-
Today, 06:51 AM
I guess we should have been done this 5 years before? or at least 10 years before I think. But we didn't, And the more we wait, the worse the...
59 replies | 936 view(s)
-
Today, 06:33 AM
We're not here to teach you how to program from scratch. What have you done and where are you stuck? If you want to create such a system then...
2 replies | 41 view(s)
-
Today, 06:33 AM
Hi
I am starting to write a program to allocate equipment to customers on a first come first serve basis. I am using an Access DB to store...
1 replies | 42 view(s)
-
Today, 06:32 AM
There is no problem to fix Screen's properties but it's quite difficult to change all the internal structures. Just for information, this is the...
9 replies | 326 view(s)
-
Today, 06:31 AM
I'm thinking this thread is going to be winding down. One sure sign a thread is dying is when ShaggyHiker starts making puns :p
This probably...
414 replies | 9072 view(s)
-
Today, 06:30 AM
Do it like this:
Private actionList As New ConcurrentQueue(Of String)
Private Sub AddAction(action As String)
actionList.Enqueue(action)...
3 replies | 69 view(s)
|
Click Here to Expand Forum to Full Width
|