Search:

Type: Posts; User: veebee123

Page 1 of 4 1 2 3 4

Search: Search took 0.04 seconds.

  1. Re: Krool's CommonControls cut out for Onesie-Twosie use

    What is the official website? I only found github and the forum posts. Github has releases built into it, but Krool is not using that feature as you can see the releases section of github is blank....
  2. Re: Krool's CommonControls cut out for Onesie-Twosie use

    This is great and very helpful to have, however, I think something is being overlooked.

    Either Krool needs to keep old releases around OR you should post the full archive exact version that these...
  3. Re: Planet Source Code New Improved CD Reader (no database)

    I just tested on Windows 10. It appears working. There is one small potential problem. For some reason it rarely opens the whole list of zips instead of the one you selected in 7-zip. If it does...
  4. Re: Planet Source Code New Improved CD Reader (no database)

    I am aware. Please understand that this is an archive of VB6 software, and if I put this in .NET people are not going to find it properly.

    I really hope you understand. If there is a problem with...
  5. Planet Source Code New Improved CD Reader (no database)

    I have finished my new reader for the planet source code archives. This new reader does not require any outdated database drivers (or new drivers). It works entirely with an included CSV. This is a...
  6. Replies
    9
    Views
    2,447

    Re: Can't make Planet Source Code CD work

    Good, if it's not too hard for you, would you mind exporting that into a CSV?
    (But only if it's got, title, description, picture file, and zip/psc files in there somewhere amongst others is fine.)...
  7. Replies
    9
    Views
    2,447

    Re: Can't make Planet Source Code CD work

    I decided to make my own indexing program for the archive. I figure if anyone else either can't or does not want to install ancient database drivers, then this software should work for them. It uses...
  8. Replies
    9
    Views
    2,447

    Re: Can't make Planet Source Code CD work

    I have that. I managed to sort of load it on Windows 2000. I was able to open the mdb file with a viewer. Now I'm trying to extract it.

    It looks like someone else on here has produced a zip file...
  9. Replies
    9
    Views
    2,447

    Re: Can't make Planet Source Code CD work

    Well, I got farther. I'm 90% sure it's the Data Access Components not being installed. The proper version will not install. I opened a database viewer program and it also said Data Access Components...
  10. Replies
    93
    Views
    39,018

    Re: Planet Source Code Jumbo Resource CDs

    Could you please let me know what tool you used to covert the PSC files into zips. They appear to be partially like a zip already, but not everything shows up (much bigger than the files themselves,...
  11. Replies
    9
    Views
    2,447

    Can't make Planet Source Code CD work

    I downloaded the PSC CDs from archive.org. I installed the first CD. After installing, I get:
    "ADO: Could not be installed properly"

    In the installation log file. When I run the exe (which is...
  12. Replies
    246
    Views
    85,228

    Re: https://www.radbasic.dev/

    In the past I was able to locate someone who completely disassembled and reverse engineered the MSVBVM60. I can't find it now. I only see a small pdf after a google search.
    I'm entirely behind the...
  13. Replies
    13
    Views
    1,616

    Re: Resize a picture that I have drawn

    Excellent. Thank you!

    I don't need it to look super high quality anyway, so this should work fine.

    The program is an animated sprite maker. I called it pixemation. It has a grid on one form...
  14. Replies
    13
    Views
    1,616

    Re: Resize a picture that I have drawn

    That doesn't work and I'm not sure why. The code works, but the image only gets smaller and distorted.

    Here is the code (picOut is the picturebox I'm using):



    Option Explicit

    Private Sub...
  15. Replies
    1
    Views
    1,455

    We should make a VB7 64-bit

    I saw this post here and it got me thinking: http://www.vbforums.com/showthread.php?867043-New-VB6-IDE-prototype-with-Backporter-for-use-with-the-upcoming-VB6Namespaces-release

    This seems like an...
  16. Replies
    13
    Views
    1,616

    Resize a picture that I have drawn

    So I'm having a bit of trouble trying to resize an image that was drawn with SetPixel. All the examples I find on resizing an image to fit a picturebox involve using an actual image.
    I keep getting...
  17. I made an OS in VB - want input for improvement

    I know this is going to sound ridiculous or like a kid's project or something, but let me explain.
    I know it is not possible to make a real OS in VB, but what I made is basically a virtual OS that...
  18. Method or data member not found - access control inside usercontrol

    I have an array of usercontrols. Inside of the usercontrol I have some buttons, etc.

    I need to be able to access these buttons from the main form that contains the usercontrol.
    I have also tried...
  19. Get UserControl Top and Left within UserControl

    The same way you would on a Form be able to access the Top and Left properties...
    I can't do this on a UserControl.

    There is a solution here, but I don't understand it:...
  20. Replies
    7
    Views
    1,703

    Re: Stop script control from running

    OK, so my temporary solution is an adjunct of what dz32 posted:



    Dim engine
    Dim isRunning As Boolean

    Private Sub btnRun_Click()
    If isRunning Then
    MsgBox "The script is currently...
  21. Replies
    7
    Views
    1,703

    Re: Stop script control from running

    Well, maybe I got closer :)

    If I create the object at runtime using Set x = CreateObject("MSScriptControl.ScriptControl")
    then when I want to stop it I use: Set x = Nothing

    This works, but...
  22. Replies
    7
    Views
    1,703

    Re: Stop script control from running

    This would work if the code is entered by the programmer, but I don't know how I would inject that "throw ""stopped""" into a user's script that was running. It seems impossible.

    There has to be a...
  23. Replies
    7
    Views
    1,703

    Stop script control from running

    I can't believe that there is no function inside the script control to make it stop executing.
    It has a timeout in ms which doesn't do anything at all and I don't really want a timeout anyway...
  24. Re: How do I pass an array from the script control?

    Thanks a lot Olaf! That was very helpful.

    Your re-written Add function surprises me. I didn't think that it was possible to declare a variable with no type in VB. I thought it would have to be...
  25. How do I pass an array from the script control?

    I am messing around with the Microsoft Script Control 1.0 for the first time. I want to see how I can pass arrays to and from a script to VB. Now I understand that it will need to be of type variant...
  26. Replies
    10
    Views
    1,278

    Why did Microsoft make .NET Framework?

    I was just wondering why Microsoft decided to make the .NET framework. They could have just continued updating VB6 because developers were happy with that language (you could tell because of how long...
  27. Replies
    13
    Views
    1,967

    Re: authentication ,read txt if ip match

    InStr should work with multiple lines. What is the format of your file?

    Here is an ex:



    Dim str As String
    Dim loc As Integer

    str = "192.168.10.1" & vbCrLf & "192.168.1.5" & vbCrLf &...
  28. Replies
    26
    Views
    3,678

    Re: SendMessage to change image in explorer

    Well, I think I'll put this on hold because it's a lot harder than what it's worth (even for the learning experience). If you ever remember that work around, let me know.

    It's funny because I made...
  29. Replies
    30
    Views
    23,871

    Re: Components do not load

    Open notepad. Paste all the code and save it as a .bat file (not .bat.txt) just .bat. Then right click the file and run as admin.

    There are a lot of cases where you may need to use a .bat file so...
  30. Replies
    30
    Views
    23,871

    Re: Components do not load

    Certain DLLs won't register if they are not ActiveX DLLs. comdlg32 is not an ActiveX DLL, that's why you're getting that error. Did you try my batch file code in my previous post?
  31. Replies
    26
    Views
    3,678

    Re: SendMessage to change image in explorer

    Yes, all functions return a 1.
  32. Replies
    30
    Views
    23,871

    Re: Components do not load

    It looks like there aren't any components loaded.

    Maybe this:



    @echo off
    C:
    cd \.
    cd %systemroot%\system32
  33. Re: Splitting text into array, then looping through array

    It looks like you just need a loop.



    Dim strSplit() As String
    Dim i As Integer
    strSplit = Split(textToSplit, "|")

    For i = 0 to Ubound(strSplit)
    Set smedia =...
  34. Replies
    26
    Views
    3,678

    Re: SendMessage to change image in explorer

    I made the changes. It still does the same thing. Could the memory be protected? It doesn't make sense because the functions are returning success, but if I use cheat engine to examine the addresses,...
  35. Replies
    26
    Views
    3,678

    Re: SendMessage to change image in explorer

    Ok. I changed the tLBI.pszImage to a long and also changed the buffer parameter in WriteProcessMemory to a long. I then added VarPtr and StrPtr where necessary.



    I added some messageboxes and...
  36. Replies
    26
    Views
    3,678

    Re: SendMessage to change image in explorer

    Could it be that the image path string needs to be converted to a C style string? Any ideas for the code in post 14?
  37. Replies
    26
    Views
    3,678

    Re: SendMessage to change image in explorer

    No it's not, but it doesn't even work once without closing any windows. It just changes the listview's background to white and then when I press f5 it goes back. I'm sure there's just something wrong...
  38. Replies
    26
    Views
    3,678

    Re: SendMessage to change image in explorer

    It's the window handle of the listview in explorer. I was too lazy to write the code to find the window handle so I just used Spy++ to find it and then wrote it in manually. I also didn't want to...
  39. Replies
    26
    Views
    3,678

    Re: SendMessage to change image in explorer

    Ok, so I've resumed work on this project and used the advice to fix my code, but it's still not working. It just blanks the background to white in explorer.




    It makes sense that I need to...
  40. Replies
    26
    Views
    3,678

    Re: SendMessage to change image in explorer

    That's very close to working. The styles work in explorer and the image works in the demo, but the image still doesn't work in explorer. I think the WM_PAINT or WM_ERASEBKGND event is overriding it...
Results 1 to 40 of 129
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width