Jump to content

ogaere

Members
  • Posts

    12
  • Joined

  • Last visited

Posts posted by ogaere

  1. I am also having this problem installing 1.90.0.1564 on Delphi 11.1

    Checking project dependencies...
    Building uSynEdit_R2024.dproj (Release, Win32)
    [MSBuild Error] The "BRCC32" task failed unexpectedly.
    System.IO.IOException: The system cannot find message text for message number 0x%1 in the message file for %2.

       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite, Boolean checkHost)
       at System.IO.File.Copy(String sourceFileName, String destFileName, Boolean overwrite)
       at Borland.Build.Tasks.Common.CommandLineTask.CreateTempFileIfNecessary(ITaskItem basedOn)
       at Borland.Build.Tasks.Common.CommandLineTask.Execute()
       at Microsoft.Build.BuildEngine.TaskEngine.ExecuteInstantiatedTask(EngineProxy engineProxy, ItemBucket bucket, TaskExecutionMode howToExecuteTask, ITask task, Boolean& taskResult)
    Failed

     

     

     

  2. Checking project dependencies...
    Building uSynEdit_R2024.dproj (Release, Win32)
    [MSBuild Error] The "BRCC32" task failed unexpectedly.
    System.IO.IOException: The system cannot find message text for message number 0x%1 in the message file for %2.

       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite, Boolean checkHost)
       at System.IO.File.Copy(String sourceFileName, String destFileName, Boolean overwrite)
       at Borland.Build.Tasks.Common.CommandLineTask.CreateTempFileIfNecessary(ITaskItem basedOn)
       at Borland.Build.Tasks.Common.CommandLineTask.Execute()
       at Microsoft.Build.BuildEngine.TaskEngine.ExecuteInstantiatedTask(EngineProxy engineProxy, ItemBucket bucket, TaskExecutionMode howToExecuteTask, ITask task, Boolean& taskResult)
    Failed

  3. Hello, we have news for unigui of lazarus ?!

     

    If not, you could let us know how much it would cost to implement it? So maybe you create a crowdfunding and find the money.

     

    Thank you

    Yeah! Crowdfunding will make sense

  4. You definitely can do from the closing of the search form

     

    type
      TfrmCourseSearch = class(TUniForm)
       ...
      private
        procedure SetCourseOfferID(OfferID: integer);
        function GetCourseOfferID: integer;
        procedure FilterCourse(editComponent: TUniEdit; FieldToSearch : String);   
      public
     
        property OfferID: integer read GetCourseOfferID write SetCourseOfferID;
      end;
     

    //----

    procedure TfrmCourseSearch.UniFormClose(Sender: TObject;
      var Action: TCloseAction);
    begin
         if ModalResult = mrOK then
         begin      
            frmCourseEnrollment.cdsRegistrationDet.Edit;
           frmCourseEnrollment.cdsRegistrationDetCSOFFERINGID.value := frmCourseSearch.OfferID;
           frmCourseEnrollment.cdsRegistrationDet.Post;     
          end else    
            ShowMessage('You cancelled the search');        
    end;
  5. Hi Farshad,

     

    We are also looking at making a web version of our current payment platform. If we can sign some kind of NDA and have access to your source code to allow us to move forward by assisting your development efforts by way of bug fixes and enhancing some of the components especially the Grid component.

     

    We are ready to buy licenses.

     

    Regards

     

    E. F. Ere

×
×
  • Create New...