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 IamaSherpa 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. RippleJD

    Change Chart Title in Graph Object Programatically

    Silly me: Me.GraphName.ChartTitle.Text = "My Text Here" %-)
  2. RippleJD

    Change Chart Title in Graph Object Programatically

    Hello All, Does anyone know how to change the Chart Title in a Microsoft Graph 2000 Chart Object programatically? Thanks, JD
  3. RippleJD

    Printer driver controlling margins

    I am having a similar problem. Does anyone have any suggestions? It seems to be an issue with Windows 2000 because I don't have the same problem using windows 98. JD
  4. RippleJD

    ComboBox with InputMask not working properly

    The combo box I am using is for data display and selection. The data are not stored in the table with mask characters, but the user wants the mask characters displayed. When searching for an account number, the user does not want to type in the dashes, but wants them shown automatically as he...
  5. RippleJD

    ComboBox with InputMask not working properly

    Hi folks, I've got this strange problem with Access 2000. I have an unbound ComboBox control that will be accepting an 8 character string. The row source is a query containing an 8 character text field. This field is really a series of numbers, some starting with zero (ie 01123400). This...
  6. RippleJD

    make values negative based on value in column

    If I understand you correctly, the bottom line is you want to add up all the "S" transactions and subtract all the "R" transactions on your subform and show the one total on the main form. One possible solution is to create a hidden text box in the footer of your subform...
  7. RippleJD

    Export to excell formating

    I would assume if you set a reference to the Microsoft Excel Object library inside your access app you should be able to set formatting for a given sheet. An easier method might be to set up a macro inside excel which would format the sheet (providing you are working with the same data each...
  8. RippleJD

    What are the Consequences of increasing MaxLocksPerFile setting?

    I have a program that must process a large number of records in a transaction block. I was getting error 3052 "File Sharing Lock Count Exceeded." According to an article from Microsoft's Knowledge Base (and another in this forum), the recommendation is to increase the default setting...
  9. RippleJD

    Updating a Counter Field in a Transaction Block

    Thanks folks! I was able to use the same GL_Table, but I used the Max(GL_ID) function in a recordset instead of using the DMax function. Set rs = db.OpenRecordset("select max([GL_ID]) from [GL_Table]") I guess the key is using a recordset object instead of a domain aggregate...
  10. RippleJD

    Updating a Counter Field in a Transaction Block

    I need to increment a field within a transaction block. I call a function like the following within the transaction (there is more to the function, but this is the relevant portion). Public Function UpdateGL() As Boolean Dim rsGL As Recordset Dim NewGLID As Integer Dim db as Database...
  11. RippleJD

    Searching for "invisible" values in Linked Excel table

    Thanks folks. I could have sworn I tried <> &quot;&quot;! I feel kind of silly now. JD :~/
  12. RippleJD

    Searching for &quot;invisible&quot; values in Linked Excel table

    I have a query in Access that is using a linked Excel table. I want to return only those records where the phone number is null. When I enter &quot;Is Not Null&quot; into the criteria for the phone number field, the result set still returns &quot;blank&quot; phone numbers. Excel is storing...
  13. RippleJD

    convert string to integer

    Try the function CInt().
  14. RippleJD

    Access 97/Pervasive SQL 7 ODBC

    I have an access program that links to Pervasive SQL 7 tables via ODBC. On one PC the performance is adequate. On another, the performance is much too slow. The only difference between the two PCs (as far as I can tell) is that the &quot;slow&quot; pc had Windows 98 and the &quot;fast&quot...
  15. RippleJD

    Label on form will not refresh

    After rebooting my PC, it is now working with me.repaint. Those darn gremlins again!
  16. RippleJD

    Label on form will not refresh

    I have a label on a form that provides various messages to the user. The label is initially hidden. I want this label to become visible after a button is clicked and the code begins to run. The only way I can get the label to become visible is if I interrupt the code with a message box. I'v...
  17. RippleJD

    Restoring Access 2000 from Taskbar (one more time...)

    |-I I really need an answer on this. Please Help! I have an application that keeps one popup form open at all times, but minimized. When Access 2000 itself is minimized and then restored, the minimized popup form always maximizes and appears on top, even if it was not the form last viewed...
  18. RippleJD

    Restoring Access 2000 from taskbar maximizes all open windows

    I have an application that keeps one popup form open at all times, but minimized. When Access 2000 itself is minimized and then restored, the minimized popup form always maximizes and appears on top, even if it was not the form last viewed. This can be confusing to the user, who expects to go...

Part and Inventory Search

Back
Top