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 Mike Lewis 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: Amadom
  • Order by date
  1. Amadom

    Can I create new reports from groups of a report?

    Exactly, Ido. Any ideas on what the VB Application should be doing?
  2. Amadom

    Can I create new reports from groups of a report?

    How can I use the groups of a report to create new individual reports?
  3. Amadom

    Can't Print to Local Printer (goes to network printer)

    have you tried deleting the lpt1 connection? "net use lpt1 /d" at the dos prompt. then set the local printer as default. try printing again.
  4. Amadom

    Can you Open Microsoft Excel and a spreadsheet file with VB?

    dlingo, you can shell excel in your system. like this tt = Shell("D:\Program Files\Microsoft Office\Office\excel.exe c:\Whatever.xls", vbMaximizedFocus) this will open c:\Whatever.xls as excel is opened you have to put the path of excel.exe as it is in your system. cheers
  5. Amadom

    changine ip address with a batch file?

    Hello Daniel, i realised later that i had to reboot my system for the new address to take effect. this is something i hoped to avoid as i wanted to interface two systems on different networks. currently i run a first program, manually change the address, then run a second program, and manaully...
  6. Amadom

    Increase the number of files in file history (Excel).

    I'd like to see more files in the file list under the file menu. i currently see 4 files.
  7. Amadom

    How do I get VB to ftp a file???

    try this 1. add the Microsoft Internet Transfer Control 6.0 to the project 'Place this code in some command button . . With Inet 'the object added when you add the control in (1.) .URL = "ftp://111.111.111.111/" 'enter your own server addr. .UserName = "UsernameInServer&quot...
  8. Amadom

    How do I make a simple program for customized serial numbers.

    If you just want to see serial numbers well For i = 1 To 15 Print i Next that'd give you 1 to 15. 1 and 15 can be variables visible at the point the code will run for alphabets(upper case)... For i = 65 To 90 Print Chr(i) Next for alphabets(lower case)... For i = 97 To 122 Print Chr(i)...
  9. Amadom

    How do i place a directory's contents in an array?

    I want to get the list of files in a directory into an array
  10. Amadom

    changine ip address with a batch file?

    :-( DanielMc The batch file didn't quite work on my NT40 workstation, any suggestions?

Part and Inventory Search

Back
Top