Search:

Type: Posts; User: batman321

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. Re: Need code/advice on password protecting VB6 program

    Can hackers/coders etc use reverse engineering or programs to view my program's code? If I hard-code a 'random number method' serial generator into the first form of my program, can someone use a...
  2. Re: Need code/advice on password protecting VB6 program

    I was following this tutorial but you said "Don't bother with hardware ID/hard drive serial number.

    http://www.vbforums.com/showthread.php?232146-VB-A-Program-Registration-Scheme
  3. Re: Need code/advice on password protecting VB6 program

    These are all good points and I appreciate everyone's feedback.

    Ideally I don't want to implement serial key etc because its quicker if I sell my program now but I don't want to "give" my program...
  4. Need code/advice on password protecting VB6 program

    Hi there,

    I am selling my program online (advertised online, I post VB6 CD to user, not online sales) and I want my VB6 program to retrieve the customer's hardware ID number, then they email me...
  5. Replies
    2
    Views
    1,235

    Re: Problems with PDW msvcrt.dll

    I just found this out on the net, I might follow this advice:

    msvcrt.dll should always be on windows. It is the VC++ runtime.
    I would never include it in an install.
  6. Replies
    2
    Views
    1,235

    Re: Problems with PDW msvcrt.dll

    I noticed something. My previous PDW setup.lst file doesn't include this file at all. For some reason, the PDW has added that line of late.
  7. Replies
    2
    Views
    1,235

    [RESOLVED] Problems with PDW msvcrt.dll

    Hi,

    Everything was fine in my program however I packaged my program and I set all the file paths to "AppPath" (i.e. install all program files to directory specified by user) but now the file...
  8. Replies
    4
    Views
    3,197

    Re: P&D Wizard desktop shortcut problem

    I followed this website: http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=43727&lngWId=1

    The last comment on this page says ""..\..\Desktop" and fCreateShellLink no longer okay on...
  9. Replies
    4
    Views
    3,197

    P&D Wizard desktop shortcut problem

    The setup doesn't create an executable file in the installation folder. The only executable file I can see is the desktop shortcut. It seems the desktop shortcut is looking for the .exe file in the...
  10. Replies
    4
    Views
    3,197

    P&D Wizard desktop shortcut problem

    Hi,

    I have tried to solve this problem myself, I am here as last resort.

    My VB6 application can create a desktop icon during setup which is great, but the P&D wizard doesn't create the...
  11. Replies
    7
    Views
    1,159

    Re: Debugging question

    Thanks for the replies.
  12. Replies
    7
    Views
    1,159

    Re: Debugging question

    Sorry, I tried following what you said, but still couldn't get it to work. Basically I want to jump from "breakpoint 1" to "breakpoint 2", which seems logical. My problem is when I set up 2...
  13. Replies
    7
    Views
    1,159

    [RESOLVED] Debugging question

    When I use the debugger in VB6, is there a quicker/faster way to reach the "debugging code segment" in case it takes forever to reach this code? If I have timers that loop etc, I need to "leap" past...
  14. Replies
    1
    Views
    512

    Re: Logic wrong in my code

    I fixed it. I added a "date" variable and copied Reminders.Text20.Text to it. This code was dealing with a "string" not a "date" variable.
  15. Replies
    1
    Views
    512

    [RESOLVED] Logic wrong in my code

    My code works if the 2 dates are from the same month, but if I select dates from other months, the code says its not in range, when it is:


    Reminders.Text20.Text =...
  16. Re: Default "Date" Picker time (time used only)

    Thanks.
  17. [RESOLVED] Default "Date" Picker time (time used only)

    What should the default "Date" picker time be? I'm only use the time part of it e.g. 17:30 AM.

    It defaults to 12:00 AM but that seems absurd because most people don't function at midnight. I...
  18. Replies
    1
    Views
    563

    Re: Need help with Datepicker

    I solved this myself:

    I added "" & Reminders.Text1.Text & "" & Reminders.Text15.Text & "" to a single textbox and then I copied this textbox to the Reminders.DTPicker5.Value.
  19. Replies
    1
    Views
    563

    [RESOLVED] Need help with Datepicker

    User selects date and time from 2 different fields.

    How do I get Reminders.DTPicker5.Value to equal both values from Reminders.Text1.Text and Reminders.Text15.Text:


    Reminders.Text1.Text ...
  20. Solved!

    That's excellent. Thanks :)
  21. [RESOLVED] Need to find hours and minutes between 2 dates

    Hi,

    I need to know the exact hours and minutes between 2 times and dates:

    For instance: (i made this dates up)

    Monday 4th July 800pm - Wednesday 6th July 8pm will be 48 hours
    Sunday 3rd...
  22. Replies
    2
    Views
    966

    Re: Monthview Control

    Thanks for your reply.
  23. Replies
    2
    Views
    966

    Monthview Control

    Hi,

    How do I customize the Monthview Control? It shows the date as "6/14/2012"....what if I want to change it so the day is first....

    so the date is formatted to "14/06/2012"....not "6/14/2012"...
  24. Replies
    7
    Views
    1,667

    Re: Apostrophe in textfields

    I would never dispute the VB6 gate keepers!
  25. Replies
    7
    Views
    1,667

    Re: Apostrophe in textfields

    I'm sorry. I may not fix this problem because there's too much code. Why can't I blame the textbox?! I assume it could handle all types of data....why would it be fussy when users come from all walks...
  26. Replies
    7
    Views
    1,667

    Apostrophe in textfields

    I just realised VB6 (i.e. textbox) doesn't treat apostrophes like regular characters (i.e. alphabet). If a user tries to save a text-field like this:

    Jim's car - it won't save it, it will simply...
  27. Replies
    2
    Views
    583

    Re: Question about PDW (included files)

    I'm happy with PDW. When I open the PDW wizard, it gives me 3 options:


    Package
    Deploy
    Manage Scripts


    Under 'Manage Scripts' in the PDW, I can see my saved scripts, it would be good if...
  28. Replies
    2
    Views
    583

    Question about PDW (included files)

    Hi,

    This question might have been asked before, anyway, when I use the Package and deployment wizard, it allows to me save a script name. I figure, when I go back to the P&D wizard, I should be...
  29. Re: How do I view ALL my project code in VB6

    This solved my problem! Thanks guys.
  30. Replies
    14
    Views
    2,933

    Re: Question about P&D wizard

    Thanks for your help! I fixed this by defining the constant ssfLOCALAPPDATA


    Private Const ssfLOCALAPPDATA = &H1C
  31. Replies
    14
    Views
    2,933

    Re: Question about P&D wizard

    I included the "shell32.dll" file with my project but I can't find it listed in the "support" folder or in the "SETUP.LST" file.

    In the P&D wizard, under "included files", shell32.dll is not...
  32. Replies
    14
    Views
    2,933

    Re: Question about P&D wizard

    I can retrieve the path name from the LocalAppdata folder (Appdata\Program Name) for all my target OS and store my database there. I'm using the code:




    Dim strDocs As String
    Dim...
  33. Re: How do I view ALL my project code in VB6

    Double-click any form or right click the form and select "view code" from the menu. There will be 2 little buttons at the bottom left of the code window.

    Left button shows "Procedure view"
    Right...
  34. Re: How do I view ALL my project code in VB6

    I know it sounds like an easy question, but I can't view ALL my project code in one viewing. What I mean is, If I want to scroll through all my VB6 code in my project, I can't, I can only view the...
  35. [RESOLVED] How do I view ALL my project code in VB6

    I click "Full Module View" but it only shows the module code.
  36. Replies
    14
    Views
    2,933

    Re: Question about P&D wizard

    I just found out the "Documents" folder in Win7 was hidden. I had to change the folder options to "show hidden files and folders". Will this be a problem if this folder is hidden on Win7 user's PCs?
  37. Replies
    14
    Views
    2,933

    Questions...

    Hi team,

    Just some questions:

    If I copy my database.mdb file to user's "Documents" folder:

    1. Does the "Documents" folder exist on Windows XP/Vista/Windows 7? What if the "Documents" folder...
  38. Replies
    14
    Views
    2,933

    continued..

    I have read everything you guys are saying, but its only 1 file that is causing the problem. My database.mdb. Once that file was saved to another directory, my program has no more problems.
  39. Replies
    14
    Views
    2,933

    Re: Question about P&D wizard

    Also, I play lots of PC games, and the default directory the game tries to install to is "Program Files". This directory on my computer contains most folders on my PC. These games are new as well...
  40. Replies
    14
    Views
    2,933

    [RESOLVED] Question about P&D wizard

    Hi,

    The P&D wizard works great but there's one area for concern. I am selling my VB6 program online and one of my users had Windows 7 Ultimate. Anyway, by default, the P&D wizard uses "program...
Results 1 to 40 of 210
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width