Delphi Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming Languages - MoreDelphi Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 26th, 2012, 11:11 AM
Murugavel Murugavel is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2012
Posts: 28 Murugavel User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 10 h 52 m 57 sec
Reputation Power: 0
Bookmark is invalid...

I'm working with the application which consists 6 modules,but except one module i receive the error 'Bookmark is invalid', while executing an application....,
What would be the reason ?

Thanks in advance...

Reply With Quote
  #2  
Old July 26th, 2012, 04:18 PM
majlumbo majlumbo is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2008
Posts: 255 majlumbo User rank is Lance Corporal (50 - 100 Reputation Level)majlumbo User rank is Lance Corporal (50 - 100 Reputation Level)majlumbo User rank is Lance Corporal (50 - 100 Reputation Level) 
Time spent in forums: 3 Days 2 m 15 sec
Reputation Power: 5
Quote:
Originally Posted by Murugavel
I'm working with the application which consists 6 modules,but except one module i receive the error 'Bookmark is invalid', while executing an application....,
What would be the reason ?

Thanks in advance...


Is it possible that the database record you have bookmarked has been deleted when you want to go back to it? Or other possibilities, you are filtering the dataset and the bookmarked record is not visible while filtered = true, you closed, then re-opened the dataset, or possibly even refreshed (someone else may have deleted the record in a multi-user environment).

I do use bookmarks, but I always wrap them within try..try..except..finally blocks.

Code:
var
   bk: TBookMark;
begin
   bk := Query1.GetBookMark;
   //allocates memory, so wrap in try..finally
   try
      //work with your dataset here
      try
         Query1.GotoBookMark(bk);
         //can cause error so wrap in try..except
      except
         //silences the error if bookmark is invalid
      end;
   finally
      Query1.FreeBookMark(bk);
   end;
end;


There is Query1.BookMarkValid(bk) that returns a boolean value, but it is unreliable in that it will return true even if the dataset cannot go to the bookmark for some of the reasons I gave above.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreDelphi Programming > Bookmark is invalid...

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap