Jump to content

Search the Community

Showing results for tags 'call procedure/function on o'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 1 result

  1. hi.. is there any way to call function / procedure on other form like if i have function/procedure on form error i create procedure like this procedure TFrmError.Run(arun: integer; acaption: string; errornya: tstringlist); var FrmError:TUniForm; begin screen.Cursor := crhourglass; FrmError := TFrmError.Create(nil); with FrmError do begin try Caption := acaption; if caption = '' then caption := 'Error'; caption := application.Title; Memo1.Text := errornya.Text; Memo1.Color := color; if FileExists(ExtractFilePath(Application.ExeName) + 'img\error.png') then Image1.Picture.LoadFromFile(ExtractFilePath(Application.ExeName) + 'img\error.png'); FormStyle := fsStayOnTop; ShowModal; finally screen.Cursor := crDefault; FreeAndNil(FrmError); end; end; end; how i call that form procedure or function from another form ? thanks
×
×
  • Create New...