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 Chriss Miller 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 ProgrammingB52

  1. ProgrammingB52

    switching from design to Form view details section dissappears

    I figured it out, what happened was there was an incorrect table relationship, when I added the table to the fieldList, the page dissappeared because the relationship was wrong.
  2. ProgrammingB52

    switching from design to Form view details section dissappears

    The underlying record source does not contain any data because it is a blank form and the data entered into my textboxes goes into the database, not the reverse--the records from the database which are currently blank are not to show up on the form. What I am doing is dragging fields from the...
  3. ProgrammingB52

    switching from design to Form view details section dissappears

    Hi I am working in design view, bounding textboxes and then when I switch to form view the whole page in the details pane is gone. Only the header shows,,,,help please....
  4. ProgrammingB52

    How to bind a control to a tables value in designView -#Name?error

    I managed to add an updated fieldlist to the form from the properties window. Then I can drag and drop the properties over. That makes them appear in the record source.
  5. ProgrammingB52

    How to bind a control to a tables value in designView -#Name?error

    Well I got that far but I am setting the control source wrong. I am setting it to =tableName!FieldName That doesn't work.
  6. ProgrammingB52

    How to bind a control to a tables value in designView -#Name?error

    Hi I just started out in design view with a form. I get a #Name? error on my form. What I want to do is have a text box be blank and when someone enters the data into the textbox I want it to be stored in a table. How do I bind the control to a table?
  7. ProgrammingB52

    TSQL

    Thanks so very much, The update table sql worked. I made it more complicated than it really was.
  8. ProgrammingB52

    TSQL

    The output is:Cannot insert the value NULL into column 'stdID', table 'clarkOnline.dbo.Student'; column does not allow nulls. INSERT fails. The statement has been terminated. (9 row(s) affected) ---------------------------------------------------------- When I write this: select...
  9. ProgrammingB52

    TSQL

    I have a table Student with fields stdID,fName,lName,email and username. I have another table studentType with a field degType for degreeType. The username field is blank and I am trying to write in TSQL that the username field be the (degreeType initial + _ + fName + lName). For example for a...
  10. ProgrammingB52

    Where can I find PLSQL samples?

    Does anyone have a link for any PLSQL samples that I can run?
  11. ProgrammingB52

    Can't connect to driver sun.jdbc.odbc.JdbcOdbcDriver

    Got it working. What it was was in the control panel for ODBC datasources the sql server driver had to be set to windows authentication mode.
  12. ProgrammingB52

    Can't connect to driver sun.jdbc.odbc.JdbcOdbcDriver

    Below is my code and I am getting a connection unsuccessful error. I am trying to use a sql server database. I didn't do anything in the control panel odbc datasources. try { String url = "jdbc:odbc:employeeExpense"; Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); dbConn...
  13. ProgrammingB52

    How do I view which databases are available

    Using select username from dba_users I get the error message ' table or view does not exist' Does that mean that there are no databases that I am privelaged to?
  14. ProgrammingB52

    How do I view which databases are available

    In MySQL it is show databases; What is the command to view all of the databases available?
  15. ProgrammingB52

    Stored Procedure to declare variables

    How do I write a stored procedure to declare the following variables @Phone and @CustomerID to equal the Customer's table's fields Customer.phone and Customer.customerID?

Part and Inventory Search

Back
Top