Hello, All!
Could someone provide a small code example of using IOLEUndoManager in
Visual Basic 6.0 (not .NET)?
Thanks!
WBR, SeNS
1. RESUME EXAMPLES / CV EXAMPLES NOW AVAILABLE THROUGH RESUMEWRITERGUIDE.COM
2. ras, dotnet, vb Here is a RAS wrapper for VB, along with some examples - VB.Net
3. Example VB Script modifying table
Thank you a bunch.
"Dirk Goldgar" < XXXX@XXXXX.COM > wrote in message
news:%23x% XXXX@XXXXX.COM ...
> "KaiRich" < XXXX@XXXXX.COM > wrote in message
> news:116f201c416bb$3d40f860$ XXXX@XXXXX.COM
> > Ditto!
> > This is exactly what I am having inordinate trouble
> > finding.
> > I am lead to believe from the Access 2000 Help Files that
> > what I want to use is:
> >
> > Dim rstProjects As Recordset ' (or DAO.Recordset)
> > Set rstProjects = CurrentDb.OpenRecordset("tbl_Projects")
> > With rstProjects
> > .Edit
> > !TableField = NewData
> > End With
> >
> > (Using .MoveNext or .FindNext to progress to the relevant
> > record first)
> > Unfortunately it doesn't work when put into VBA.
> > I can progress to the record I want (and use msgbox
> > prompts to check the record data to confirm this), but I
> > can't get the VBA code to change the data in the field.
> >
> > (Note, I have also tried this in XP, where the help files
> > on the subject were the same, but the code bombed totally.)
>
> You've left out one vital statement:
>
> > Dim rstProjects As Recordset ' (or DAO.Recordset)
> > Set rstProjects = CurrentDb.OpenRecordset("tbl_Projects")
> > With rstProjects
> > .Edit
> > !TableField = NewData
> .Update '*** this is required ***
> > End With
>
> --
> Dirk Goldgar, MS Access MVP
> www.datagnostics.com
>
> (please reply to the newsgroup)
>
>
4. Give an example of messge box in vb codes with all prompts
5. Running Access 2003 VB Module code example
6. Access 2003 VB Example Files
7. examples of VB for pivot tables
Hi, I've been working on pivot tables with VB, and can't find an example or reference of all the controls/functions. Generally I end up with 5 different examples on the go and still can't find a method to set the axis correctly. Anyone know of a good site that would have most/all of the pivot chart controls? Thanks.