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 Wanet Telecoms Ltd 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: *

  • Users: gerard1979
  • Content: Threads
  • Order by date
  1. gerard1979

    Use function with parameter in Custom Toolbar

    Access2000, Customize toolbar Add Menu Add OnAction = UpdTable("tblCustomer") referencing to Function UpdTable(strTable as string) select case strTable case.. .. end select I know how to reference to functions without parameters. But how can I give a parameter in the field OnAction...
  2. gerard1979

    Change detail height is not completely clear for me

    I'll try to change my detailheight based on a field (vervallen). It's a boolean, if true then detailheight = 800 else detailheight = 430. What happened? The detailheigth 'walked' one record to late and reset each new page to 430. So it doesn't represent what I want in the right way. Hope...
  3. gerard1979

    Advice about a stand-alone MDE application with export data

    I made a stand alone application which I have to distribute to several person. Normally I make network applications, so split the database in front_end/back_end and relink the tables with a new update. Now I better like a way to export the tables from the MDE and import after sending a new...
  4. gerard1979

    Backup a password protected backend

    I want to back up my backend database by code: I wrote (with help of tekTips) the code below. But the function failed on the line fso.CopyFile strSource, strDest, True Can the cause be my PROTECTED backend The error is Number 52, Thnx in advance Public Sub BackUp() 'This function backs...
  5. gerard1979

    Refresh a form with bounded combobox

    Usage: Access2000 Construction: Form (frmContact) with Cbo (cboWith) The cbo is bounded by a function, the function search for the forms ID: Function HaalCPID() On Error GoTo errHandler HaalCPID = Nz(Forms!contactpersoon!CP_id, 0) 'print without errhandler End Function Problem: I add an RefID in...
  6. gerard1979

    Printing a blanc label after every printed label

    Hi all, I have a little problem with printing labels. I customized a label, based on the wizard from Access2000 I need to print 1 label in a time, I write the function for get the label and print the record. The problem is: every time I print a label (we have a real labelprinter (3,0cmx10,5cm)...
  7. gerard1979

    Table design for planning schedule

    I have a little design problem. I have a Ref. from a Ordertable. This Ref. had to be scheduled in a daterange. Daterange can be 31-12-02 till 3-01-02 but also can be 31-12-02, 3-01-02 till 5-01-02, 11-01-02. What's the best method to save this? I tried: tblSchedule: OrderRef (foreign key from...
  8. gerard1979

    Order a query in a listbox on several columns

    I build a query in the wizard (access2002) I filled a listbox with the columns of the query I also filled a combobox with the names of the columns, see below: Public Sub VulsorteerLijst() Dim intNumColumns As Integer, intI As Integer Dim strSQL As String, frm As Form Set frm =...
  9. gerard1979

    bound a year in a query

    I need to track data with a query from 1-1-02 to 31-12-02, but it must be variable for the years, so next year its 1-1-03 to 31-12-03 What's the easiest way to bound a column on this criteria? Thnx in advance, gerard
  10. gerard1979

    Problem with structure to build query for graph

    I'm using Access2002. I'm making a lot of reports and graphs, some of them drive me crazy as the follow is doing. Maybe someone can help. I need a graph with time (in points of entering) on the x-as and profits on the y-as. The legenda includes a few persons. They all need an own profit-line. I...
  11. gerard1979

    How to Lock checkboxes!!

    I have a form with txtboxes and checkboxes. I want some values be not updateble by some people. ALl people has rights etc. With me.txtbox1.locked = true or false I can handle the checkboxes, but how to handle the checkboxes Any help appreciated, Thnx in advance, gerard
  12. gerard1979

    match records between 2 queries

    I have 2 queries qryCP: CP_id, naam_contactpersoon gives all customer records qryYear: CP_id, Year gives customerID's with year when they get present CP_id year 1 1999 1 2002 2 2002 QryCP must have one more field: this field contains the match between the queries, if CP_id...
  13. gerard1979

    How to stop code when a form opens

    I have the follow code For Each varpositie In cboArtikels.ItemsSelected tempArtikelNaam = cboArtikels.Column(2, varpositie) tempEenheid = cboArtikels.Column(4, varpositie) tempArtID = cboArtikels.Column(0, varpositie) DoCmd.OpenForm "frmPrijsAantal&quot...
  14. gerard1979

    Me.pages on report gives 0

    I Think the problem of me.pages = 0 becomes while the pages are not formatted at the moment the procedure below is running. My question: which procedure to use to kill this problem thnx in advance, gerard Private Sub Report_Activate() 'function for confirmation, gives as parameter the pages of...
  15. gerard1979

    relational database design, simple question!

    I have a table with several fields. 3 of them are followed_by, written_by, asked_by. All three fields are comboboxes and refered to the same tblUser. Make it a difference to take 3 tblUsers in the grid and build 3 relations between them or take 3 lines from 1 table to the three fields? gerard
  16. gerard1979

    Real understanding of the Docmd.SendObject acSendNoObject

    I use the rule Docmd.SendObject acSendNoObject for running a daily/weekly automated emailsession. I run it from the AutoForm_Load event with a macro. This give no troubles but what happens exactly with the command? The problem is: sometimes, totally random, when an user start the program at...
  17. gerard1979

    XML connections?

    Is there anybody who know something about XMLdata connections? I need it to send data from Access2000 to Exact periodically (once a week for example). Any documentation also appreciated. Thnx all for reactions! Gerard
  18. gerard1979

    secure the backend database

    Can I put a password on the backend database? Initutively I think the users can't read from the backend when I do this. Maybe other ways to protect for looking by users in the backend data. thnx in advance, gerard
  19. gerard1979

    Make word visible after use FollowHyperlink

    I open a worddoc with the application.followhyperlink me.docLink structure in Access2000. It works but 2 things irritate me: first> Why becomes the document not the active screen? second> The WebBar comes up irritating in the middle of the screen. How can I solve this 2 'problems'? Thnx in...
  20. gerard1979

    AllowEdits is false

    I have a form where I doesn't allow edits (by most of the users). But why can't they select a cbo. If this is logic, how can I solve this. It's neccessary for the people to select a value on the cbo and search for the corresponding data in the DB. They doesn't change anything, only read, it's a...

Part and Inventory Search

Back
Top