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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by johnsun1976

  1. johnsun1976

    reading an Excel sheet for input

    Whoops.. I must have cut that out.. LotNumber is a string.. I declared it "Dim LotNumber as String" Thanks John
  2. johnsun1976

    reading an Excel sheet for input

    Hi. I have this code to open an Excel worksheet and read it in.. When I try to read in the first column, which is a list of numbers with may have a letter (ie. 4, 4a, 4b, 5,..), the letters are stripped (ie. 4a comes in a 4). Does anyone know what I'm doing wrong? Thanks John Dim cnXL As...
  3. johnsun1976

    [Q] Word wrapping with text boxes

    Hi.. I was wondering how I can get word wrapping to work on several text boxes, so that when it gets to the end of the current text box, it'll jump to the next text box. Also, I would like it to wrap when typing in the middle it will wrap the words at the end of the current text box to the...
  4. johnsun1976

    Track when an Email is read/opened

    Hi. I was doing some research programs that does link tracking and mail tracking. I seemed to have figured out how links in an email are tracked. They first send information to a server to record and then redirected to the actual site, but I was wondering how these program knows that the email...
  5. johnsun1976

    [Q] Capture 'Enter' keys, send 'Tab'

    Hi. I'm wondering how I can capture the Enter key and send a tab to go to the next control? Thanks John
  6. johnsun1976

    Help with printing to receipt printer

    Hi.. I'm using a Star SP200 receipt printer and trying to format text on it.. I found this example on the printer's homepage in VB: PRINT #1, CHR$(27); CHR$(112); PRINT #1, "14-dot pitch font" What I'm trying to do is this: byte []ba = new byte[32]; h =...
  7. johnsun1976

    Help with Passing Parameters to Crystal Reports

    Hi.. I'm having problems passing a parameter into a report so it can display the correct information.. I set a Parameter Field to the field I want to set a value to, but the report seems to always return everything.. Does anyone have any good reference on how to set up a report? I'm probably...
  8. johnsun1976

    Help with Searching Though a Listview

    Hi.. I need to locate a cell in a column of a listview and if it is found, set the current row to it. Right now, I'm looping from the first item to the last and checking if it matches the string, but there might be several thousand entries it might have to look through. Does the listview have...
  9. johnsun1976

    [Q] Installing SQL Server Database on another Machine

    Hi.. I was wondering how I could install a database with it's table and users on another machine that have MSDE or SQL Server installed? Is there a way to put this into some kind of installation package? Thanks John
  10. johnsun1976

    [Q] DBReader - Finding abosolute position

    Hi.. I have a table that is displayed in a datagrid control.. A user can type in a search criteria and the cursor will be positioned at the nearest match.. I can set the cursor to the row if I know which row the closer match is, but I'm not sure how to find the absolute position of the...
  11. johnsun1976

    [Q] Help with C# passing SQL Command to Crystal Reports

    Hi.. I hope I'm asking this question in the correct forum.. Please advise me if this is not in the proper forum.. I'm using C# and the Crystal Reports that came with VS.NET (Crystal Reports .NET?). I'm able to set a command and output it a report, but I'm not sure how to set the command at run...
  12. johnsun1976

    Help with Crystal Reports - setting SQL statement at runtime

    Hi.. I'm playing around with Crystal Reports and I'm able to set my SQL command when I'm adding the database on the Crystal Report form, but I'm not sure how to set it in code.. Can someone give me some insight into it? Thanks John
  13. johnsun1976

    [Q] Data Grids

    Hi.. I need a grid control that a user can type an item number in the first column and information is filled in the row.. I used a listview control, but I can't seem to add new rows.. The data grid seems to work when I sent everything except the first column to readonly, but I cannot stop the...
  14. johnsun1976

    [Q] Coverting text into uppercase while typing

    Hi.. Just trying to get use to doing stuff in C# after coming off VB.. How do you convert letters in a text box into uppercase while the user is typing.. BTW: does anyone have any good link to pages about getting started with C#? Thanks John
  15. johnsun1976

    Help with Concatenating fields

    Thanks.. That worked.. John

Part and Inventory Search

Back
Top