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

    Accidently deleted a table

    I accidently deleted the contents of a linked table. After discovery, I then copied the table contents from a backed up table to the corrupted target table. Now all of my forms that use fields from the affected table are initially blank. Users are able to click the dropdown and select data...
  2. nastar1

    Avoiding duplicate 'numbers'

    Users are reporting cases where two identical 'SEQ' numbers are being assigned to different records. This occurs when more than one user has the form open to create a new record. My Form_afterupdate code is below: If Me.NewRecord Then Me.FY.Value = CLng([FY]) Me.Seq = Nz(DMax("Seq"...
  3. nastar1

    Combo Box dependent upon another Combo Box entry

    I'm having problems getting the correct configuration for this to work. I have a form with a combobox called OrgID and another called OffSymID. At present the rowsource for the OffSymID is a fieldname of the same name from a Table called OffSym with criteria as OffSym.* and OffSym in...
  4. nastar1

    Same basic query used with different parameters

    Is there a technique to using the same basic query only changing a parameter each time you run it? Say for instance I am using a query that captures all records from a table with fields: Name Position OfficeSymbol I then want to be able to run the query to select based upon a parameter with...
  5. nastar1

    Not in List broken after Office 2007 upgrade

    The NotinList below worked fine under Access 2003, but 2007 now displays a dialog box "Do you want to save changes to the design of the form "frmAddDelTics" and then the form "frmAddDelCust" opens. I can't see anything to correct and I dont understand what is causing the dialog box to ask if...
  6. nastar1

    acSaveRecord prior to OpenReport

    WHen I click the cmdButton with the code below the first time on a new record, the save processes, but the OpenReport does not. If the user clicks the cmdButton a 2nd time, the OpenReport works. Any tips on what I've done wrong in my code so that the save goes and then the OpenReport follows...
  7. nastar1

    OpenForm with where select based on users prompted input

    I have a main switchboard menu choice that would run the following: DoCmd.OpenForm "frmQuickView", acFormDS, "qryWAbyPoc", , acFormReadOnly, acWindowNormal However, the user gets prompted twice for the POC LastName and ultimately no records returned by frmQuickView. qryWAbyPOC includes most...
  8. nastar1

    String manipulation

    My code below had been working but something I must have changed has rendered the code below invalid. I now get the msgbox error "file not found" which comes from error trap code I've included. I may not have this code setup correctly. My textbox TaskDescrip is populated from another command...
  9. nastar1

    Edit Hyperlink browse to C drive

    I'm using the Edit Hyperlink on a form and one user is getting an odd display of ..\..\..\filename.ext when selecting any file from the C: drive. Rather than the full path. Any other selection of a file from a server, etc. returns the full path and filename. This is the only machine that...
  10. nastar1

    Calendar control after update focus

    I'm finding that after a user clicks a date in the Calendar Control 11.0, the focus goes to the first tabbed field on the form rather than the next tabbed control in order. I'm pretty convinced it is one of the glitches with the calendar control, but wonder if there is any way to brute force...
  11. nastar1

    Limit items in combobox based on Table/Query Yes/No

    I have a Customer table that includes a Yes/No field that when checked identifies a customer who is no longer active. On my form I have a combobox bound to a query of the Customer table. I want to limit the names in the combobox to only those customers who are still active. However, I've...
  12. nastar1

    Apply hyperlink to text programmatically

    I've used the Hyperlinkpart method to remove the '#' signs so I could perform some string manipulation. After the string manipulation I've copied the text string back to a text box with hyperlink properties set. However, when the user clicks the hyperlink nothing happens. I suspect it is...
  13. nastar1

    String parse

    I have captured the filename from a hyperlink textbox that has a full c: drive path and filename, into another textbox. This has resulted in a trailing "#" and I'd like to remove it before applying the FileCopy function to it. I think I know how to capture a string extract using the Right...
  14. nastar1

    Save Word document from C: drive to server drive

    Users would like me to add a button to a form that would allow them to browse a word doc or other file on thier C: drive and then save it to a network server folder. I presently have a button with a Click event with the following: Me.TaskDescrip.SetFocus RunCommand acCmdInsertHyperlink So I...
  15. nastar1

    Display one form record using query with contanenated prompt

    I'm trying to open a form to a specific record using an underlying query that prompts the user to input the record of choice. The prompt relies on a contanenated series of text fields. What I am running into is that the user is prompted first for what appears to be the first two...
  16. nastar1

    Textbox lookup pricing from table/query not in Form Source

    Is it possible to program the Control Source of a form textbox to display a corresponding value from a table or query that is not included in the Form's recordsource and is dependant upon values in a couple of the form's other controls? My current form is based upon a query of two tables to...
  17. nastar1

    Table with multiple fields using same lookup table

    tblWA includes many fields including the following: Originator POC Manager each of those fields were setup using a combobox lookup to tblNames to display the person's name. tblNames includes the firstname, lastname, office and phone. When I create the relationships between tblWA and those 3...
  18. nastar1

    INNER JOIN syntax problem

    The following SQL query is returning a reject for syntax errror in JOIN. Using the MS example, is not helping me understand if my use of parens are the reason or if I'm using the wrong FROM syntax. Any ideas why this is not processing? SELECT tblWA.*, tblCLINRATE.Rate, tblNAMES.LastName...
  19. nastar1

    Generate Report from Form

    I'd like to have a command button on a Form that would generate a Report of only the data for the current record displayed on the form. Could use a kick start in how I should get started. I've built a parameter query that prompts for the Primary Key of a record and am building a report from...
  20. nastar1

    Table design for applying Yearly Pricing static

    I have a table called tblCLIN with CLINID autonumber as my Primary Key Number text FY05 number (is a dollar amount) FY06 number " FY07 number " FY08 number " Sample table result: Number FY05 FY06 FY07 FY08 1011 $4.01 $4.33 $4.39 $4.46 1012 $1.09 $1.19...

Part and Inventory Search

Back
Top