Search:

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

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    304

    Re: Adding integers (2000)

    Try:

    Dim X As Integer

    X = CInt(Me![TextBoxName]) + CInt(Me![TextBoxOtherName])

    Msgbox X
  2. Replies
    3
    Views
    311

    Re: Sunday Dates (Access 97)

    Hans, thanks again, and again, and again.

    Adding the "Loop Until InputDate >= EndDate" and your function did the trick. I'm still confused as to why the function without >= didn?t start with the...
  3. Replies
    3
    Views
    311

    Sunday Dates (Access 97)

    Hi All,

    The following functions return the next Sunday date from a given date. I am trying to find all the Sunday dates between two dates. Running the following function once returns the correct...
  4. Replies
    4
    Views
    597

    Re: Distributable Executable (VB.NET)

    Hi Mark,

    I have been to MS site and could not find if VB.NET comes in an upgrade for VB6. Do you know if it does?

    Also where might be the most economical way to purchase VB.NET?

    Thanks
  5. Replies
    4
    Views
    597

    Re: Distributable Executable (VB.NET)

    Excellent Mark!! Just what I needed to know!! Thanks
  6. Replies
    4
    Views
    597

    Distributable Executable (VB.NET)

    Will VB.NET (Standard Edition) produce a distributable executable?

    Does VB.NET contain an .MDB similar to VB6?

    Thanks
  7. Replies
    3
    Views
    581

    Re: Detect Browser (Access 97)

    Thanks Mark. I'll this a try.
  8. Replies
    3
    Views
    581

    Detect Browser (Access 97)

    I?ve tried the archives and Google but I?m not asking the right question?

    Is there a way to detect if a browser has been launched? I need to know if Netscape or Internet Explorer is running. I...
  9. Replies
    2
    Views
    635

    Re: Populating Tabs (VB6)

    Not sure if this will help but...

    I think you can find a way to dynamically add tabs to a tab control in the Access 97 Developer's Handbook, by Litwin, Getz, and Gilbert (Sybex) Copyright 1997....
  10. Re: Access 97 Locks Intermittently on XP Pro (Access 97)

    Thanks for the info. The service pack for Office is SR-2, and the WinXP is SP 1a. I visited MS site and the next service pack for WinXP is 2 but there was mention that it is a bata version. Am I...
  11. Re: Format Year With Leading Zero? (a2k (9.0.6926) SP-3 Jet 4.0 SP-7)

    I tryed: Me.strYearFrom = Format(DateSerial(2004 - 1, 3 - 1, 1 - 1), "yy")

    It returned 03, but I'm not sure of the gotchas with this. Those more in the know will have to comment.

    You could...
  12. Access 97 Locks Intermittently on XP Pro (Access 97)

    While running an Access 97.mde on XP Pro I am getting intermittent db lock ups. The lock ups are occurring in different places. The database is currently running on WinNT and Win2000 machines.
    ...
  13. Replies
    12
    Views
    451

    Re: Report to look like Excel (2000)

    Try the Report wizard - AutoReport: Tabular based on a Crosstab query.
  14. Replies
    4
    Views
    298

    Re: VB and Access (VB6)

    Thanks Hans and Charlotte for the info.

    I am familiar with Access 97 security. In VB6, if by including a Jet mdb file as a data store, will security work in the VB app much as it does in Access?...
  15. Replies
    4
    Views
    298

    VB and Access (VB6)

    New to Visual Basic and I am not clear on VB and Access.

    Is the ability to create .mdb files shipped with VB or does the end-user have to have Access on their system?
  16. Re: INSERT INTO, eliminating confirmation prompt (2002, SP2)

    Create the query in the query grid. If it works without any errors copy the SQL from the View menu and paste it after SQL1 =
  17. Replies
    10
    Views
    394

    Re: Inbetween dates (2k)

    Get rid of:

    'Dim db As DAO.Database
    'Dim rst As DAO.Recordset

    'Set db = CurrentDb
  18. Replies
    10
    Views
    394

    Re: Inbetween dates (2k)

    Have you set a reference to a DAO library?

    Open any module. On the menu bar select Tools then References...
  19. Replies
    10
    Views
    394

    Re: Inbetween dates (2k)

    Correction:

    Try the below in the Form_Open event of your subform. Don't forget to change MyTableName to the table name where your records are stored and the name of your form and the name of your...
  20. Replies
    10
    Views
    394

    Re: Inbetween dates (2k)

    Try the below in the Form_Open event of your subform. Don't forget to change MyTableName to the table name where your records are stored.


    Dim db As DAO.Database
    Dim rst As...
  21. Re: INSERT INTO, eliminating confirmation prompt (2002, SP2)

    Try this:

    Dim dbsNorthwind As DAO.Database
    Dim strSQLRestore As String

    Set dbsNorthwind = CurrentDb

    strSQLRestore = "UPDATE Employees SET Country = " & _
    "'USA' WHERE Country = 'United...
  22. Replies
    6
    Views
    304

    Re: Looking for a '-9' in a string (A2k2)

    Thanks. Learned something new today.
  23. Replies
    6
    Views
    304

    Re: Looking for a '-9' in a string (A2k2)

    Hans,

    The SQL I posted seemed to work but now I am not so sure. In a Select statement with a Where, in which order is the SQL processed?

    James
  24. Replies
    6
    Views
    304

    Re: Looking for a '-9' in a string (A2k2)

    Try:

    SELECT Trim([MyFieldName]) AS XX
    FROM MyTableName
    WHERE ((Right([MyFieldName],2)="-9"))
  25. Replies
    9
    Views
    386

    Re: Novell's Groupwise Email (Access97)

    Thanks Hans.

    I always appreciate the efforts of everyone who tries to help.

    Thanks again.
Results 1 to 25 of 117
Page 1 of 5 1 2 3 4