Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Kuttipulikal

    Disabling Events

    Hi, ItemFocuschanged and ItemChanged events are assosiated with datawindow control. These are not window events. In order to disable these events you can use different Return statements (In ItemFocusChanged) Return 0 (In ItemChanged) 0 (Default) Accept...
  2. Kuttipulikal

    Report within a datawindow control

    Beti, Jcura is correct but forgot to tell you about SetTransObject. Use the following code in your window's open event. dw_1.SetTransObject(SQLCA) dw_1.Retrieve() In order to use SQLCA as transaction object you should populate it before using it in your application.
  3. Kuttipulikal

    Saving Datawindow object as TEXT file

    Thank U very much friends... I will try to share datawindow and RTF edit control. About HTML table. I haven't seen it in PB5.0. I think Its in higher versions.
  4. Kuttipulikal

    Check whether application is already running or not

    You can't call StartServerDDE and other DDE functions in an application object's events. So copy this code in your Main windows open event , define Appln_handle as global variable(long). Then only this code will work??? Happy programming Kuttipulikal
  5. Kuttipulikal

    Saving Datawindow object as TEXT file

    Hi Friends, I am using PB5.0. I wanted to save a report as text file including its format and computed fields. When I use dw.SaveAS() I used to get base SQL saved as text file. Can anyone help me to solve this problem. Thanks in advance , Kuttipulikal

Part and Inventory Search

Back
Top