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 strongm 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: 3587
  • Order by date
  1. 3587

    Populating and choosing default in a DropDown

    Can you translate that into VB.NET? Thanks,
  2. 3587

    Populating and choosing default in a DropDown

    LenardD, What if I just want a default for a bound dropdownlist? Or maybe a default of no entry? Thank you,
  3. 3587

    Clear Web Form after its been processed

    I'm very new to this but I think it has to do with the View State of the page.
  4. 3587

    What is better? Faster?

    Bigfoot, may i ask you two questions? Do you have your fields in your database set to allow zero length strings? Thank you,
  5. 3587

    Display 0 as "No" and 1 as "Yes" in datagrid

    What they always tell me is to format it in the query prior to binding your grid. Maybe use the IIF(). Good Luck,
  6. 3587

    Anyone done major editing with a Data Grid

    I would like to see the gridcode. Thanks.
  7. 3587

    Displaying Social Sec # with - in between

    Sorry Paul, change the # to 0 (zeros)
  8. 3587

    Displaying Social Sec # with - in between

    Try using the Format function on your record source. For example; =Format([SSN],"###-##-####")
  9. 3587

    Crosstab Query doesn't accept parameters?

    Open your query in design view, select Query | Parameters and enter your parameters again in the Query Parameter dialog. Good Luck,
  10. 3587

    Compatibility - Running same program on Different OS

    We create Access 2000 applications that run fine on Win 98se, ME (Yuk), 2000, and XP without any problems. Test and see.
  11. 3587

    Carring dates in Access form

    What version of Access are you using? Are To_DocuTech and To_DTP the names of controls on a form, a variable, or what? Try this, To_DocuTech must be the name of the control on your form that has the date to be increased by one day. If Isnull(Me.[To_DocuTech]) Then 'DO NOTHING HERE. Else...
  12. 3587

    Carring dates in Access form

    Try this, If Isnull(Me.[To_DocuTech]) Then 'DO NOTHING HERE. Else Me.[To_DocuTech] = Me.[To_DTP] + 1 End If
  13. 3587

    filtering

    What are you going to do with the information you receive? This can make a difference on how you capture the events. There is no command to know when a filter is applied. You will need to include a boolean variable in your procedure to know if the filter was applied. Something like, Dim...
  14. 3587

    Unable to Create MDE database

    No one asked what version of Access is being used to create the MDE. You can only create an MDE in the save version format as the mdb file. Access 97 to 97 Access 2000 to 2000 Access 2002 to 2002 Good Luck!
  15. 3587

    No Data for SubReport

    It might be easier to use the HasDate property for a subreport and then use an IIF statement to show on the main report when it opens that there is no data to show. For Example; in a text box on your main report add something like this. You will need to replace my entries with your own...
  16. 3587

    link with an oracle database

    Yes you can link to the Oracle database tables using ODBC and a DSN connection. Open your Access database then go to File | Get External Data | Link Tables. Make sure to select ODBC as your File of Type. Good Luck,
  17. 3587

    Access Work Days + Holidays Code Help!!!

    You can use this code. You will need to create a table to hold the holidays(HoliName) you want to include and the date(HoliDate) they fall on. Public Function DeltaDays(StartDate As Date, EndDate As Date) As Integer 'Get the number of workdays between the given dates Dim dbs As...
  18. 3587

    Specification Name - How Do I Enter It?

    Import your text file and click the Advanced button in the lower left of the Import Text Wizard screen. Setup your specs and click the Save As button. Then you can use that specification in your TransferText Code. For Example: DoCmd.TransferText acImportDelim, "Stats3test Import...
  19. 3587

    Mailmerge date persists in showing the time.

    If votgop's idea does not work try using Format([Date],"mm/dd/yyyy") or FormatDateTime(Date,2)
  20. 3587

    Set Query Criteria using a Form

    Try rebuilding your query, using your form and field names. Put this in the criteria row for each of the field columns the user can search on from your form. [Forms]![frmYourForm]![YourControlName] or [Forms]![frmYourForm]![YourControlName] Is Null Good Luck!

Part and Inventory Search

Back
Top