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. dedo8816

    Filter from Text Box

    Hi folks, How can I change this code to work with partial search criteria? This basically looks through the lines in a dataview and goes to the matching line from the search in txtfind.txt. What I would like to be able to do here is to change the below to work as a filter instead with either...
  2. dedo8816

    Compare and Delete Excel

    Hi, Need some help, I am trying to compare two lists on two different sheets in excel. The two lists are almost identical, 2000 lines long each +/-. Im looking for differences and am not bothered about lines that are the same. Is there a way I can get excel to compare the two lists completely...
  3. dedo8816

    Compare Datasets and delete

    Yes but im hoping to build an app using VB.Net to do the job..
  4. dedo8816

    Compare Datasets and delete

    Hi, not sure this question has been asked before but here goes Every week I have to compare to lists of data in Excel, the data can be anywhere from 2000 lines to 5000 lines, it becomes tedious! I had an idea for an app where I would have 2 datasets filled from a database where id have...
  5. dedo8816

    Printer defaulting problem

    Hi all, im having difficulty with my programs printing. Basically the program prints a small label from information the user puts into text boxes. Ive been using this now for 5 years and have fiddled with it and asked questions before with no answers to my problem, so hopefully this time will be...
  6. dedo8816

    Executing a shell command with a twist

    Hi, Im trying to make a shell command open the internet explorer (no problem), i want it to go to fedex's website (again no problem) Shell "C:\Program Files\Internet Explorer\iexplore.exe" &...
  7. dedo8816

    One printer is always default even when its not??

    Private Sub cmdprint_Click() CommonDialog1.DialogTitle = "Label Printer" CommonDialog1.CancelError = True CommonDialog1.PrinterDefault = False On Error Resume Next CommonDialog1.ShowPrinter If Err Then MsgBox "Print Cancelled" Exit Sub End If Printer.ScaleMode = 6 Printer.FontSize =...
  8. dedo8816

    One printer is always default even when its not??

    Hi, my program is written in VB6, it pulls information onto a form for the use to read and print a label from, the label is basically another form with the information displayed in a printer friendly way onto a little 4" x 4" label. Ive set the printer.default = False, ive set it as = True...
  9. dedo8816

    Finding and displaying images on a form, image not found problem

    Ah, i tried that earlier but put it after the load picture line, stupid mistake, thank you!! Works great now Cheers D
  10. dedo8816

    Finding and displaying images on a form, image not found problem

    Hi, i have a program that a user enters a serial number to search, the program then displays all the information about that item. Yesterday i added a function that the program now shows a picture of the item being searched, problem is, if the serial number is not on the system and the picture...
  11. dedo8816

    Can VB read code from a notepad file?

    its a simple program that searchs serial numbers in a database and displays the information for users in a warehouse to find product without having to use a stupid cheap system the company wont improve that ofter crashes. The information can then be used to print 4" x 4" labels without ever...
  12. dedo8816

    Can VB read code from a notepad file?

    Probably a stupid question, but can i create a form and put the program code into a notepad file and have VB use the code in the file to run the program? Just asking as sometimes it would be much easier than reprogramming and recompiling. Would be good to know D
  13. dedo8816

    Auto Resizing an image in a picture box

    Never mind, for all those looking at this with the same question, i just used an image control instead of picture. In the properties there is a setting called stretch (true/false) No resizing code needed, just select true and what ever size the image control is set to the image will resize and...
  14. dedo8816

    Auto Resizing an image in a picture box

    Hi, How would i go about automatically resizing an image in a picture box on a form. My program is a search and display type program, someone enters a serial number, presses enter, all the details populate the fields linked to a database. Earlier today i asked the question how to populate a...
  15. dedo8816

    Assigning a JPG to Picture Control using Search Text Box as file name

    Hi, thanks for your reply, i actually realised this earlier before i left work, silly mistake... Thanks though, hope this helps someone else. D
  16. dedo8816

    Assigning a JPG to Picture Control using Search Text Box as file name

    I have a program that you enter a part number/serial number into the search text box, press enter and the program displays everything about the part. Now i'd like to add a picture of the part. I had started by using a Picture box on the form and entering the following into my search code...
  17. dedo8816

    IF STATEMENT DEPENDING ON FILE EXTENTION?

    Hi guys, thanks for your advise. Kliot's answer was great, worked a charm, Dave i like your advise on the case. Is there anyway to expand the above code for my explorer to know what it can and cant handle by itself?, see below for a description of the programs function... The program im...
  18. dedo8816

    IF STATEMENT DEPENDING ON FILE EXTENTION?

    Hi, I've created a browser for both internet and internal files on my intranet. Basically i've included an "Open" button the explorer. When a user click open, an Open Dialog shows on screen. The user then selects a file to open, if its a file that the browser can handle it appears in the...
  19. dedo8816

    RDP using vb.net

    Hi, hope im not being rude or giving the impression im looking for an easy answer but can anyone post me some links to good websites with info on RDP/RDC. Im building a web browser that i would like to use to connect to RDP. Im also interested in finding out how to using the browser to allow...
  20. dedo8816

    Print Document from Form details

    Hi, Im still very much a Novice at VB.net and wasn't much better at vb6 either but i found it easier to use... Anyway, this isn't a problem but i feel it would work much nicer than printing a form. I have a form, within this form are about 10 text boxes for various pc's of information. When a...

Part and Inventory Search

Back
Top