Search:

Type: Posts; User: kazar

Page 1 of 9 1 2 3 4

Search: Search took 0.14 seconds.

  1. Replies
    4
    Views
    826

    Re: Mail from VB6 without MAPI

    I'm afraid that no, that service is no longer available, and I no longer own the domain on which the service resided. The thread is 5 years old after all!!
  2. Thread: Java Graphs

    by kazar
    Replies
    2
    Views
    573

    Re: Java Graphs

    Thanks, but i've now decided to use JGraph, the external library
  3. Thread: Java Graphs

    by kazar
    Replies
    2
    Views
    573

    Java Graphs

    Hey,

    can anyone point in the right direction to go to create a graph from a set of data in java, and then save the graph as an image. I know it probably involves swing or awt, any ideas how to use...
  4. Replies
    12
    Views
    1,419

    Re: Get/Set Value of Textbox

    yeah, exactly
  5. Replies
    12
    Views
    1,419

    Re: Get/Set Value of Textbox

    this seems only to get the caption of the window containing the textbox
  6. Replies
    12
    Views
    1,419

    Re: Get/Set Value of Textbox

    sorry, what does the send message call look like in this instance?
  7. Replies
    12
    Views
    1,419

    Re: Get/Set Value of Textbox

    oh okay, thanks
  8. Replies
    12
    Views
    1,419

    Re: Get/Set Value of Textbox

    Thanks, how would i get the right textbox from where the mouse is pointing
  9. Replies
    12
    Views
    1,419

    Get/Set Value of Textbox

    Hi,

    I need to get and set the content of a textbox in any window in any form currently visible. I'm not sure how to get the handle to the textbox rather than the window.

    Thanks

    kazar
  10. Replies
    14
    Views
    1,290

    Re: Directory Selection Control?

    Have a look at http://vbnet.mvps.org/code/callback/browsecallback.htm, that should help. I haven't had a chance to test it yet.
  11. Replies
    14
    Views
    1,290

    Re: Directory Selection Control?

    AL42 is right about the single select, and there are api's for moving windows, tho i can't think of them right now.
  12. Replies
    13
    Views
    13,252

    Re: EXE Writer - Make Custom EXEs

    The way i would do it, since strings are stored as strings in vb exes, is open the exe, and edit a particular string.
  13. Replies
    5
    Views
    640

    Re: Implementing PHP?

    yeah i already looked there - it only allows cli, and you can't pass it server variables
  14. Replies
    5
    Views
    640

    Re: Implementing PHP?

    thanks man, that works great. Anyone know how i can pass it get and post variables
  15. Thread: Emailing in VB6

    by kazar
    Replies
    8
    Views
    1,020

    Re: Emailing in VB6

    oh, and not all servers let you add your own objects
  16. Thread: Emailing in VB6

    by kazar
    Replies
    8
    Views
    1,020

    Re: Emailing in VB6

    i'm planning on adding something that lets you use post or querystring, just takes time getting round to it
  17. Replies
    5
    Views
    640

    Re: Implementing PHP?

    hm, okay thanks, i'll try that
  18. Replies
    5
    Views
    640

    Implementing PHP?

    Hey,

    I'm writing a small testing webserver, and while i have the core code written, i want to implement a server-side language, and i suppose php is best since you can freely install it. Does...
  19. Re: Get First Instance of File Name, never mind Extension

    Thanks a tonne jcis, that works great
  20. Thread: Emailing in VB6

    by kazar
    Replies
    8
    Views
    1,020

    Re: Emailing in VB6

    For a while now, i've provided an alternative to MAPI, search for Email under my username, or read the Mail In VB section on this page.
  21. [RESOLVED] Get First Instance of File Name, never mind Extension

    Hey,

    How would i write a function that returns the filename of any file with a set name, e.g. abc, never mind the extension?

    So, if i put in abc, for a given directory, and a file abc.txt...
  22. Replies
    3
    Views
    558

    Re: Picture to String

    hmm, okay - i need to compare the time it takes to send it using GetDIBits, with the time it takes to use the filesystem
  23. Replies
    3
    Views
    558

    Picture to String

    Hi,

    Does anyone know how to take the picture from a picturebox, turn it into a string, and then turn it back into an image, without using the filesystem.

    This is for sending images over a...
  24. Thread: Webcam

    by kazar
    Replies
    4
    Views
    688

    Re: Webcam

    thanks a tonne
  25. Thread: Winsock Help

    by kazar
    Replies
    3
    Views
    790

    Re: Winsock Help

    My God, how old is this post man, considering that i write web services, and network programs now, look at the date!!
  26. Thread: Webcam

    by kazar
    Replies
    4
    Views
    688

    Re: Webcam

    i tried that but it just didn't process fast enough, so i couldn't do a live feed - anyone know how msn does theirs?
  27. Thread: Webcam

    by kazar
    Replies
    4
    Views
    688

    Webcam

    Hey,

    I have some code for getting a webcam feed, does anyone know of a good way to send this over a network?

    Thanks
  28. Replies
    3
    Views
    472

    Re: ASP Text File Problem

    Thanks kayos - my stupidity, i should have remembered that
  29. Replies
    3
    Views
    472

    ASP Text File Problem

    Hey
    when i use the below code, the text file gets created, but nothing gets written, and i know that there is something in request.form("firstname").

    dim fsuser, f2
    set fsuser =...
  30. Re: Where can I find Windows folder names for different languages?

    What i would do is use an online translator, like so:

    1) Create an webbrowser object, and reference the html object library

    2) Navigate the Browser to "http://babelfish.altavista.com/tr"

    3)...
  31. Replies
    1
    Views
    502

    Webbrowser Problem

    Hey,

    I hvae a webbrowser control that navigates to a page, fills out a form, and submits a form. When the form is submitted a pop-up window appears, that needs to be opened for it to work. The...
  32. Replies
    1
    Views
    384

    Re: Replace first and last character in astring

    sbuffer = "/John/Smith/"

    sbuffer = replace(sbuffer, "/", " ", 1, 1)

    sbuffer = replace(sbuffer, "/", " ", len(sbuffer), 1)

    there you go :P
  33. Thread: Image Load

    by kazar
    Replies
    1
    Views
    462

    Image Load

    Hey,

    I am doing a file upload, and i want to show a gif that tells the user that the file is uploading (not a progress bar or anything fancy, just a rotating circle or something), while the file...
  34. Replies
    4
    Views
    500

    Re: Problem with File Upload (ASP)

    i get it in binary using Request.ReadBinary
  35. Replies
    4
    Views
    500

    Re: Problem with File Upload (ASP)

    i can use adodb.stream to get and interact with binary. I want to get the data which has a scrambled look, between the first three lines, and the rest of it. Look up adodb.stream or more info.
  36. Replies
    4
    Views
    500

    Problem with File Upload (ASP)

    Hey,

    I can retreive the contents of a form containing a file field using Request.BinaryRead, but i want to know if anyone knows of a function that will let me extract just the binary content of a...
  37. Replies
    3
    Views
    677

    Re: open selected files with context menu

    look at using the GetSystemMenu, and ModifyMenu apis
  38. Thread: Process Question

    by kazar
    Replies
    1
    Views
    433

    Process Question

    Hey,

    Can i get the path of a running process from it's id/process info?

    Thanks
  39. Replies
    35
    Views
    2,015

    Re: Exe Identity

    ok, thats great
  40. Replies
    35
    Views
    2,015

    Re: Exe Identity

    hmm, fair point, so you're saying if any two of those twenty match up, then it's the same one.
Results 1 to 40 of 329
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width