Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. GMcFly

    Overlaying two movies

    Hi all, I have a small digital photo camera which is able to make short quicktime movies. I was wondering if there is some software which makes it possible to overlay 2 movies. For example, I have two movies, filmed at the exact same spot (camera hasn't moved), of two different objects moving...
  2. GMcFly

    Application keeps running in the background

    That also doesn't work. There might be something wrong in my application. I'm uploading and downloading files, but I've done it in such a way that it can only quit when the upload is done. If there is no other way of quiting the application, it is probably my application. Thanks again for your help!
  3. GMcFly

    Application keeps running in the background

    Ok, thanks for you help. But it still doesn't work. Here is the code I have now on the click event of the button: Dim F As Form For Each F In Forms Unload F Next
  4. GMcFly

    Application keeps running in the background

    Hi everybody, I've got a problem. When I quit my application (using a button giving the command "End") all the forms dissapear but when I look in the task manager, the application is still running. Is there another way to stop my application from running. Can I do a "force...
  5. GMcFly

    Background of icons transparent

    I don't think that is it. I put it to "Adjust for best appearance" and it didn't help. Here you can see what my desktop looks like: www.webster.ch/desktop.jpg You can see the gray on the baclground. That's what I want to get rid of. Thanks for you help.
  6. GMcFly

    Background of icons transparent

    Hi everybody, The background color of my desktop is white. If I set a wallpaper, with any kind of image, the backround of the icons (where the letters are for example) is still white. Is it possible to make this transparent?? Thanks
  7. GMcFly

    Word auto-format entire file

    Hi everybody, I've got a problem in Microsoft Word 2002 (Office XP). I'll give you an example. I have a one page document and I want to format the title to set the font size at 16. When I select the title and change the size, it does it for the entire document! When I press "Undo&quot...
  8. GMcFly

    Splitting up a string

    Ok, got it. Thanks a lot!
  9. GMcFly

    Splitting up a string

    Hello everybody. I have a string in the following format: George|McFly|Information|george@mcfly.com| How can I split this up in different 4 different strings? Thanks for your help.
  10. GMcFly

    Reading a text file

    OK, I just found out that there was a comma in my text file. Because of that it thought it was the end of the file.
  11. GMcFly

    Reading a text file

    Hello everybody. My program has to read a text file and display the contents in a listbox. Here is the code I'm using: nFileNum = FreeFile Open "c:\textfile.txt" For Input As nFileNum Do While Not EOF(nFileNum) Line Input #nFileNum, sNextLine...
  12. GMcFly

    Replacing spaces by %20

    Thanks! It works perfectly!
  13. GMcFly

    Replacing spaces by %20

    Hello everybody, I'm currently working on a little program which creates a web page and uploads it. Links to files are generated on this page. The problem is that Netscape doesn't support spaces in file names. For example to make a link to the file "This is a test.xxx" I should write...
  14. GMcFly

    Regional settings for date format

    Stupid me! That easy! Thanks for your help guys!
  15. GMcFly

    Regional settings for date format

    Hello everybody! I made an access database which works very nicely. There is one problem though. When I started running the database on other computers visual basic started reporting errors when I tried to filter a form with criteria the user can enter in the form. I later found out that the...
  16. GMcFly

    Convert a lot of doc file

    Hi everybody, I'm trying to convert 50 word documents into pdf files. How can I do this in one time. I tried the batch processing but I don't really know how to use it. Does anybody have any idea? Can I use the batch processing? If yes how? Thanks for your help.
  17. GMcFly

    Hi everybody! I made a function

    Hi all, Guess what! I found the answer to my question minutes after I posted my message: function lib_survey_combo($name, $style, $table, $id_field, $field){ /*=============================================================================== Function which creates a combo box with values...
  18. GMcFly

    Hi everybody! I made a function

    Hi everybody! I made a function which automatically creates a combo box with values. I am still a beginner so this might not be the best way. The idea is that I only need to define a few variables to make a combo box. An example would be lib_survey_combo("cbo_test&quot...
  19. GMcFly

    Hi all, I have a problem with a

    Ok, thanks. I found a way to do it, thanks for your help!
  20. GMcFly

    Hi all, I have a problem with a

    Hi all, I have a problem with a table. The type for a certain field was autonumber and was incremented by 1 for every new record. Then someone changed this to random. A number is then randomly chosen and put in the field. The data in the autonumber field is changeable. I am trying to get it to...

Part and Inventory Search

Back
Top