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

Search:

Type: Posts; User: Chrispy360

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    5,785

    Get Java Text

    Hi there,
    What i need to know is, is there a way of getting text from a java application/Window.
    I have search on google for references and have been unsuccessful.
    Thanks in advance
    Chris
  2. Replies
    1
    Views
    680

    AddressOf Button

    Hi Guys,
    I have made a class which creates a button depending on what data i send to the sub.
    When i send the information, eg: Name, Text, etc, I give it a string which i want to be the addressOf...
  3. Replies
    3
    Views
    1,110

    Re: Entering information into iexplore.exe

    Hi thanks for the reply, unfortunately, the URL i wanted to input to was more secure. On the positive side i have found a method to input to it and it works great, if anyone would like to know how to...
  4. Thread: Exact Time

    by Chrispy360
    Replies
    5
    Views
    1,376

    Exact Time

    Hi Guys/Ladies,
    Is there anyway to get the exact time. I know 'Now' Commands get the system time but the system time is not exact to real time, is there way of returning a value from a webpage, even...
  5. Replies
    3
    Views
    1,110

    Entering information into iexplore.exe

    How can i enter information directly into a textbox of a website for example, if i shell iexplore.exe and load www.google.co.uk and then want to type a search via the program.
    Thanks in advance...
  6. Replies
    1
    Views
    725

    Inputting to another form

    Is there a easy way to input a string or integer into another exe's textbox for example, if i wanted to write into the textbox on the windows calculator '3'. Can someone please give an example code...
  7. Replies
    6
    Views
    2,384

    Re: Getting Keypress on timer

    For which program would you like the code??
  8. Replies
    6
    Views
    2,384

    Re: Getting Keypress on timer

    Yes and there are ways but i like to try and make programs myself which can do random things just for good practice. for example i did a silly program which turned pictures into text, there was no...
  9. Replies
    6
    Views
    2,384

    Re: Getting Keypress on timer

    Yes, basically i have made this program ages ago which simply allows me to look at a drop down list and select a program i want to open. Unfortunately constant changing of programs means its quicker...
  10. Replies
    6
    Views
    2,384

    Getting Keypress on timer

    Hiya,
    Just wondered, does anyone know how to get the ascii of a key press on a timer.
    thanks in advance
  11. Replies
    6
    Views
    1,154

    Re: Resetting to beginning of file

    OK , not too brilliant with VB , but here's the code i've used...



    -------------------------------------------------------------------------------------------------------------------------

    ...
  12. Replies
    6
    Views
    1,154

    Resetting to beginning of file

    Done plenty of reading this evening but still not sure how to do this.

    I have an

    open "xxxxxxxxxxxxxxxxxxxxxxxxx" for input as #1

    command.

    I am then searching the file for certain...
  13. Replies
    15
    Views
    2,650

    Re: Reading one exe from another

    hi, again,
    the box i want to read is a label, is there a way of reading it as the spy++ only detects its frame

    Thanks Chris
  14. Replies
    15
    Views
    2,650

    Re: Reading one exe from another

    Hi, thanks for the help, just one more question (I hope), i have several text boxes on the other EXE and they all come up with the same class name, how do i choose the one i want.
  15. Replies
    4
    Views
    1,119

    Searching List1

    Hi again,
    I have a list box which display the following:

    0001 - First Game
    0002 - Second Game
    0004 - Thrid Game 'Sometimes theres one missing eg 0002 - 0004

    What i am trying to do...
  16. Replies
    15
    Views
    2,650

    Re: Reading one exe from another

    SPY++ ???? How do i get that.
  17. Replies
    15
    Views
    2,650

    Re: Reading one exe from another

    Hi Again,
    I have just tried the above code and it works great, but if the exe was called Game ID and i didn't know what the textbox was called that i wanted to read from, how would i change the...
  18. Replies
    15
    Views
    2,650

    Re: Reading one exe from another

    How would i do that? I'm newbie, sort off.
    Thanks in advance
    Chris
  19. Replies
    15
    Views
    2,650

    Reading one exe from another

    I want to create an exe which will get information from another, baring in mind that the other exe wont be mine, but someone else's, therefore i do not know the names of the text box i want to read....
  20. Replies
    3
    Views
    682

    Searching for speech marks

    I want to make a program which counts the amount of words in a txt file, but skips any words in speech marks, and then displays how many words in a text box. for example if it says :

    Chris said...
  21. Replies
    11
    Views
    16,712

    Re: CreateTextFile Permission Denied??

    Just simply try,

    dim fso as filesystemobject

    private sub load ()

    if fso.fileexist(directoryofchoice) = false then
    open (directoryofchoice)for output as #1
    close #1
    end if
  22. Thread: Counting up

    by Chrispy360
    Replies
    18
    Views
    1,763

    Re: Counting up

    I can understand why you think there is no reason but there is, thanks anyways, if you find a easier way please inform me.
  23. Thread: Counting up

    by Chrispy360
    Replies
    18
    Views
    1,763

    Re: Counting up

    I just wish for it too count to 9999999999999999 as soon as possible, for a program i am designing.
  24. Thread: Counting up

    by Chrispy360
    Replies
    18
    Views
    1,763

    Counting up

    I want a counter to count from 1 to 9999999999999999 within the smallest amount of time possible, my present code is below:



    for i = 1 to 9999999999999999
    text1 = i

    'Put Zero's in front of...
  25. Replies
    3
    Views
    1,030

    Output to .EXE

    Hi, what i wish too do is input text into another .exe textbox but not one that i have created, for example when i press a button on my form, the text1 on my form is inserted into the preloaded...
Results 1 to 25 of 46
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured