Re: Veiwing Datasets in Debug Mode
- From: "Veign" <NOSPAMinveign@xxxxxxxxx>
- Date: Tue, 31 May 2005 17:55:40 -0400
Isn't a Dataset a .Net thing? Also, he may be talking about the Viewers (I
think that's what they are called - Jeff Johnson would know since I think he
has developed some custom ones) that let you view in detail objects while in
debug mode in .Net
--
Chris Hanscom - Microsoft MVP (VB)
Veign's Resource Center
http://www.veign.com/vrc_main.asp
--
Read. Decide. Sign the petition to Microsoft.
http://classicvb.org/petition/
"Douglas Marquardt" <no_spam@xxxxxxxxx> wrote in message
news:uLmwFKfZFHA.3852@xxxxxxxxxxxxxxxxxxxxxxx
> Hi Daren:
>
> A couple of ways I can think of off the top of my head:
>
> 1. Loop through the rs and print each fld, i.e.
>
> Do While Not rs.EOF
> For Each fld In rs.Fields
> Debug.Print fld.Value,
> Next fld
> Debug.Print
> rs.MoveNext
> Loop
>
> 2. Show a modal form with a grid,i.e.
>
> Set frmDebug.Grid.DataSource = rs
> frmDebug.Show vbModal
> Unload frmDebug
>
> Note: You may want to clone the original rs instead of using the
original.
>
> hth,
>
> Doug.
>
>
> "Daren Hawes" <newsgroups@xxxxxxxxxxxxxxxxxxxxx> wrote in message
news:O73uytbZFHA.3712@xxxxxxxxxxxxxxxxxxxxxxx
> > Is there a way to view the contents of a Dataset in Debug mode?
> >
> > Thx
> >
> >
>
>
.
- Follow-Ups:
- Re: Veiwing Datasets in Debug Mode
- From: Douglas Marquardt
- Re: Veiwing Datasets in Debug Mode
- Next by Date: listbox repainting anomoly with XP
- Next by thread: Re: Veiwing Datasets in Debug Mode
- Index(es):
Relevant Pages
|