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 gkittelson 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: pradh
  • Order by date
  1. pradh

    SELECT query to display active hyperlink

    I querying a union query.... can this be a problem?
  2. pradh

    SELECT query to display active hyperlink

    Thank you PH, The query works fine in Windows XP, but it displays plain text in Windows 2000. I could not figure out a way to use HyperlinkPart method inside a query. Is it something to do with the version of access I am using?
  3. pradh

    SELECT query to display active hyperlink

    Hi, I have a SELECT query to display records matching the specified criteria. The record has a hyperlink field linking it to a pdf file. The problem is, a SELECT query displays the hyperlink as plain text. Is it possible to get an active hyperlink from a query? Any help is appreciated...
  4. pradh

    Can Table name be a Public variable

    Hi, I have a question with regard to using table names as public variable and use it in the code(in the form). I have many tables with different names like JhsTbl,JieTbl... I want to use just one form to edit/add values to the above tables. Is it possible to pass the Table name as a string and...
  5. pradh

    alternatives to having autonumber as Key ID

    Hi All, Is it possible to have a new ID created for each record whenever a form connected to that table is opened? Autonumber option is irreversible, the main reason behind my question Thank you. Pradh
  6. pradh

    One click to create new record in two tables

    I was able to figure it out myself. Using something like this DoCmd.RunSQL "INSERT INTO JIENEW (JIEA) VALUES (11111111)" Me![PartNumber] = DLookup("JIEPartNo", "JIENEW", "[JIEA]= 11111111")
  7. pradh

    One click to create new record in two tables

    Hi, I have one form containing fields from two tables. When I load this form I would like to create new records in Table1 and Table2, and update the key ID(autonumber) of these records to text boxes provided in the form. These ID's will then be stored in the Table 1. Any hint is appreciated...
  8. pradh

    One form - two tables

    Here is the way its arranged I have 2 Tables - "Table1", "Table2" Table1 has fields "Size", "dim" Table2 has same fields "Size" and "dim" but these are default dimension of the product. CustomOrderForm has a combobox "cmbSize" and textBox "dim" On choosing size from combobox, the default...
  9. pradh

    One form - two tables

    HI, I have a form where the controls get populated from two tables, "main-table" (all records)& "dim-table" (default dimensions of a product) based on a combobox selection. Once the form is filled with default values from table 2, the user still can change these values to create a new record in...

Part and Inventory Search

Back
Top