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 SkipVought 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: *

  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...
  16. chernandez2000

    Convert hexadecimal to decimal

    Here's a response I found on another board (cant take credit myself :-( ) You may have to work with the result to convert to type Int: sHexValue is your 8 char string Debug.Print = Val("&H" & sHexValue & "&") Here's where i found it, u may have to cut and paste...
  17. chernandez2000

    How to determine amount of RAM for an application?

    Hi all, Anyone know of a way to accurately determine the amount of RAM necessary and recommended for a VB app you are creating? Are there tools (perhaps within Visual Studio) that will perform estimate RAM usage? Right now, I am guesstimating by running the Task Manager in Windows 2000 while...
  18. chernandez2000

    DataReport - Sections do not fit vertically on the page.

    Could the 'setting the printer properties' be the problem? Try resetting your printer properties to normal 8 1/2 x 11, then try running your report again. Not sure, but it might be worth a shot. Also... while I have your attention... do u know of anyway to print columns of information using...
  19. chernandez2000

    Columns in a VB datareport?

    hmckillpop... thanks but I'm not following you. I know of data structures in visual basic. But how would those apply in setting up a datareport in Visual Basic. Are you talking about using a SQL staatement? Thanks in advance. Con
  20. chernandez2000

    Columns in a VB datareport?

    anyone?... anyone?... Bueller?... Bueller?...

Part and Inventory Search

Back
Top