Search:

Type: Posts; User: manavo11

Page 1 of 13 1 2 3 4

Search: Search took 0.34 seconds.

  1. Replies
    28
    Views
    3,035

    Re: I am on a roll

    It was only what I call a nap. Other people might call it hibernation though.
  2. Replies
    28
    Views
    3,035

    Re: I am on a roll

    Patridaaaaaaaaaaaaaaaaa
  3. Re: what is the diffecnt bettween this two code?

    You made the switch command have an uppercase S?

    Make it switch (nButton) instead of Switch (nButton)?

    Also, I'm guessing this is Javascript and not Java, so I'll move it to the appropriate...
  4. Thread: Today .....

    by manavo11
    Replies
    19
    Views
    3,044

    Re: Today .....

    Person? Look again, he's clearly a monkey of some sort!
  5. Thread: Monavo2011

    by manavo11
    Replies
    9
    Views
    3,102

    Re: Monavo2011

    You need to spell my name right to get my attention. So I will keep ignoring you.
  6. Thread: Today .....

    by manavo11
    Replies
    19
    Views
    3,044

    Re: Today .....

    Today, I doubt any of you 3 were on the right train.
  7. Re: Integer Number to Binary... For loop problem

    Easiest way is to look into Control Arrays (this might help? http://www.melbpc.org.au/pcupdate/9608/9608article4.htm)

    And welcome to VB Forums! :)
  8. Re: how to get a value from part of a url ?

    That is VB.Net code though, not VB6 (which is the forum)!

    The idea is the same, you just need to do it slightly differently:

    First step is to Split so you get an array with all bits of the URL...
  9. Replies
    43
    Views
    253,512

    Re: VB - List All The Files In A Directory

    Unless we see exactly your code, we won't be able to help! You can create a new thread in the Visual Basic 6 and Earlier forum to get more help :)
  10. Re: The first word that comes into your head when you read this thread .....

    Bowel
  11. Replies
    107
    Views
    15,344

    Re: VB Forums Photography Contest #7

    http://farm5.static.flickr.com/4016/5076240011_4ca6667ce6_m.jpg
    http://farm5.static.flickr.com/4104/5072146281_7a8a71d0ac_m.jpg
    http://farm5.static.flickr.com/4092/5072131461_458ca853de_m.jpg...
  12. Replies
    8
    Views
    1,059

    Re: Help with values in a text box

    Dim lines() As String
    Dim lineParts() As String
    Dim i As Integer
    Dim number As Integer
    Dim values As String


    values = ""
  13. Re: Read portion of a comma delimited string

    For VB6 (seeing as it's in this forum):



    Dim parts() As String
    Dim result As String
    parts = Split(csvString, ",")
    result = parts(2)
  14. Replies
    8
    Views
    1,059

    Re: Help with values in a text box

    To get the value from the textbox (as you probably already know) you read the .Text property of the object. For the manupulation of the value, you can either use InStrRev to find the last space and...
  15. Re: Capture a screen area underneath a Form

    Also just found this: http://www.vbforums.com/showthread.php?t=367773&highlight=Magnifying+glass

    Looks even more promising
  16. Re: Capture a screen area underneath a Form

    Hey!

    Not sure if this will help, but searching for magnifying glass here I found this: http://www.vbforums.com/showthread.php?t=368322

    The code is mixed in with BB tags, but there is the...
  17. Replies
    2
    Views
    1,364

    Re: ExTextOut outputs random characters

    It's an API I've never seen and isn't found on AllAPI. Doubtful any VB people will be able to help with this. Probably best placed in the C# forum, might have a better chance of this being a generic...
  18. Replies
    9
    Views
    24,482

    Re: [VB6] - SetWindowPos() api function

    Try getting the code working without using the user control. Also Edgemeal makes a good point. If you're using Me inside the user control, that's probably not the parent form so it might be applying...
  19. Replies
    7
    Views
    1,104

    Re: Populating two Comobo Boxes.

    I'd say it's even easier for now to just preload all the possible options and just display what you want accordingly (using the onchange event as kows has mentioned).

    I just think it'll be easier...
  20. Replies
    3
    Views
    698

    Re: Calling Scripts only on button click

    Presumably you do the hiding and showing by changing the visibility and display properties of the divs. If you want to load them dynamically and not just show/hide the divs, then you need to use...
  21. Replies
    5
    Views
    3,095

    Re: Echo Error Message for Incorrect Login

    After you print it, you need to clear the session variable, otherwise it will stay set for as long as the session exists.


    <?php
    session_start();
    if (isset($_SESSION['ErrorLogin']))
    {
    $error...
  22. Replies
    5
    Views
    2,154

    Re: Problem saving video streams

    I'll move this thread into the C# forum for you so maybe you can get someone more knowledgeable with C# to help.
  23. Replies
    27
    Views
    21,129

    Re: LowLevelKeyboardProc + Alt key

    Why would you need something like this? Do you want to block it in your app or system wide?
  24. Replies
    2
    Views
    772

    Re: newbie - porting to Java

    I'll try and answer part of your question. If you have a .DLL written in VB6, then it will be a windows DLL (and presumably it'll be the same with the C++ DLL). Therefore, logic dictates that you...
  25. Replies
    5
    Views
    2,154

    Re: Problem saving video streams

    I can't say I've worked with web camera capturing myself, but here's a codebank entry by Pino talking about that kind of thing: http://www.vbforums.com/showthread.php?t=344471. Hope it helps!
  26. Replies
    43
    Views
    253,512

    Re: VB - List All The Files In A Directory

    Try starting with the code from the third post: http://www.vbforums.com/showpost.php?p=1526079&postcount=3

    It seems like the most similar to the code you have. Compare it, find the differences and...
  27. Replies
    43
    Views
    253,512

    Re: VB - List All The Files In A Directory

    You could specify an extension. It is mentioned in the examples if you read through them carefully.
  28. Replies
    1
    Views
    1,310

    Re: Firefox from VB

    Not sure if they typical SendMessage API to controls of the window would do what you want.

    Other than that, googling gave me these results that may help:...
  29. Replies
    1
    Views
    3,185

    Re: stdole.StdPicture

    I have never personally used the StdPicture object. Is there any particular reason you have to use that?

    Anyway, while googling for it, I found this that might help:...
  30. Replies
    2
    Views
    1,129

    Re: java netbeans db problem

    Can you post the code you have so far? That way we can explain what bit of your code isn't working and it will help you understand better what went wrong :)

    Welcome to VBForums!
  31. Replies
    374
    Views
    25,032

    Re: What book are you reading these days?

    Just finished The Associate by John Grisham
  32. Replies
    43
    Views
    253,512

    Re: VB - List All The Files In A Directory

    If you look at this thread: http://www.vbforums.com/showthread.php?t=244880 it's code for listing all sub-directories. If you combine the two, then you have exactly what you want :)
  33. Replies
    14
    Views
    35,499

    Re: VB6 - Module to launch IE

    Something like this I guess (untested):


    Dim IE As Object

    Private Sub Form_Load()
    Set IE = CreateObject("internetexplorer.application")
    IE.visible = true
    End Sub
  34. Re: How send keystroke or command to a minimized window?

    Well, how are you launching it now? With Shell? ShellExecute?
  35. Replies
    14
    Views
    35,499

    Re: VB6 - Module to launch IE

    If you declare the variable globally (Dim IE As Object) and not locally in a function, then you should be able to access it again and run the IE.navigate with a different URL.
  36. Replies
    4
    Views
    1,997

    Re: Redirect To Same Page

    I think this is the equivelant:
    http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/http/HttpServletRequest.html#getRequestURI&#37;28%29
  37. Thread: Image Upload

    by manavo11
    Replies
    1
    Views
    652

    Re: Image Upload

    Have a read through this: http://www.jguru.com/faq/view.jsp?EID=160 it should help get you started.
  38. Replies
    2
    Views
    2,531

    Re: Servlet + JSP + MVC + Database

    Here's is a code snippet to connect to a database through JSP:

    String driver = "org.apache.derby.jdbc.EmbeddedDriver";
    String dbName="C:\\databases\\mydb";
    String connectionURL =...
  39. Thread: Math.Random()

    by manavo11
    Replies
    2
    Views
    810

    Re: Math.Random()

    If you divide the random number that is returned by 100, then it would guarantee you that you have two zeros after the decimal point. Or I've missed something :ehh:
  40. Replies
    43
    Views
    253,512

    Re: VB - List All The Files In A Directory

    I'm not sure if there is a way to get the list of files in a specific sorted order. However, since you can get all files, you can then read any information you want for each file (last modified,...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width