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 SkipVought 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: *

  1. krameje

    Hourglass in VB Script

    I am an Access programmer, and it is extremly easy to enable/disable the hourglass. I use vbScript as an easy way to distribute databases. Is there an easy way to enable/disable the hourglass in vbScript?
  2. krameje

    create folder - HELP!!!!!!!!

    I have used this method: Dim strDestinPath strDestinPath = "c:\Program Files\xpto\123\client" 'Create directory and copy files If CheckFolder(strDestinPath) = False Then FSO.CreateFolder(strDestinPath) Function CheckFolder(Folder) CheckFolder = FSO.FolderExists(Folder) End...
  3. krameje

    R5 Calendar View

    I am new to Notes. I have created a calendar view in R5. The db name appears on the view when I run the calendar from the server. The db name does not appear when I run the calendar locally on my PC. How can I stop the name from appearing? Thanks in advance, krameje
  4. krameje

    Alter view after submitting item

    Vincent, I did find the Lotus script equivalent of @settargetframe. It is: Call notesUIWorkspace.SetTargetFrame( frame$ ) By default, the calendar view is visible in my center frame when a user opens the db. In the left hand frame, I have an embedded outline. One of the items in the...
  5. krameje

    Alter view after submitting item

    Vincent Liu, is there a way to set a target frame through Lotus Script? Attitudes are contagious
  6. krameje

    Alter view after submitting item

    I am using this db strictly in a Notes environment at the moment. I am not sure how $$Return field will work. Attitudes are contagious
  7. krameje

    Alter view after submitting item

    I am new to Notes programming. I have created a Notes db that has a frameset with three frames. The top frame is just a gif. The left-hand side frame houses an outline page. The center frame displays one of three items: a calendar view, a list view or an input form. By default, the...
  8. krameje

    Lotus Notes Combo Box

    Hello. I am new to programming in Lotus Notes. On a form, I have two combo boxes: cboProcess and cboTeam. I would like to drive the record source for cboTeam based upon the choice the user makes in cboProcess. For example, if a user selects "New Order" from cboProcess, then I...
  9. krameje

    This recordset is not updatable

    If you are linking tables together in a query, and if you are showing "Totals" in the QBE grid while building your query, then you may not be able to update any of the query output. Could you please post the SQL? Attitudes are contagious
  10. krameje

    This recordset is not updatable

    Is the record source for your form a table or a query? Attitudes are contagious
  11. krameje

    Confused

    Hey damianh, could you please publish the link you mentioned in your 8/8/2003 post? I am also new to Notes (been programming in Access for years), and I am trying to get through the learning curve. Thanks in advance, krameje Attitudes are contagious
  12. krameje

    bringing up entered dates

    Rico, On your form, create two text boxes (ie: txtStartDate and txtEndDate). In the record source for your report, use the values input by the user in the two text boxes as date criteria to drive your report. (ie: Between [Forms]![frmMyform]![txtStartDate] And...
  13. krameje

    Linking combo boxes

    At what point are you receiving the error? Attitudes are contagious
  14. krameje

    Linking combo boxes

    It means Access is not sure what the object's exact name is. As an alternative, you could type: Forms!frmMyForm!cbo2.Requery. HTH! Attitudes are contagious
  15. krameje

    Linking combo boxes

    Sorry for the double post. {:>) Attitudes are contagious
  16. krameje

    Linking combo boxes

    PrintNET, I got it working. Here is what I did: Here is the record source for cbo1: SELECT [Sheet1 Query].[SKU] FROM [Sheet1 Query] GROUP BY [Sheet1 Query].[SKU]; Here is the record source for cbo2: SELECT [Sheet1 Query].[Description], [Sheet1 Query].[SKU] FROM [Sheet1 Query] WHERE...
  17. krameje

    Linking combo boxes

    PrintNET, I got it working. Here is what I did: Here is the record source for cbo1: SELECT [Sheet1 Query].[SKU] FROM [Sheet1 Query] GROUP BY [Sheet1 Query].[SKU]; Here is the record source for cbo2: SELECT [Sheet1 Query].[Description], [Sheet1 Query].[SKU] FROM [Sheet1 Query] WHERE...
  18. krameje

    Linking combo boxes

    PrintNET, what is the name of your form?
  19. krameje

    Linking combo boxes

    PrintNET, I noticed you are missing a bracket around Description in the record source for cbo2.
  20. krameje

    Linking combo boxes

    Let's assume I have a db with two tables. tblMake has the following field: Make. tblModel has the following fields: Make;Model. Next, I have a form (frmAuto) with two combo boxes (cboMake and cboModel). The record source for cboMake is: SELECT [tblMake].[Make] FROM tblMake; The record...

Part and Inventory Search

Back
Top