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 TouchToneTommy 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 DK47

  1. DK47

    DataReport Populate Labels when unbound

    john, That did the trick. Thanks a bunch. Dwight
  2. DK47

    DataReport Populate Labels when unbound

    Hi, I used the code below to load data into a DataReport based on an ado recordset. I did this because my user needs to select reports based on investor ID's and other run time citeria. This works well enough but now I can't figure out how to populate the labels which are not datbase...
  3. DK47

    Data Report Code for Run time parameter

    Hey All, Is there a way to code parameter searches to fill a data report by the user? We have an access database using SQL and we need to draw Dates and Values based on which user is logged in. The code I use for this which loads a datagrid is: frmHoldings.adoHistory.RecordSource =...
  4. DK47

    Limit record returns from data base

    Mark and Swi, An additional question on this, if you don't mind. How would I get the last 10 records from the table, instead of the first 10. I tried to use the ASC and DESC keywords but this only succeeded in rearranging the order of the first 10 and did not call the last entries in the...
  5. DK47

    Limit record returns from data base

    Thanks Guys, That will do the trick. Have a great day. Dwight
  6. DK47

    Limit record returns from data base

    Hey All, Using Jet4 with an Access database, would it be possible to limit the number of records returned, using the RecordCount Property in an SQL statement? For example, if an SQL query called for values associated with dates, could it be written to return just 5 or 10 records? Thanks in...
  7. DK47

    ListBox w/ ADO

    Thanks Guys, That was easy enough. Regards, Dwight
  8. DK47

    ListBox w/ ADO

    This code loads the symbols from the ado recordset just fine. Can anyone tell me how to allow only unique items to be loaded? In otherwords, even if there are several records with the same symbol, the user only needs to see it once. adoSymbols.RecordSource = "SELECT (Symbol) FROM...
  9. DK47

    Need text box to display three decimal places

    Dear SP, I did what you suggested and found that on the form load event I had a calculation procedure that, early on in the programming, I had trouble with text boxes with variable not adding but concotinating. I used the Int(txtBox) function on it to force an addition. Some how I must have...
  10. DK47

    Need text box to display three decimal places

    Hi All, The application I am working on requires tracking investment shares with percentages extended to three digits. IE (567.098 shares) I know I could get this to work with mskbox but I have grown to detest those nasty little controls and besides the application has so many references to...
  11. DK47

    ado sql date search syntax help

    Sorry about that, I'll be more detailed the next time. Regards, Dwight PS By the way I needed that bit of code to grab data for an MSChart control, and it works great. Can't thank you guys enough for taking the time to help. DK
  12. DK47

    ado sql date search syntax help

    Jimgary, Thanks buddy, your's did the trick. Have great weekend. Here's a star! Regards, Dwight
  13. DK47

    ado sql date search syntax help

    Jim and John, Thanks guys. DK
  14. DK47

    ado sql date search syntax help

    Thanks, I'll give it a try. DK
  15. DK47

    ado sql date search syntax help

    zarkon4, Thank you very much for your time and your help. Much appreciated! Regards, Dwight I tried this with single quotes (') and double quotes (") as shown below and I still get sytax error (Missing operator) Any other ideas? adoChart.RecordSource = "SELECT * FROM History WHERE...

Part and Inventory Search

Back
Top