Search results

  1. Jibbadiah

    Create my own website with db back-end... suggestions appreciated.

    Thanks Dt... that is what I had heard as well. Will try to get hold of a copy of the book. Cheers, J.
  2. Jibbadiah

    Create my own website with db back-end... suggestions appreciated.

    Just bringing this back into view.. posted just as new posts were being cleared down.
  3. Jibbadiah

    Create my own website with db back-end... suggestions appreciated.

    Hi folks, I have a bit of experience using a combination of vb, sql, unix scripting, access, dos etc. As well as very basic use of HTML and some static webpage design through Dreamweaver. I am considering an attempt at creating my own dynamic website with a MySQL db behind it, and I will need...
  4. Jibbadiah

    Must textboxes in a report have a rowsource?

    Looks like you would like to specifically change the value of a report field to a specific value from your form - by just assigning the value... not sure that that will work. Believe that you could instead try to filter your recordsource (myGlobalSQLstring) so that it only selects records where...
  5. Jibbadiah

    Auto populate fields on current form

    I can't look at your db - I only have Access 97 at work. Ok. so you have the form bound to your table. 1. Create a query that selects all of the elements that you need from the table (obviously you have to keep the table to do this). 2. Go to the properties section of your form and change...
  6. Jibbadiah

    How to make a reference to another column in the same query?

    I'm not surprised it didn't work... all of your field names have changed from the jpeg that you posted... lol. I have to go... so will give you a quick and easy. Create Query 1. an aggregate query where you only select employee id and max of date. Create Query 2. A Select query where you...
  7. Jibbadiah

    Must textboxes in a report have a rowsource?

    You could try the following, the main reason that I use this approach is so that I can create a filter on the fly depending upon the choices made on a form. Set up a global module with a public variable. Global Module Public gstrReportRecordSource As String In the report set an "on open"...
  8. Jibbadiah

    Open report with criteria

    Go to the query for the report and put forms!Formname!txtEmployee in the criteria section. Where Formname is the name of your form calling the report, and txtEmployee is the text control with the employee id.
  9. Jibbadiah

    How to make a reference to another column in the same query?

    Don't quite know what you are after... but maybe try putting the following formula as an extra field in your query... and tell me if it is what you want? test: IIf(IsNull([coaching1A] And [coachingdato2]<>""),[coachingdato2],[coaching1A]) Be sure to keep it as "group by" in the total field.
  10. Jibbadiah

    Find Record From Listbox

    ... do you really need a "quick lookup" for just 6 records?! Sounds like a little over-engineering.
  11. Jibbadiah

    Find Record From Listbox

    Even easier... select combo control... add to form... the wizard should offer the opportunity to "find a record on my form based on a value I select in my combo box"... choose this option. J.
  12. Jibbadiah

    Auto populate fields on current form

    Firstly, listen to Neileg all of his comments will help you to code better in future. If you then want to experiment a little try the following. Set up your combo using the wizard (based on a query, not a table) Insert an unbound text box called txtControl On the "on Change" event of the combo...
  13. Jibbadiah

    exporting from access

    That code should work as is, it will allow you to see it isn't as hard as it looks. Create a table called Tablename with 3 fields (field1, field2, field3) and populate some of the fields with any garbage... i.e. Field1Row1 Field2Row1 Field3Row1 Field1Row2 Field2Row2 Field3Row2 Field1Row3...
  14. Jibbadiah

    exporting from access

    Sorry about the double-post... my browser said that it had timed-out?!
  15. Jibbadiah

    exporting from access

    Dolano, Instead of trying to output a report, you could create a recordset of the query that you use for the report and output that instead. Below is a sample of the code that you could use, as well as some additional format helpers if you want to format the spreadsheet. You would put this...
  16. Jibbadiah

    exporting from access

    Dolano, Instead of trying to output a report, you could create a recordset of the query that you use for the report and output that instead. Below is a sample of the code that you could use, as well as some additional format helpers if you want to format the spreadsheet. You would put this...
  17. Jibbadiah

    How to make a reference to another column in the same query?

    Because it is an aggregate function you may run into problems with a single query. It may be that the simplest solution is to keep the first query as a standalone query and reference the value of your first query in a 2nd query.
  18. Jibbadiah

    Totalling

    This might be what Rich is refering to. I had it in an old directory. I think there are some credits within the code and forms. Suspect it is the db originally posted by Pat. James.
  19. Jibbadiah

    Paintball

    If everyone planning to join the army played a few games of paintball first they would realise how easy it is to get shot... then perhaps no one would be so foolish... or maybe it would just encourage more ppl in the US to join?!
  20. Jibbadiah

    VBA & SQL syntax error...again...

    Instead of creating a temporary query definition you could just put DoCmd.RunSQL (strsql) J.
Back
Top Bottom