Jump to content

BantuKumar

uniGUI Subscriber
  • Posts

    48
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by BantuKumar

  1. I am just confirming if you have added under published section?
  2. This did not work for me? My code looks like This gives me JS error with message GetAt not a function. Any other workaround?
  3. You can use TUniContainerPanel that is a simpler version and is what I guess you looking for. Thanks
  4. Hi I am planning to use Test Automation tool for regression testing on UniGUI forms. I was wondering if there is something that uniquely identifies the HTML element of UniGUI Form at run time and that will not change if there is any changes in corresponding Form. Very first thing that I thought of using is ID but I am not very sure about it. Can anyone suggest something or some workaround? Thanks.
  5. C:\Program Files (x86)\FMSoft\Framework\uniGUI\ext-4.2.5.1763\resources\themes\images\access\tools FMSoft itself uses few sprite image and you can see some examples of sprite images in above location Thanks.
  6. Okay, I will verify this again but what if I want to use image sprite? Is there a way to do so?
  7. Hi, I am struggling with a strange issue with TUniDBCombBox There is avDBComboBox on my form and a datasource is assigned to it, additionally I specify few items for dropdown manually at design time. Now here comes the issue when in case there are no records coming from datasource, then the combobox does not show items that I have manually added into it however if there are records coming from dataset, it shows union of the items. I was wondering if this is an expected behaviour. My expectation is to see my design time added items always in the dropdonw. Thanks.
  8. Hi, Is there any possibility that I can use image sprite to assign image icon to my buttons or toolbar menus. I want only one server trip to download icons for all my controls on the form. Initially I thought of UniImageList will do this for but no it does not. Imagelist generates multiple server trips to download images assigned to it. Can anyone suggest a resolution for my requirement! Thanks!
  9. BantuKumar

    Debugging

    Are you using ISAPI dll?
  10. Hi I am trying to build a grid with multiple inline editors like memo, text, date time picker etc.. This form will behave as a base and will be inherited by many other child forms. I am unable to find a way to specify a value in UniDBGrid.Editor property? Can you explain a procedure to do so?? Thanks & Regards,
  11. After a long effort what we found is... Delphi was unable to do correct linking of files and classes if there are two or more files with same Frames/Forms name in a project. Frames name must be unique throughout a project to avoid class conflict. For me it is resolved !!
  12. I already tried following - Opened the Forms design view and saved it again but not worked. - Checked the DFM there no such property mentioned - I tried to just re-publish them .Add a published section in the Form and add them again for example: published property ClientWidth; property ClientHeight; It worked but after this I received the same error for Caption I did the same for Caption as well then I get the error for OldCreateOrder and it is not stopping so I am not sure if it is a right track to follow. Can you please help me with it? Thanks
  13. I am getting following error when I try to load my form. --------------------------- Debugger Exception Notification --------------------------- Project w3wp.exe raised exception class EReadError with message 'Error reading FrmMainOrder.ClientHeight: Property ClientHeight does not exist'. --------------------------- Break Continue Help --------------------------- I checked my DFM and there no property with name ClientHeight. I am using 1.0.0.1358 version of UniGUI.
  14. Project MyApplication.EXE raised exception class EAssertionFailed with message 'TUniSessionWorkerThread: Can not call this method from a different thread. (H:\Framework\uniGUI\Source\Core\uniGUISessionManager.pas, line 1071).
  15. Hi Fabrega Gabriel, The reason for 4O4 error is server is unable to find the ISAPI DLL. Few more things that you can verify on server configuration is is execution is allowed for ISAPI DLLs and under advance setting 32bit DLL is checked. If you can send us the configuration details then we can give you more precise answer.
  16. Hi, As far as I know Yes, it will increase your performance of rendering the page. Best Regards,
  17. It is not a direct conversion tool however you can customize it to convert all your standard Delphi controls to corresponding UniGUI controls. For example TButton will converted to TUniButton, TEdit will converted to TUniEdit, TForm will converted to TUniForm and so on. Best Regards,
  18. Hi Jahlxx, Delphi Parser can be helpful. Best Regards,
  19. Hi, You can try as follow UniNativeImageList.GetBitmap(0, UniImage2.Picture.Bitmap); Best Regards,
  20. No! its not true for all forms. UniGUI creates the form in app startup which is declared as MainForm. You register your main form using RegisterAppFormClass(formName). Other form contained in the application can be created and destroyed as per your requirement. Best Regards,
  21. BantuKumar

    messagedlg

    Hi, Yes ShowMessage(...) is has lesser functionality than MessageDlg. Please use following syntax instead of what you are using for MessageDlg. MessageDlg('ERROR', mtError, [mbOk], nil); Hope this will be helpful. Regards,
  22. Hi, Add following unit in your uses clause of the unit where you are trying to set this value. Vcl.StdCtrls You can add this unit either in interface section or in implementation section. Hope this will be helpful. Best Regards,
  23. BantuKumar

    messagedlg

    Could you paste your code snippet here how/where you are showing message dialog?
×
×
  • Create New...