Search:

Type: Posts; User: q582gmzhi

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    785

    Re: Restrict Fast Mouse Clicks

    Many thanks for the responses.

    I have used your code suggestions as a guide and it now works fine.

    Daz.....
  2. Replies
    4
    Views
    785

    [RESOLVED] Restrict Fast Mouse Clicks

    Hi,

    Is there a simple but effective way to restrict the number of times a left mouse button can be clicked during a specified time period. i.e: 'if button was pressed within last 2 seconds exit...
  3. Replies
    6
    Views
    35,985

    Re: Insert text into current outlook message

    Hi,

    Thanks for the prompt responses.

    I will try both your examples and see what I can do.

    Thanks

    Daz......
  4. Replies
    6
    Views
    35,985

    Insert text into current outlook message

    Hi,

    I am trying to find an example of using a hotkey to insert text into the current email I am reading via outlook 2002.

    For example:

    F1 = Sorry cannot help
    F2 = I will email you later
    F3...
  5. Re: [RESOLVED] Disable Minimise Button on Form

    Thanks,

    Works great.

    Daz..
  6. Re: Disable Minimise Button on Form

    Hi,

    Thanks for the response.

    One last question, can I maximise the form size by using say the F10 key instead of clicking the forms maximise button or border?

    Thanks in advance.

    Daz.....
  7. [RESOLVED] Disable Minimise Button on Form

    Hi,

    Can the minimise button on the top left of a sizeable form be disabled?

    I do not want the user to minimise the form on the taskbar but I want to allow them to scale the form using the...
  8. [RESOLVED] Allow User To Copy File To Folder or Drive

    Hi,

    I need to be able to allow a user to save a file to their choice of desktop, folder, flash drive etc etc.

    They do not need to choose the file to copy, I can hard code this info into the...
  9. Re: Guidance On Updating PIC Using VB Program

    Hi,

    The chips are 16F877 type.

    What I have found so far is that:

    The PIC need Bootloaders installing when new and then the PIC code\hex file(s) can be added.

    I believe its the...
  10. Re: Guidance On Updating PIC Using VB Program

    Thanks for the response.

    I had a look around some electronic forums last night and the Bootloader does seem to be the way forward.

    However I don't have a great knowledge of PICs, I have the PIC...
  11. Guidance On Updating PIC Using VB Program

    Hi,

    I am looking for guidance from anyone with PIC and VB6 experience.

    I have a VB6 program that talks to a PIC via RS232 all works fine. The PIC language is PICBASIC and I use VB6 for the...
  12. Re: [RESOLVED] Search String And Return Next 3 Digits

    Sorted out.

    Used Mid$().

    Daz...
  13. [RESOLVED] Search String And Return Next 3 Digits

    Hi,

    I have a string thats 56 charcters and I need to return a value after each letter:

    ie: "A001 B456 C123 D987 E345" etc etc

    I have managed to return the position of the letter in the the...
  14. Replies
    7
    Views
    1,313

    Re: [RESOLVED] Loop Load and Unload EXE

    Hi,

    Thanks for responses.

    Managed to automate it by following Jim Davis suggestions.

    I created another small vb app to loop through and start the application and get handles for the buttons...
  15. Replies
    7
    Views
    1,313

    Re: Loop Load and Unload EXE

    Hi,

    Yes I could do it manually but was hoping I could automate it and leave it running for several hours.

    Then come back and check memory and error logs.

    I may have to do it manually if it...
  16. Replies
    7
    Views
    1,313

    Re: Loop Load and Unload EXE

    Hi,

    Sorry I may not be explaining it clearly.

    I just need to run a loop that will open the complied exe then close the complied exe several thousand times so I can see if any errors occur and...
  17. Replies
    7
    Views
    1,313

    [RESOLVED] Loop Load and Unload EXE

    Hi,

    I testing my software and have created a number of tests using loops for opening closing forms, adding data, saving data, loading data, pressing buttons etc to check for errors and memory...
  18. Re: Public Boolean On Application Close

    Thanks for the responses.

    Thought I had read somewhere about having to destroy public string variables?

    Must have misread something.

    Daz....
  19. [RESOLVED] Public Boolean On Application Close

    Hi,

    What happens to any Public Booleans when an application closes, do they destroy themselves and free the memory or do I need to destroy them like I do with the strings, forms etc?

    ie:
    ...
  20. Replies
    4
    Views
    591

    Re: Installer Question

    Hi,

    Thanks for the response.

    Will the MSI also include all the runtime files etc in the same package or is it just for the software?

    Daz.......
  21. Replies
    4
    Views
    591

    Installer Question

    Hi,

    I have used the PDW in VB6 all works well and packaged software installs OK from a CD.

    How would I go about creating a package that can be downloaded from a link on a website and installed,...
  22. Run Sub After 2 Seconds of Form Inactivity

    Hi,

    I have a form with multiple buttons and textboxes. All buttons can be pressed and textboxes updated etc.

    I am looking for a way to run a sub after a cntrl has been actioned on the form, but...
  23. Re: TextBox and Blinking Cursor Question

    Thanks,

    Managed to sort out the issue with Code Docs example.

    Daz.....
  24. Re: Return the name of the sub or function

    OK,

    Thanks for the responses, I will have a look at the suggestions.

    Daz....
  25. Replies
    6
    Views
    47,895

    Re: VB Add-in: Insert Procedure Names

    Thanks,

    I will have a look at it.

    Daz...
  26. [RESOLVED] Return the name of the sub or function

    Hi,

    I am not 100% sure of the wording that I am searching for, but here goes.

    I am using Error Handling and whilst I can return the Err.Number and Err.Description to a message box, is there...
  27. Re: [RESOLVED] Math - Multiple Text Box's Using For Each Next

    Hi,

    Thank for the responses, query regarding For Each Next sorted based on Longwolfs example and Duplicate form sorted based on Merris example.

    Thanks

    Daz......
  28. Re: Math - Multiple Text Box's Using For Each Next

    OK, yes just tested it and your right.

    Thanks

    Daz.......
  29. Re: Math - Multiple Text Box's Using For Each Next

    Hi,

    So is it better to use the 'FormName.Controlname' rather than use 'With FormName' and 'End With' when used in 'For Each Next' situations and Loops?

    Thanks

    Daz.....
  30. Re: Math - Multiple Text Box's Using For Each Next

    Hi,

    I am having to use 'With' because I use the code in a sub and pass paramaters to it, so the one sub can work on two different forms.

    Daz......
  31. Re: Math - Multiple Text Box's Using For Each Next

    Hi,

    Managed to get the code working with a few tweaks. thanks.

    The code up and running on two forms BatStat1 and BatStat2 within the project, the user can view these for comparison analysis.
    ...
  32. Re: Math - Multiple Text Box's Using For Each Next

    Hi,

    Thanks for the responses. I will have a look at the code you left.

    NZ is a funtion (NZ = Null Zero)

    If the value for the textbox is Null then use '0', it just helps the code handle nulls...
  33. [RESOLVED] Math - Multiple Text Box's Using For Each Next

    Hi,

    I am trying to add together the values in about 14 text boxes. The first section below works fine. However it is hard to read etc.

    So I have tried to simplify things by assigning a tag to...
  34. Re: Showing Hidden Controls at Runtime

    Hi,

    Thanks for eveyones responses.

    I eventually used a mixture of 'Hacks', 'Longfwolfs' and some of my own idea's.

    It toggles the hidden controls to be visible if the right key sequence is...
  35. Re: TextBox and Blinking Cursor Question

    Hi,

    OK, thanks I will have a look at it and let you know.

    Thanks

    Daz.....
  36. [RESOLVED] TextBox and Blinking Cursor Question

    Hi,

    When you click into a textbox on a form a blicking cursor appears.

    Sometimes at the begining of the text, in the middle or at the end depending where the mouse clicks at that moment in...
  37. Replies
    5
    Views
    669

    Re: [RESOLVED] Byte, Integer or Long

    Thanks for the responses, I will have a look at my code and try a few variable changes and see what effect, if any it has.

    Daz......
  38. Re: Showing Hidden Controls at Runtime

    Hi,

    Lots of things to have a look at here, thanks for the responses I will let you know how i get on.

    Thanks

    Daz......
  39. Re: Showing Hidden Controls at Runtime

    Hi,

    Thanks for the responses.

    I already use 'MartinLiss' suggestion and that works OK, I just set a flag boolean 'bDebugView = True' or False to view the controls whilst in the IDE.

    But I...
  40. Re: Showing Hidden Controls at Runtime

    Hi,

    Thanks for the code.

    I was playing with the code and trying to check for three keys pressed, but could not get it to work, works on 2 OK. I have also tried it in Select case for 3 keys.
    ...
Results 1 to 40 of 84
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width