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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by slaman

  1. slaman

    Generating a report I want!

    Ive posted this problem once already and didn't get a good response. Maybe this forum will be able to help a bit better. A little background into the structure Corporations.CorporationID Corporations.CorporationName Directors.PersonID Directors.CorporationID Officers.PersonID...
  2. slaman

    A really complex query/report

    Unfortunately, after trying many many different queries - I havent gotten one to work =/ I tried the one you posted, but it was full of syntax errors, so it didnt work =/ If anyone has anymore suggestions - I'm running out of time and really don't want to restructure things to make it work.
  3. slaman

    A really complex query/report

    so right now I have temp_for_directors - Corporations.CorporationID, Directors.CorporationID, Directors.PersonID and the same fields for Officers and Shareholders... How would I use that to make the report - I'm not understanding what you're saying... That join thing you mentioned is for a...
  4. slaman

    A really complex query/report

    A little background into the structure Corporations.CorporationID Corporations.CorporationName Directors.PersonID Directors.CorporationID Officers.PersonID Officers.CorporationID Shareholders.PersonID Shareholders.CorporationID People.PersonID Ok, that is the above structure/fields I am...
  5. slaman

    Problem with Date Query!

    This is the query, where FromDate and ToDate are fields on a search form. SELECT Businesses.[Expiry Date], Businesses.[Business Name], Corporations.[Corporation Name], Corporations.LawyerID, Corporations.FirmID FROM Corporations INNER JOIN Businesses ON Corporations.[Corporation ID] =...
  6. slaman

    Referential Fields

    Well done... I don't know why I make things so complicated for myself when Access has all these neato pre-defined wizards =P
  7. slaman

    Referential Fields

    I am trying to create a subform with the following fields AutoNumberID CorporationID PersonID Position DateHeld Now I have this form related to the "Corporations" database using a One-to-Many relationship and same with the "Persons" database. Now, I can get the...
  8. slaman

    Adding a Carriage return to a string

    Chr(13) & chr(10) worked wonders... the second one didnt.. I assume it's Access 2002 syntax again...
  9. slaman

    Adding a Carriage return to a string

    It's for a textbox on a form. [Text Box Name] = stringName1 + Chr(13) + stringName2 is basically what I am trying to do to have the stringName1 and stringName2 display on two separate lines.
  10. slaman

    Adding a Carriage return to a string

    I want to add an carriage return to a string if it exceeds a certain length. I thought this would be easy (simply add a & Chr(13)) but for some reason, it displays a little black box instead of actually doing a carriage return. Any ideas?
  11. slaman

    SLAMAN! An answer to your question

    http://www.mvps.org/access/modules/mdl0004.htm This is the module I need... This is how I call it [Former Name(s)] = Me.fConcatChild("[Dates]", "[Corporation ID]", "[Former Name]", "Long", 1) where the Corporation ID is 1. I get nothing - no errors, no...
  12. slaman

    SLAMAN! An answer to your question

    Thanks, I just found that out from the help files. This is how I am calling the function. I get Runtime errors 0 and 20. [Former Name(s)] = Me.fConcatFld("[Former Names]", "Corporation ID", "[Former Name]", "Number", "String") I am so...
  13. slaman

    SLAMAN! An answer to your question

    I am using Access 2002 which has VB6. Unfortunately, I can't use that code because I can't define a data-type As Database. I don't know what its equivalent type is in VB6... Any help would be appreciated.
  14. slaman

    SLAMAN! An answer to your question

    Heh thanks... that caught my attention... twice ;) I will check it out
  15. slaman

    Stopping record navigation via mouse scroll wheel?

    I am having the same issue with Access 2002. On the form's MouseWheel event, you can do Cancel = True and it will prevent it from scrolling through the records. But I'm still lost as to how to scroll through a single FORM.

Part and Inventory Search

Back
Top