CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: WizBang

Page 1 of 80 1 2 3 4

Search: Search took 0.62 seconds; generated 24 minute(s) ago.

  1. Replies
    21
    Views
    19,329

    Re: VB6 and Windows 8

    Lets keep it civil, folks. Personally, I don't suspect LittleHarry of wrongdoing. He showed a screenshot as an example and gave some code with explanation. I suppose it might have been less likely to...
  2. Replies
    2
    Views
    11,097

    Re: How do I do this

    It depends on how you want the pages to operate. If, for instance, the information and pictures will be static, and you don't need it to change regularly, then you can simply create the pages in a...
  3. Re: Date Format automatically changing in VB coding window. How to stop it?

    Can you not use a string data type rather than a date type? The Format function works just as well if the variable is a string. Won't the SQL queries work if the date is a string? If not, then I...
  4. Re: Date Format automatically changing in VB coding window. How to stop it?

    Suppose you make it a string rather than a date? If tDate must be a date data type, then why not initialize it with a date before setting it with date formatted strings? In other words, use " instead...
  5. Replies
    2
    Views
    9,297

    Re: Immediate and Watch Windows not working

    I've run into things like that after changing screen resolution. Might the window be opening off-screen? If not, does the window open by the menu selection? Are you running VB6 in SDI or MDI mode?...
  6. Replies
    7
    Views
    7,415

    Re: how to read things inside any window

    It is possible that the list isn't a separate control from the window containing the title. If it is a windowless control, then perhaps it may only be possible to read items through the use of...
  7. Replies
    8
    Views
    3,131

    Re: Inet and WebBrowser control problems

    Perhaps if you can explain what it is you want to do with the page content, a solution would be easier to find. There may be other ways to accomplish what you want to do.
  8. Replies
    8
    Views
    3,131

    Re: Inet and WebBrowser control problems

    The Mozilla control may offer a different method for you to extract the HTML, though I've not looked into it.

    After looking at the URL, the main page is a frame, and the URL of that frame is: ...
  9. Re: Execute programs in more documnts simultaneously?

    You'd need to launch a new thread, which isn't very straight-forward in VB6. Or, create a separate executable, and launch that. You may also be able to put the window inside your MDI.
  10. Replies
    8
    Views
    3,131

    Re: Inet and WebBrowser control problems

    What happens if you insert "www" into the address? You might also try Winsock, or the Firefox browser control.
  11. Replies
    7
    Views
    7,415

    Re: how to read things inside any window

    It appears to me that it's not a button. It's sorta like a list, but then there's a down arrow to bring up a menu, yes? Do you get a different window handle for a list item than for the area above...
  12. Replies
    7
    Views
    7,415

    Re: how to read things inside any window

    If you got the title of a parent window, then the window handle you used doesn't belong to the child window you want to read. How are you locating the window handle? Have you used...
  13. Re: How to show a label while playing media player in full screen

    The WMP used to have an option to turn off hardware acceleration, so it's apparently possible to do it for a single application, without effecting anything else. As far as I know, doing that should...
  14. Re: How to show a label while playing media player in full screen

    Try setting the window you want on top using the SetWindowPos API. Or, I think using the SetParent API, you could actually place the window inside the video window, thereby making it impossible for...
  15. Replies
    8
    Views
    9,481

    Re: wordsearch puzzle complete vb6 or vb5

    Thanks for clarifying the requirements.

    The first thing which comes to mind is to have the algorithm generate the puzzle without some of those parameters being checked along the way. Once the...
  16. Replies
    4
    Views
    8,810

    Re: Alignment on Printer.print

    Can't you use the Space$() function?
  17. Replies
    7
    Views
    7,415

    Re: how to read things inside any window

    Have you tried the GetWindowText API function?
  18. Replies
    8
    Views
    9,481

    Re: wordsearch puzzle complete vb6 or vb5

    Then it is a challenge to you, to find ways to cut it down, clean it up, make it more efficient, etc. It would be a shame to deprive you of that by handing you finished code :)

    However, I would...
  19. Re: Limiting the Acceptance of Keyboard Interrupts

    Ah! That's probably the problem - Joy2Key. Perhaps if you only activate the Joy2Key utility when you click the button, and deactivate it when the first valid signal is received from one of the...
  20. Re: Limiting the Acceptance of Keyboard Interrupts

    As others have stated, there shouldn't be an issue from repeated key presses. I tested with the attached form, and it works fine even if a key is held down. It does not prevent the button from being...
  21. Replies
    1
    Views
    1,425

    Re: Software edit file *.skin ?

    Please elaborate on exactly what you are looking to do.
  22. Re: Help with VB6, i'm building a Dll but the form is not recognixing the public vars

    You can also place global variables in a .bas module. Then they will be seen by all other modules without having to declare and instantiate anything. Same for subs and functions.
  23. Replies
    16
    Views
    3,420

    Re: Kill file issue

    I think DataMiser got it right in an early post. There may not have been anything necessarily wrong with your code, except that the file may not yet have been deleted when the program attempted to...
  24. Re: Limiting the Acceptance of Keyboard Interrupts

    If you're not already using the keyboard events of the form, then that would be the first thing to do. Then in the appropriate event, test the flag, and exit the sub if it is false.
  25. Replies
    4
    Views
    5,499

    Re: can somebody help me.

    If I understand you correctly, you basically need to translate a procedure written in VB6 to clarion, or more specifically, the calls to the DLL, yes?
Results 1 to 25 of 1997
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured