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
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.
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 = _...
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...
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.
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.