Search:

Type: Posts; User: PaulK; Keyword(s):

Page 1 of 11 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    204

    Re: continuous form (Access 2000)

    In the form properties in design view go to the data tab and change the allow additions to no.
  2. Re: Report using critera entered list box (2000)

    If you look at the properties and methods of the listbox object in the online help you should be able to figure this out. Specifically look at the ItmesSelected collection and the ItemData property....
  3. Re: Report using critera entered list box (2000)

    You will need to build a criteria string or where clause for your report while looping through the items selected collection of your listbox. At the end you should have something that resembles...
  4. Re: Problem moving Access 97 app to newer versions (97 Sr-2)

    What if you create a new db in 2000 and link to oracle tables and update them. Does it happen then?
  5. Re: Problem moving Access 97 app to newer versions (97 Sr-2)

    I've updated 97 db's to xp but not with links to oracle but sql server. I would recommend getting the latest odbc drivers for oracle and try deleting and recreating the links to the oracle tables.
  6. Replies
    4
    Views
    267

    Re: Update Table (2000)

    You might also try specifying the recordset type such as dbopendynaset. This has solved some of my error messages when I've upgraded from 97 to XP.
  7. Thread: capacity (a2000)

    by PaulK
    Replies
    3
    Views
    233

    Re: capacity (a2000)

    A lot depends on what you intend to do with the data once it is in the db. I used Access 2.0 with tables consisting of record counts in the 100,000's. But all I did was simple reporting and...
  8. Replies
    2
    Views
    482

    Re: Inventory Receipt To/From Stock (Access 97)

    In a private message you wrote:

    "I have one question how do i get a running tally of my Inventory. I have the number for example one item 3, 9, -3. How do I get the totals for that item to come...
  9. Replies
    2
    Views
    482

    Re: Inventory Receipt To/From Stock (Access 97)

    Instead of 3 tables I would use 1 or 2 and use some columns to specify the types of transactions. This way you could set rules that a to stocj transaction uses positive number for a to stock...
  10. Re: Select from a combo box or drop down list (2000)

    In your query, change the join between the tables from an equi-join to right join - all records from accounts table and only those that match from transactions. You should then get records returned....
  11. Replies
    4
    Views
    234

    Re: Configuration of Split DB (AccessXP)

    Yes, performance was improved with SQL server. I'm still monitoring it though and am currently researching replication.

    I'm not sure about your first question. I'll see if I can find out though.
  12. Re: Select from a combo box or drop down list (2000)

    In which row of the query grid are you referencing the combobox? It should go in the criteria row under the department code column.
  13. Re: Run-Time Error 'Row handles must all be released' (2000)

    Here's a couple of links that hopefully will help.

    KB

    Experts
  14. Replies
    5
    Views
    700

    Re: Adding leading Zeros (Office/Access 2000)

    You can try and use the attached code if you know what length the result string should be. Usage is as follows:

    varString = PadZero("StringToBePadded",10)

    where 10 is the length of the result...
  15. Replies
    4
    Views
    234

    Re: Configuration of Split DB (AccessXP)

    Are the front ends located on workstations or servers? Make sure your tables have good indexes. Also, when returning recordsets, try and limit the number of records being returned with criteria. This...
  16. Replies
    1
    Views
    197

    Re: Access template (2K and XP)

    I'm assuming you are referring to the handlebuttonclick function in the switchboard forms module. This is a custom function that carries out instructions based upon the button on the form that was...
  17. Replies
    9
    Views
    339

    Re: Hyperlinks/Email addresses (97)

    If mailto: is always at the beginning of the field you can use the mid function in an expression in a calculated field in a query to isolate the name. Then just concatenate a comma. Something like
    ...
  18. Re: stop the execution of a function (Access 2000)

    If you want this function to be used in more than one situation you will need to pass values to the function when calling it. This means you will need to have one or more arguments in the function...
  19. Replies
    5
    Views
    255

    Re: Data type error (2K and XP)

    Just to add my 2 cents to the 6 cents that has already been offered, most likely the data type mismatch error occurred in the code behind the button in the where condition argument of the OpenReport...
  20. Replies
    5
    Views
    343

    Re: Setting cursor to end of text (Access 2000)

    Go to tools/options/keyboard tab. You can set the enter field behavior to go to end of field. This is a global setting so I'm not sure if this suits your needs. The only other thing I can think of is...
  21. Replies
    3
    Views
    220

    Re: Order By on a Report using a Variable (XP)

    I believe you need to employ the orderby and orderbyon properties of the report to affect the sort order of a report.
  22. Re: SendObject won't finish the send (AccessXPSP2/Lotus Notes R5)

    Thanks Allan!

    I've got something similar to the first example. The problem I'm having now is setting who the emails come from. We've created a specific mailbox for this operation and I'm now...
  23. Replies
    11
    Views
    501

    Re: Increase Speed of Opening Form (Access 2000)

    I don't know if that would help. What makes you think it is the listboxes that are slowing down the opening of the form? Do you have a lot of code in the form's module? I've read that heavy forms can...
  24. Re: SendObject won't finish the send (AccessXPSP2/Lotus Notes R5)

    No, I get no error message. The memo is created with the addressee, subject line and the report in HTML format nicely pasted into the body of the memo. But then it just sits there and isn't sent...
  25. SendObject won't finish the send (AccessXPSP2/Lotus Notes R5)

    I'm trying to send reports in a batch process through Lotus Notes using the SendObject command. Everything works fine except that it doesn't send the email even though I have the EditMessage argument...
Results 1 to 25 of 273
Page 1 of 11 1 2 3 4