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. zink421

    Programming Charts on Reports!

    Hello, I have a report with a chart on it. I would like to change the legend strings or anything about the chart through code? Any ideas on how to access the properties of the chart through code in a report would be great? Thanks, Jason
  2. zink421

    Programming Charts For Dummies? HELP?

    Hello, I have a unbound chart called "OLEUnbound0" on my report, which contains the following properties OLE CLass: Microsoft Graph 97 Chart Class: MSGraph.Chart.8 I need to set through code the legend property of the report. How can I access this property from code? Thanks Jason
  3. zink421

    Setting up task bar functionality, much like Norton etc..

    I am writing a backup program that has timed backup procedures. I want it to stay in memory at all times to allow the timer control to execute at specific times. Furthermore I need an icon displayed on task bar left of the system clock. I want the same basic functionality as norton antivirus...
  4. zink421

    menubar - disable specific menu based on condition

    Private Sub form_load() Dim cbr As CommandBar Dim cbrCtl As CommandBarControl ' Set a reference to the Access menu bar Set cbr = CommandBars("menubar") Set cbrCtl = cbr.Controls("menucaption").Controls("submenucaption") ' Set the Enabled Property to False...
  5. zink421

    VB Package & Deployment

    Vb Package & Deployment Isn't the Package & Deployment wizard bad or what? May be I just dont understand it, but I can never get my database objects to package up and installed without errors. Can some one give me some highlevel thoughts on the process or a link to some quality third party...
  6. zink421

    Copy Folder From H:\somepath to, C:\somepath

    Public Sub backup() On Error GoTo jason2 Dim date1 As Variant Dim fil Dim fso Dim fill2 Dim fso2 date1 = Format(Date, "MM-DD-YYYY") Set fso = CreateObject("scripting.filesystemobject") Set fso2 = CreateObject("scripting.filesystemobject") Set fill =...
  7. zink421

    Access 2000 & IIS 4

    Format the date before you display it with the format function -> format([fieldname], "dd/mm/yy") before you put it on the ASP page, or format it in the table field property settings. I dont think its ADO, I would say its your DB changing the format. Jason
  8. zink421

    Using Autonumbers in database design

    From my experience autonumbers are a quick way to create primary keys that uniquely distingush each record. So for example if I select a student from a data grid or web page I could not use sql with the students name to get to the right student because I have multiple students with the same...
  9. zink421

    Does access have calendar ability??

    Not Really, you could design something to accomplish that, but your reinventing the wheel. Use Microsoft Outlook for calendaring entries. Jason
  10. zink421

    How do I create a new database automatically?

    VB 6 I have vb code here to create a copy of an exsisting DB, and put it on the A Drive. I hope this leads you in the right direction: You will like the sripting.filesystemobject, but be ethical when using it. Public Sub backup() On Error GoTo jason2 Dim date1 As Variant Dim fil Dim fso Dim...
  11. zink421

    Easy Question

    It is a single form, and the current record property does not stop the pageup / pagedown. Thanks for the scroll info. I think microsoft needs notified. Jason
  12. zink421

    Access Subform

    Does anyone know how to prevent the pageup/pagedown bottons from scrolling through the recordset on a form? I want to stop this..
  13. zink421

    Access Subform

    I have a course form where I need to add students. I have an add studetn form but I need the course code to automatically be filled in the student add form from the course form. They will go to the course for then add student to a particalar course. Can I relate the form in a parent child...
  14. zink421

    Easy Question

    How can I prevent record navigation in a form with the Page Up & Page Down or the mouse scroll wheel. I cannot figure this out. Jason
  15. zink421

    Access Subform

    How can I tell which record is selected in a subform through code. Help!!!!
  16. zink421

    Report with Subform Data....

    I need to be able to know with code which record in an access subform is selected. Once I find it I want to delete it?

Part and Inventory Search

Back
Top