Search:

Type: Posts; User: Keithuk

Page 1 of 13 1 2 3 4

Search: Search took 0.55 seconds.

  1. Replies
    22
    Views
    3,730

    Re: Screensaver on WinXP

    This is an old thread 03/11/12 which I've posted my app in in the #1

    As I've said it works perfectly on Vista and my old WinME but it doesn't work on its own in WinXP.

    The codes has been...
  2. Replies
    23
    Views
    4,900

    Re: Unregistered Controls In VB6/W7HP

    I’m frustrated with Windows 10 crap as all my apps work on other 32bit and 64bit machines from the feedback I get :)

    I’m trying to sort out a problem with the different windows versions and builds...
  3. Replies
    23
    Views
    4,900

    Re: Unregistered Controls In VB6/W7HP

    This is an old thread I've know Chris for years

    As a general rule default VB6 OCX files have to be installed with VB6 install and registered that is normal for IDE use

    I’ve posted my apps on...
  4. Replies
    27
    Views
    2,378

    Re: Copy a VB6 .exe to other PCs with Windows OS

    All I can say is I post my apps on a few forums with instructions how to install. I say any problems report them along with the OS use.

    My apps extracts a database to use then deletes it when the...
  5. Replies
    27
    Views
    2,378

    Re: Copy a VB6 .exe to other PCs with Windows OS

    All I can say is I post my apps on a few forums with instructions how to install. I say any problems report them along with the OS use.

    My apps extracts a database to use then deletes it when the...
  6. Replies
    27
    Views
    2,378

    Re: Copy a VB6 .exe to other PCs with Windows OS

    If you copy the VB6 exe to another it depends on if it uses any additional OCX or DLL files.

    Make a Package and Deployment for it.

    If it uses an OCX just put that in the Windows/System32 folder...
  7. Replies
    12
    Views
    1,943

    Re: [RESOLVED] VB6 not installing on Win 7

    "subscript out of range" is a VB error not a Windows system error.

    I use VB6 on Windows XP 32bit no problem. When I tried to install it on Window 8.0 it showed an error. The solution is in this...
  8. Replies
    8
    Views
    2,836

    Re: Change file properties

    I got mine to compile I missed a constant Const FO_DELETE = &H3 and I had to rename one of the functions that sees if a file exists.

    As I've said I can't remember where I downloaded this app from...
  9. Replies
    8
    Views
    2,836

    Re: Change file properties

    I didn't make this app on my own, I modified bad coding then it worked and compiled to an exe.

    I can't remember where I got this app from as it was compiled in 2006. I needed to sort more things...
  10. Replies
    32
    Views
    4,243

    Re: Obtaining informations about trapped error

    Error trapping isn't that easy with VB6 you have to use an error trap in every control, Sub and Function.

    What I've used for years is in Form Load I set a filename app name ErrorLog in Form_Load...
  11. Replies
    7
    Views
    3,558

    Re: Getdefaultprinter problems

    I have many app that may need to print something. Its not easy finding the printer without the Common Dialog or using a Combo box to find all installed printers.

    I use Printer.DeviceName which...
  12. Replies
    15
    Views
    1,992

    Re: form stretching pls

    If you do a search for resizing forms there are examples. The one I use is post#4

    Resizing controls
  13. Replies
    20
    Views
    7,217

    Re: Windows 10 Version Issue.

    This is an interesting thread. My About form shows computer info OS, hard drive size, video card, printer etc

    Its not very easy to test out unless you have all OS.
    ...
  14. Replies
    6
    Views
    1,254

    Re: YouTube video in ieframe.dll

    Thanks for the reply westconn1.

    The strange thing is the YouTube video plays no problem. Its as though it locks the web browser control, if you click on any other item in the ListView or search it...
  15. Replies
    6
    Views
    1,254

    Re: YouTube video in ieframe.dll

    Thanks for the reply. Have you tried my app as 16 users have downloaded but yours is the only comment, is there something wrong with the coding?

    There is another error if you search for Skoda in...
  16. Replies
    6
    Views
    1,254

    Re: YouTube video in ieframe.dll

    Why doesn't Edit Post work for me?

    I've uninstalled Adobe Flash Player but the fault still shows.
  17. Replies
    6
    Views
    1,254

    YouTube video in ieframe.dll

    Hi guys.

    There is an app I've made for years showing a YouTube video in ieframe.dll. For the past 9 months when I add new info to the database and test it. Anything with a YouTube video plays as...
  18. Replies
    3
    Views
    1,022

    Re: Resizing controls

    I found a good app a while ago for resizing controls and text size. Menu items can't be sized.

    http://www.vb-helper.com/howto_resize_controls_to_fit.html
  19. Replies
    16
    Views
    5,079

    Re: How to get data from a ListView?

    Its strange it doesn't have an index when all the rest do


    C = "Manufacturer: " & lvwEngine.SelectedItem.Text & " Mounting Time: " & lvwEngine.SelectedItem.SubItems(6) & " Model: " &...
  20. Replies
    16
    Views
    5,079

    Re: How to get data from a ListView?

    Yes I know how your code works but as I said yesterday:

    Your code show in the clipboard:

    Audi 1Z 66 90 1.9 4 01/95-07/97 Audi A4 Greece ("GR."): Turbocharged Direct Injection (TDI)
    ...
  21. Replies
    16
    Views
    5,079

    Re: How to get data from a ListView?

    Sorry for the late reply, I've been busy with a lot of other things.



    Thanks 4x2y for your solution which works.

    Your solution just shows the text from each ListView1.SelectedItem.Text. I...
  22. Replies
    16
    Views
    5,079

    Re: How to get data from a ListView?

    The main reason I use Microsoft Windows Common Control 5.0 (SP2) is because the progress bar shows a perfect line where as 6.0 the line is broken up with the bars which I don't like. It strange 5.0...
  23. Replies
    16
    Views
    5,079

    Re: How to get data from a ListView?

    Thanks for the reply.

    I tried your code but it says:

    Dim Item As MSComctlLib.ListItem

    It says User-defined type not defined.

    I'm using Microsoft Windows Common Control 5.0 (SP2) for the...
  24. Replies
    16
    Views
    5,079

    [RESOLVED] How to get data from a ListView?

    Hi guys.

    How to get data from a ListView?

    I make a few apps using a ListView which has 1,000 of data which there is no point is printing them all out.

    If I right click on an item how can I I...
  25. Replies
    8
    Views
    2,595

    Re: Shell Email Message

    Interesting subject.



    I use the ShellExecute API for sending emails with SW_SHOW. This uses the default email client.

    You have to open API Viewer and select Constants and type or paste in...
  26. Replies
    2
    Views
    827

    Re: ListView Question

    I use the ListView a lot and I noticed that but it only highlights the first column. I add code to highlight all columns once selected.

    When you load data into the ListView:



    'In a Module...
  27. Replies
    7
    Views
    4,345

    Re: Out of Stack Space Error 28

    Ok Elroy that code gives Out of Stack Space Error 28. What does InfiniteRecursion do as its not a VB function?

    The Debug window is a bit of a pain as you can't select anything once the error...
  28. Replies
    7
    Views
    4,345

    Re: Out of Stack Space Error 28

    Thanks for the comments guys.

    I've been using VB for the past 20 years and that's the first time I've had the Out of Stack Space Error 28 error.

    I've had an app with 80 Forms and hundreds of...
  29. Replies
    7
    Views
    4,345

    Out of Stack Space Error 28

    Hi guys.

    I've been using the Martins VB - A Program Registration Scheme for a while and it works ok.

    The problem is its all numbers e.g. -0074612515 I want to make it alphanumeric.

    #178
    ...
  30. Replies
    177
    Views
    140,465

    Re: VB - A Program Registration Scheme

    Ok I'm back on this hard drive serial number. As I've said I can find the hard drive serial numbers of both my computer, WinXP generates -1330466363 and Win7 32bit generates -0084672515. I want to...
  31. Re: [RESOLVED] erase all text in all textboxes

    I know this is an old thread but I couldn't find anything in a search for clearing all textboxes on a Form, Google only shows VB.Net.

    I've tried Hacks suggestion but it shows Next without For...
  32. Replies
    6
    Views
    2,857

    Re: VB6 installation failed on Windows 10

    Did you do the free Windows 10 upgrade from Windows 7? I did this a few months ago and VB6 still worked as it should do. Other things didn't work correctly so I put back Windows 7 Pro and I removed...
  33. Replies
    177
    Views
    140,465

    Re: VB - A Program Registration Scheme

    Its a great app for registering an app. My main concern is getting the hard drive serial number which you can get from

    Public Declare Function GetVolumeInformation Lib "kernel32" Alias...
  34. Re: [RESOLVED] Runtime Error 3170: Couldn't find installable ISAM

    Sorry to grab this old thread but I have the same problem.

    I've used VB for many years and a Fuel Consumption app that shows all detail has always worked. My last fill up shows this error on...
  35. Replies
    10
    Views
    1,512

    Re: Card game concept help

    It seems a bit long winded to have 52 image files for cards to sort when you can use Cards.dll or Qcard32.dll.
  36. Replies
    19
    Views
    1,976

    Re: [RESOLVED] Menu Item Question

    Its nice to see planetsourcecode.com is back online. ;)
  37. Thread: Making an icon

    by Keithuk
    Replies
    31
    Views
    2,720

    Re: Making an icon

    I use IMAGEDIT.EXE of the VB6 CD and I also use IcoFX 1.6.4 (later versions you have to pay for) which is free for extracting icons from dll, exe, ocx, icl files. All these icons can be added to...
  38. Replies
    4
    Views
    1,312

    Re: Hi need help with old VB proyect

    As Datamiser says most of those controls are in a folder on the VB6 CD apart from XBTN.OCX which I've never heard of nor as Google. Just put them all in the Windows\System32 folder and register them...
  39. Replies
    7
    Views
    1,104

    Re: A Help file was not specified (138)

    A word of warning *.hlp help files haven't been supported for a number of years since Vista came out. If you do run them you need to download and run the appropriate WinHlp32.exe....
  40. Replies
    19
    Views
    1,877

    Re: Why VB6 and not VISUAL STUDIO for VB ?

    Visual Studio covers more then VB6 it has Visual C++, Visual FoxPro, Visual InterDev, Visual J++ and Visual SourceSafe.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width