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 bkrike 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 chernandez2000

  1. chernandez2000

    VB Data Report Designer

    Bluenoser - glad it helped you out. If you are still working on the Report Sections Do Not Match problem, here's a link in MSDN (IF you dont happen to have a copy, got to MSDN.MICROSOFT.COM) - Do a search for: PRB: 8570 Report Sections Do Not Match DataSource
  2. chernandez2000

    VB Data Report Designer

    Excellent young Jedi.
  3. chernandez2000

    VB Data Report Designer

    dwray There may be a way, but I believe I was trying to figure that out once and got a headache LOL. You may want to look into "hierarchical recordsets". Not sure but that may open up some doors for you. Good luck.
  4. chernandez2000

    VB Data Report Designer

    Also here's a way to get a data report without using the dataenvironment: Dim cn_ForReport As ADODB.Connection Dim rs_ForReport As ADODB.Recordset Dim strSQL As String Set cn_ForReport = New ADODB.Connection cn_ForReport.ConnectionString = _...
  5. chernandez2000

    VB Data Report Designer

    hi vbwill Its kinda early for me, but let me show the syntax I used for such a SQL statement : "SELECT * FROM History WHERE Reference = " & Chr(39) & text1 & Chr(39) & " 'chr(39) is of course a single quote Also, would a refresh of some property in the dataenvironment be in...
  6. chernandez2000

    Checkbox WITHIN a datagrid or any grid?

    Thanks Cajun I will give it a shot. Klick - thanks but I am just gonna go with a grid for now, rather than dataprepeater, but that repeater does seem pretty cool.
  7. chernandez2000

    Checkbox WITHIN a datagrid or any grid?

    Cajun... searched for that phrase... no matches. If you happen to bring it up would u mind posting the thread number? Thanks
  8. chernandez2000

    causes of system crash

    I would start by looking for system files that may have been overwritten during installation. Good luck.
  9. chernandez2000

    Checkbox WITHIN a datagrid or any grid?

    Anyone know of a way to have a checkbox within a cell of a datagrid (or any other VB grid control). I am attempting to represent boolean data from a field within a table, but right now, either 1 or -1 or 0 comes back. I would like to show a clicked or unclicked checkbox. Any ideas? Thanks...
  10. chernandez2000

    Extend VB's DBCombo box... ?

    Thanks Lucky! I'll try it right now. C
  11. chernandez2000

    Extending DBCombo Box...

    chernandez2000@hotmail.com Thanks again!
  12. chernandez2000

    Extending DBCombo Box...

    Mrmeola and Rob - you dudes rock! I'm gonna start playing with the code in a few minutes. Thanks! Conrad
  13. chernandez2000

    Extend VB's DBCombo box... ?

    Hi all, I am trying to extend the normal way the DBCombo box works as follows: The DBCombo is currently attached to a field in a database, so it is populated with, for example, last names. I am using dblExtendedMatching under the Match Entry property. So the names automatically complete...
  14. chernandez2000

    Extending DBCombo Box...

    Yeah Rob, Not sure if its easier to email it to me or post it here. Whatcha think?
  15. chernandez2000

    Extending DBCombo Box...

    Hi all VB phreaks out there. I am trying to extend the normal way the DBCombo box works as follows: The DBCombo is currently attached to a field in a database, so it is populated with, for example, last names. I am using dblExtendedMatching under the Match Entry property. So the names...

Part and Inventory Search

Back
Top