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 wOOdy-Soft 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: *

  • Users: sborny
  • Content: Threads
  • Order by date
  1. sborny

    Minize form from image

    Hi, I am creating an app that has the borderstyle set to none on the main form as I do not wish to use the standard minimize/maximize buttons. I am trying to find out how to minimize the form to the start bar when I click on an imge on the form. I have tried: me.windowstate = 1 and this...
  2. sborny

    Find & Rename

    Hi all, I need to very quickly put together an app that will search all directories and subdirectories on a drive and look for files call folder.jpg. When it finds one i need it to change the name to AlbumArt.jpg without any user intervention and then move onto the next one automatically...
  3. sborny

    Data control

    Hi, I have a datacrontrol called data1 and a textbox that is bound to the control. The control loads an access db and displays email addresses in the text box. I am trying to find out how to delete the currently selected email address and to then refresh the data control. Can anyone help...
  4. sborny

    Changing which printer to print to ?

    Hi all, I have searched and found lots of articles about changing the default printer and they all seem to be based on using the printers name. I am writing an app that has no GUI and runs over night that pulls records from a database and based on the criteria in a particular field prints to...
  5. sborny

    check boxes.

    Hi All, I have 2 check boxes on a form and I need it so that only one can be checked at any one time. Ie if you click check2 and check1 is already ticked then check1 should untick and check2 should tick and visa versa. I also need this to happen when you click on the labels nect to the check...
  6. sborny

    Another string queston

    Hi all, I need to check a string to see if it starts with a number ie: a house number like 62 George Close. If it does iwant to extract that number into a seperate string and if not I need to do something else. I know what i need to do if the string does not contain a number but I canot work...
  7. sborny

    String question.

    Hi All, I know this is a silly question but I need to find out how to take the contents of a string, check for anything starting from the left until I find a space and then take what has been found and create a new string. Hope that makes sense. Cheers S. Everything has an answer, it's just...
  8. sborny

    Update an array

    Hi, I have an app that downloads a CSV file from the net and loads the record data into an array. There is a form that then displys the data and allows the user to go back & forth between records. When a command button is pressed the form is set to display the first record and then updates a...
  9. sborny

    Inet time out issue

    Hi all, I have written an app that uses ITC to download a file from a website. This works fine on my test machine that has a broadband connection. I have brought the app to my clients who have a standard dial up connection and there is a problem. The app starts to download the file and...
  10. sborny

    onsubmit question

    Hi, I have an HTML form that Javascript buitl in to it. When you press submit you then call the javascript function. ie: onsubmit="VerifyData();" Is it possible to have 2 different javascript functions being called when you submit. Cheers Symon. Everything has an answer, it's just knowing...
  11. sborny

    Major probs uploading file to internet

    Hi all, I have an app that uses the ITC. I can authenticate with the server and download a file with no problems whatsoever. But, When I try to upload an empty file to over write what was just downloaded it will not work. Here is the code for downloading the file Sub fdload()...
  12. sborny

    ITC PUT problems

    Hi, I am using the Internet Transfer Control to download a file from a website. The download works fine but I also need to delete the file on the website and upload a new file. The app seems to get stuck on the delete command. This is the code i am using. Sub fuload() Bimp.Inet2.Protocol...
  13. sborny

    Progress bar and Internet Transfer control

    Hi, I have an app then downloads a file from the internet on a command button click. Is it possible to show a progress bar while the file is being downloaded. Here is the code I am using to download the file. <code> Private Sub Command1_Click() Dim b() As Byte Dim ff As Integer b() =...
  14. sborny

    Internet Transfer Control

    Hi all, I am writing an App that needs to download a file from a website. I am using the Internet Tranfer Control to do this. This is the code i have at the moment: Private Sub Form_Load() With Inet1 .URL = "ftp://80.88.192.200" .UserName = "eu7hnbg554fr" .Password = "db911709sn"...
  15. sborny

    Hidden date field

    Hi, I need to know how to add a hidden field that is todays date to a html form so that when you submit the date field is sent with the rest of it. Thanks Symon Everything has an answer, it's just knowing the right question to ask. !!!!
  16. sborny

    Create a CSV file from form data on web page.

    Hi all, I am trying to find out if it is possible to use javascript to take the data entered on a web form and create a csv file from it, that is saved to the server hosting the site. I have very limited javascript knowledge so any help will be very much appreciated. Thanks in advance. Symon...
  17. sborny

    Newbie Help with mail form.

    Hi all, I don't know a thing about PHP so i don't know if the following is even possiblle.. I have a form on a web page and I need to be able to create a CSV file from the data in the form and then e-mail that CSV file to a designated address. As I said I know nothing about PHP so any help...
  18. sborny

    Would like some clarification please

    Hi, I would like to check something please. If I have 7 machines all with xp pro on, one is being used as a file server only. Thsi will be set up as a workgroup. The other six machines will only need to acces the file server and not each other . Do i still need all the usernames and...
  19. sborny

    Setting permissions

    Hi, I have win XP pro on 2 machines that have unique names and are in the same workgroup. When I goto share a folder it only gives me the option to share it and allow users to access it. I do not have the options for setting permissions. Any ideas why this is. Is there something else I need...
  20. sborny

    Date formatting

    Hi, I have an app that pulls data from a database which I can do no problem. One of the fields contains a date in plain format ie 250772 (25th July 1972) Please note that these are english format for dates. I need my app to pull this data and conver it to the following format. 25-JUL-1972...

Part and Inventory Search

Back
Top