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 strongm 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: rennis
  • Order by date
  1. rennis

    barcode printing + 2 columns of labels

    Currently working with a datamax printer and Jewelery style labels or barbell shaped labels. Labels are similar to this: http://www.kassoy.com/images/kas/labels/zu102.gif Have used bartender, labelview etc, but none of these programs seem to have a option to preview the two columns..Has anyone...
  2. rennis

    VB^ + MS Word Mail Merge

    Has anyone ever come across the following error when trying to complete a mail merge in ms word, using data from vb6? "String is Longer then 255 characters" It occurs on the .opendatasource line with the Select statement. Select * from table where primary_key in ("& the_primary_key_var &")...
  3. rennis

    Winsock Control: SMTP authentication

    Is it possible to add smtp authenication to a winsock control/winsock.control method, as its required by the mail server Im using? I've tried winsock.connect "user:pass@email.domain.com" but that doesn't work. Anyone have any the suggestions?
  4. rennis

    Control: Expand on click of + sign

    Secondly, is there a way to move a selected item from one tree view, to a second tree view? If the item selected is a child then move the child and add the new category, however, if its a "category" node, move all child items with it to the second treeview
  5. rennis

    Control: Expand on click of + sign

    Is this possible with any other controls?
  6. rennis

    Control: Expand on click of + sign

    In microsoft access, I believe with relationships between tables,there is a "listview" type control that when you click the plus sign it expands the data, and when you click the minus sign it compresses the data. Is this possible with a listview control or another control within vb6 where by i...
  7. rennis

    Php + mysql: 2 database connections open

    Thanks again everyone for your help. Im currently at the point now where i am able to generate the insert statement by using the following: $result = mysql_query ("SELECT * FROM table1", $dbh1); $num=mysql_numrows($result); mysql_close($dbh1); while($row = mysql_fetch_assoc($result)){...
  8. rennis

    Php + mysql: 2 database connections open

    Of course I would need the record number and add one to it, in a for loop to insert all data from the first database into the second
  9. rennis

    Php + mysql: 2 database connections open

    Thanks guys for your help. Its greatly appreciated. sleipnir214 is it possible to do this: $result1 = mysql_query ("Insert into the_table (select * from thetable1,$dbh1)", $dbh2); Basically, this will insert all data from thetable1 table in the first database, into the second database in a...
  10. rennis

    Php + mysql: 2 database connections open

    I currently am able to open one connection to a mysql database. However, I have been unsuccessful in my attempts to get 2 connections open at the same time. Reason for this is that i need to connect to a second database on a second host, select data from a table in database 1 and insert it into...
  11. rennis

    Newbie + Php login: Passing host name

    Ok after more research, I managed to get it to work using the register-globals option and turning it on. Is this not the correct way to do this?
  12. rennis

    Newbie + Php login: Passing host name

    I currently have a login form, and the login form will ask for the host name of the database. I would like to pass this host/server to the connection string and then open the database. the form action is to post another php document and in that php document it loads the information from the...
  13. rennis

    ShellExecute: Executing a batch file and passing parameters + Waiting

    Currently, I am using shellexecute to execute a batch file. The batch file gets passed parameters, and executes mysql.exe, which allows me to execute script files on a database. For example: result = ShellExecute(hwnd, "open", "theBatch.bat", parameter1 & " " & parameter2 & " " & parameter3 &...
  14. rennis

    Check for updates feature: Best way to go about adding

    Thanks for your help bud. And everyone as well. However, i decided to make a .zip file with the other files i needed, download it, extract it, and it does exactly what i needed (as of right now). But again, thanks everyone for your help
  15. rennis

    Check for updates feature: Best way to go about adding

    Thanks guys for your reply. I am at the point now where i can download the file I need. I was just curious if there was a way using the inet control and http to download all files in a specified directory ending with a certain extension. If its not possible, i can just download one file and put...
  16. rennis

    Check for updates feature: Best way to go about adding

    To make things easier, and to include the progress bar I've changed to HTTP instead of FTP. However, now im uncertain if the HTTP will allow me to browse a directory and download all files in that directory? I can download one file itself, but i would like to download all files in a directory...
  17. rennis

    Check for updates feature: Best way to go about adding

    Thanks strongm for your help. Small issue though, I get a type mismatch on the following line: Set ftpFolder = WebBrowser1.Document.Folder Any ideas why?
  18. rennis

    Check for updates feature: Best way to go about adding

    strongm, i am aware that it is with the http protocol, thats why i was curious as to if there was anything similar or anyway to get the size using the ftp protocol or another method of generating the progress bar based on the file download? Thanks for your reply though, greatly appreciated.
  19. rennis

    Check for updates feature: Best way to go about adding

    My apologies it is the control, no protocol i am using. Is there any possible way using inet and ftp to get the size of the file to include for a progress bar? I know how to do this using http and the inet control where it gets the content length, but like the get header method, the content...
  20. rennis

    Check for updates feature: Best way to go about adding

    My apologies. I did read the above post. However, I currently have it coded using the INET protocol with vb6. I maybe mistaken but it doesn't appear that your example is coded using that protocol rennis

Part and Inventory Search

Back
Top