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 TouchToneTommy 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: tsunami100
  • Content: Threads
  • Order by date
  1. tsunami100

    New project

    Hi, I have to build a new project. It has to be a program to use on a weighing bridge for trucks. I know what kind a tables for the data i need but i don't know how to start building the project. I think i can do it but i'm always so confused if i'm doing it the right way. My mainproblem is...
  2. tsunami100

    Simple ?

    Hi, I have two tables related. (customers and orders) When i trie to input an order i want to see the customerdetails on that form. I have been playing around with the bindingsource but it don't know how ti figure it out. Any ideas please ? I choose my username Tsunami because i hope it keeps...
  3. tsunami100

    Textbox and Hyperlink

    I have a form with a bindingnavigator (I'm using Visual studio 2005) So when the user clicks on the "Add New" icon he can fill in a hyperlink into a textbox. Later when he navigates through those records the textbox shows the hyperlink but it's not blue, what i mean the hyperlink does not...
  4. tsunami100

    Current control

    This looks very easy but i can't find it !! I want the name of the control on a form that has currently the focus. Thanks I choose my username Tsunami because i hope it keeps everybody remembering this terrible disaster.
  5. tsunami100

    Formula-problem

    Hi, Everytime the user presses a button on a worksheet the code behind that button will add a new worksheet by number. Private Sub cmbNewWeek_Click() NumberOfSheets = Worksheets.Count Sheets(1).Copy Before:=Sheets(NumberOfSheets) Sheets(NumberOfSheets).Name = Str(NumberOfSheets)...
  6. tsunami100

    Select same cell on different sheets

    Hi, I want to make a chart that always refers to the same cell on different worksheets. I tried it already but it doesn't seem to work Thanks I choose my username Tsunami because i hope it keeps everybody remembering this terrible disaster.
  7. tsunami100

    MAJOR PROBLEM

    Hi, I don't think i'm the first who's asking this but this issue drives me crazy. I have to access a cobol-datafile using ACUodbc. I've linked the files to an Access-database The point is that it's very very slow. I've read a lot about this issue but it seems there's no solution for it. Does...
  8. tsunami100

    MAJOR PROBLEM

    Hi, I have a table that is linked to a cobol-table. There's something i really don't understand. Each record has a invoicenr, customername, IDnr, deliveryplace, and articlenr. BUT these fields are not stored in one record !!! The invoicenr, ID customernr and deliveryplace are stored in one...
  9. tsunami100

    Cobol and Access-database

    Hi, Is there anybody who knows how i can make a link or connection between an access-database and a cobol-datafile ? Thanks. I choose my username Tsunami so that everytime somebody see this, he or she will remember this disaster where i lost a good friend.
  10. tsunami100

    Parameters

    Hi, Does anybody know how i can use a fieldnaam in an sql-statement as a parameter. Select Field1 ,Field2 From Database where param1 = param2 IMPORTANT is that i'm trying to do this in the querybuilder from VB.Net so i can not use any strings The user can choose Field1 or Field2 as param1...
  11. tsunami100

    Parameters in SQL-statement

    Hi, Does anybody know how i can use a fieldnaam in an sql-statement as a parameter. Ex. select Field1 ,Field2 From Database where param1 = param2 The user can choose Field1 or Field2 as param1 Is this possible ? The statement above doens't work but gives you an idea what i mean. Thanks !!
  12. tsunami100

    TableAdapter Parameters

    Hi, I have a TableAdapter i'm trying to fill but it has some parameters. SELECT CustomerID, CompanyName, Address, City, PostalCode, Phone FROM Customers where @param1 LIKE @param2 The user can choose in a combobox (@param1) on wich field he can filter the records, the above code doens't seem...

Part and Inventory Search

Back
Top