.NET
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
fatal error resolved but still having issue
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
60 Views, 1 Replies
05-25-2012 09:44 AM
I found the line that was causing the fatal error that I was getting, but I am now having another issue.
I have code that looks as follows:
For Each psent As DBDictionaryEntry In psd
id = psd.GetAt(psent.Key)
Dim ps As PlotSettings = id.GetObject(OpenMode.ForRead)
Dim curps As PlotSettings = New PlotSettings(False)
curps.CopyFrom(ps)
curps.AddToPlotSettingsDictionary(db)
curps.DowngradeOpen()
trns.Commit()
curps.Dispose()
Exit For
NextThis will only copy one pagesetup, how ever I have multiple pagesetups that I need to have copied. I can accomplish that by removing the curps.dispose().
however if I remove that then I start getting the fatal error back.
is there a way that I can close the curps plotsettings without using dispose or close?
Solved! Go to Solution.
Re: fatal error resolved but still having issue
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-25-2012 10:09 AM in reply to:
bkenyon13
finally figured it out.
I used:
using curps....
(did work)
end using
this eliminated the fatal error and also copied all the page setups
