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 dencom 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: dedo8816
  • Content: Threads
  • Order by date
  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

    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...
  4. 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...
  5. 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" &...
  6. 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...
  7. 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...
  8. 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
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. dedo8816

    Searching Rows

    I've searched for the answer for this question on google, searched multiple forums and still no answers and im starting to think maybe im either asking the wrong question or going about it all wrong. Heres my problem, i have a form, inside the form are text boxes, a navigation bar, a datagrid...
  15. dedo8816

    Find Method

    Hi again, Im using the below code to run a search in a form against an Access Database. The string to find comes from a textbox called TxSearch Private Sub CmdSearch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmdSearch.Click Dim dr As DataRow...
  16. dedo8816

    Print Form Problem

    Hi, Im using Visual Basic 2008 .net On one particular form within my program i have 2 text boxes, when a user enters text into them and clicks print, the text entered is copied onto 2 labels in a seperate form. The seperate form has been set up to represent a paper label 4" x 4" (actual paper...
  17. dedo8816

    Save Changes to DataSet

    Hi, I have a table that contains Data in an MS Access DB. Im trying to set my program to delete all data in a single table using the below code: Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim Rows As DataRow For Each Rows In...
  18. dedo8816

    Visual Basic to VB.Net 2008, search text box

    Hi, I've build a label program in Visual Basic 6 about 2 years ago, everything works perfect with it but i lost my original VB files for editing the program and have decided to rebuild using VB.Net (MS VB Express 2008 Free). The problems im having relate to a search box i had in one of my...
  19. dedo8816

    Printer setting to max copies

    Hi, I have a label printing program which as a novice has taken me a while to build but works like a dream at the moment. I often however find that when someone wants to print say 4 labels, they click into the commondialog copies and change the 1 to 4 (all is good), but a lot of times they dont...
  20. dedo8816

    How to i use shell with a file address in a text box

    I have a form called FrmDB, i have 1 text box which pulls an address from commondialog.showopen. Basically the user specifies the file address where the rest of the application is to pull its data from. The whole program is now running like a dream. In one form called frmtrans i would like to...

Part and Inventory Search

Back
Top