Search:

Type: Posts; User: qvb6

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    345

    Re: Muliti connectivity chatting app

    Did you test with both client/server on the same computer? Did you have problems? Usually you use 127.0.0.1 as the IP address for same-computer testing.

    If you are testing from a different...
  2. Replies
    193
    Views
    71,516

    Re: Modernizing the VB6 IDE

    Yes.

    No.

    No.

    No.

    No.
  3. Replies
    17
    Views
    1,778

    Re: type mismatch mystery

    Please post the code that declared homx, homy, homz.

    Line Input # statement only accepts variables of type String, or a Variant, which will be set to a string.

    Line Input #filenum, s ' s...
  4. Replies
    17
    Views
    1,778

    Re: type mismatch mystery

    Post real code that duplicates the problem. My guess is that you may have declared some variables like this:

    Dim x, y, z As Double

    In the above line, both x and y are Variant, and only z is...
  5. Thread: expiry date code

    by qvb6
    Replies
    15
    Views
    1,599

    Re: expiry date code

    Lookup DateAdd/DateDiff.
  6. Re: internals of activex exe buit in CreateObject multithreading vs CreateThread api

    Dear Trick,

    Please answer if you are dying for more SPAM.

    regards,
    qvb6
  7. Replies
    10
    Views
    1,088

    Re: Help in Zipping Files

    Look in C:\.
  8. Thread: Game in vb6

    by qvb6
    Replies
    26
    Views
    5,927

    Re: Game in vb6

    For those who are curious about "116" in the call to GetDeviceCaps, it's for VREFRESH:

    Const VREFRESH 116 ' Current vertical refresh rate of the display device (for displays only) in Hz.
  9. Replies
    12
    Views
    1,158

    Re: Odd project copying problem

    Use WinMerge to compare two folders(and their subfolders) and their contents to see what has happened.
  10. Thread: TLI Question

    by qvb6
    Replies
    19
    Views
    1,300

    Re: TLI Question

    Default properties work the same way as INI files, the Default value is not written to the file, to save space.

    To see which properties that were changed by the user(not default), open the FRM...
  11. Re: can anybody share MD5 File checker and changer

    I have a routine that I used for that purpose. I found it be searching the Internet for "vb6 md5".
  12. Replies
    19
    Views
    1,346

    Re: Shell and Wait and Timer event

    If Ctrl+Z removes too much, press Ctrl+Y which is the shortcut for Redo.
  13. Replies
    4
    Views
    531

    Re: Printerdialog1 in VB 6 code

    My guess is that you didn't provide the code back then, and they assumed you are talking about VB6. It's clearly VB.Net.
  14. Replies
    19
    Views
    1,346

    Re: Shell and Wait and Timer event

    In the IDE, Timer events won't fire if you show a modal form or MsgBox regardless of service pack.

    It's the same with EXE prior to SP3. Starting with VB6+SP3, Timer events fire in the EXE while a...
  15. Replies
    19
    Views
    1,346

    Re: Shell and Wait and Timer event

    Using INFINITE is a bad idea, it freezes the GUI thread(VB6 is single threaded except ActiveX EXE), and this impacts the system and other applications. Particularly the Start Menu and visual themes,...
  16. Re: supress keyboard strokes with API? (making a hotkey)

    Search the Code Bank for RegisterHotKey.
  17. Replies
    10
    Views
    1,767

    Re: How to get the time from one point to another

    Search the Code Bank for QueryPerformanceCounter.
  18. Replies
    193
    Views
    71,516

    Re: Modernizing the VB6 IDE

    I see that you have CodeSMART Addin installed. Is it the one that's adding code windows Tabs, Code Flow Explorer, and the dotted lines in code?

    I have posted a link to an open source Addin that...
  19. Replies
    30
    Views
    3,923

    Re: Store binary data in UserControl?

    The Tag property comes to mind, which VB docs says "Limited only by available memory", but I don't think VB accepts binary data. You could use one of these Binary-to-text encoding methods. Using ZIP...
  20. Replies
    19
    Views
    1,249

    Re: Get hwnd Active MDIChild

    What happens when someone put your UserControl on a Frame, which doesn't have hWnd?
  21. Replies
    2
    Views
    745

    Re: Immediate Window in VB6 IDE

    See this recent thread:

    http://www.vbforums.com/showthread.php?885379-RESOLVED-Add-User-Control-NOT-AVAILABLE
  22. Replies
    19
    Views
    1,249

    Re: Get hwnd Active MDIChild

    See ActiveForm property.
  23. Replies
    19
    Views
    1,877

    Re: can i install VS 6.0 on Windows 10?

    VC6 is needed if you are still targeting Windows 9x/2000/XP, or if you have older projects that need it. It won't compile newer projects/samples without errors. VC 2008 is the last version that...
  24. Replies
    1
    Views
    465

    Re: About WNetGetConnectionA API

    http://vbnet.mvps.org/index.html?code/network/uncfrommappeddrive.htm
  25. Replies
    19
    Views
    1,877

    Re: can i install VS 6.0 on Windows 10?

    Please check this post on what to select to install VS6. I did that on Windows 7, but it should apply to Windows 10.
  26. Replies
    124
    Views
    31,062

    Re: 3D Math: how draw a 3D cube?

    Please see the attached VB6 project for a sample that draws a cube. The 3D Origin constants could have been better, but I didn't have time to make them based on PictureBox size.

    Option Explicit
    ...
  27. Replies
    7
    Views
    813

    Re: Instead code smart...

    ....
  28. Replies
    7
    Views
    813

    Re: Instead code smart...

    Which features are you looking for?

    If it's adding tabs to code windows, then see this thread.
  29. Thread: TLI Question

    by qvb6
    Replies
    19
    Views
    1,300

    Re: TLI Question

    WriteProperty is what decides if the value should be written or not. If the value you are supplying is the same as the default value(which you are also supplying), nothing is written. You need to use...
  30. Re: This guy is making a (mostly) VB-compatible language

    baka is correct. It's not clearly mentioned except on a web site: "Codename "Mercury" is a BASIC language implementation that is backwards code-compatible with Microsoft Visual Basic.NET™ "
  31. Re: PropertyBag vs Collection (and what's the internal structure of a PropertyBag?)

    Try For Each when reading. I am not sure if it's faster, but I know that using String in Command4, c.Item(CStr(i)) means a hash search for each iteration.
  32. Re: This guy is making a (mostly) VB-compatible language

    There are/were many who are/were making a VB6 compatible compiler/translator, but none finished yesterday. To me, it's all promises or just talk until someone says "I finished it yesterday". For...
  33. Re: TypeName causes "Out of stack space"

    Does that happen in the IDE or EXE?
  34. Replies
    19
    Views
    1,635

    Re: FYI: JetBrains Mono for VBIDE font

    If you change fonts, leave it on for a while because it takes some time to get used to it. In the end, you might like it. I hated the font I used initially, but got used to it after a while.
  35. Replies
    19
    Views
    1,635

    Re: FYI: JetBrains Mono for VBIDE font

    I might try it. I have been using DejaVu Sans Mono, which I prefer more than VB's default.
  36. Replies
    124
    Views
    31,062

    Re: 3D Math: how draw a 3D cube?

    You can't use type casting to convert data. That just tells the compiler to treat the binary data as LONG. Use "double" data type instead of "long", and remove "(LONG)".
  37. Re: Is it possible to reverse engineer an .exe file created with vb6 ?

    In few cases, like if the IDE crashes and you have not saved the code, you could find part of the source in *.tmp files, but I guess you may not have those after this time. I think they are left in...
  38. Replies
    1
    Views
    373

    Re: Coliding of Object

    Please search the forum first. Type "Coliding of Object" in the search box on the top center of this page(Google Custom Search), then click on the first linkā„¢.
  39. Replies
    124
    Views
    31,062

    Re: 3D Math: how draw a 3D cube?

    It's called 3D Projection:

    https://en.wikipedia.org/wiki/3D_projection

    The fast formula that I posted, is something I developed myself, but others may have come up with the same formula. I am...
  40. Replies
    124
    Views
    31,062

    Re: 3D Math: how draw a 3D cube?

    https://www.youtube.com/results?search_query=unreal+blueprint+tutorial
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width