1

I am using FIB Plus components with Delphi 2010, just would like to know what closeopen(true) does. I tried googling but didn't get info on it.

FIBDataSet.closeopen(true);
David Heffernan
  • 601,492
  • 42
  • 1,072
  • 1,490
Vishal Tiwari
  • 739
  • 2
  • 12
  • 28
  • Does this component not have any documentation? – David Heffernan Apr 20 '15 at 07:08
  • Some how the documentation is not popping up. So I need to find out out side. – Vishal Tiwari Apr 20 '15 at 08:11
  • If you are on a Vista+ OS, you will need a special installation from microsoft in order to open an old help file. If you want to download the help file, http://www.devrace.com/en/fibplus/download/ – LU RD Apr 20 '15 at 08:58
  • I am using Windows 8 OS, would this help file work on it ? – Vishal Tiwari Apr 20 '15 at 09:17
  • Very difficult to know why you wouldn't look in the documentation. Please don't take the fact that Valentine looked in the documentation for you as encouragement to use Stack Overflow as a documentation viewing service. – David Heffernan Apr 20 '15 at 09:24
  • @VishalTiwari, see https://support.microsoft.com/en-us/kb/917607. What is stopping you from testing if the help file opens or not? The OS will tell you what to do. – LU RD Apr 20 '15 at 09:30
  • @David: Please don't get me wrong. I tried a lot and when I didn't get then I asked. I don't practice to ask for documentation. – Vishal Tiwari Apr 20 '15 at 09:47
  • So your next step is to make sure you can read the documentation. I think you've got what you need. Do please feel free to carry on asking questions, but perhaps not along the lines of this one. ;-) – David Heffernan Apr 20 '15 at 09:57

1 Answers1

1

procedure CloseOpen(const DoFetchAll:boolean); This method reopen TpFIBDataSet. DoFetchAll parameter specifies whether to do a full fetch of data.

This quote is from russian version of document "FIbPlus 6.4 Appendix.PDF " Unfortunately I can not find a link to the English version of the document;

Val Marinov
  • 2,705
  • 17
  • 22