Jump to content

SayeyeZohor

uniGUI Subscriber
  • Posts

    215
  • Joined

  • Last visited

Everything posted by SayeyeZohor

  1. I have a problem with UniURLFrame in Chrome UniURLFrame in firefox is OK ... UniURLFrame in chrome is NOT OK ... Download sample in this link HtmlFrame.rar @Sherzod
  2. hi group is not access for me group link has expired ...
  3. FUNCTION TUniHesabresi_Forms.GetIndexFromValueOfCombobox(UCombo: TUniComboBox; Value: string): Integer; var I: Integer; BEGIN Result := -1; FOR I := 0 TO UCombo.Items.Count - 1 DO BEGIN IF Trim(UCombo.Items[I]) = Trim(Value) THEN BEGIN Result := I; Break; END; END; END; procedure TUniHesabresi_Forms.UQ_ExcelPropertiesBeforePost(DataSet: TDataSet); begin UQ_ExcelPropertiesExcelSheetIndex.AsInteger := GetIndexFromValueOfCombobox(UCombo_ExcelSheetName, UQ_ExcelPropertiesExcelSheetName.AsString); end;
  4. html not support in unicombobox? @Sherzod
  5. any body here? @Farshad Mohajeri @Sherzod
  6. http://s6.picofile.com/file/8384083750/HTML_without_unigui.rar.html @Sherzod @Farshad Mohajeri
  7. hi i found a problem in UniHTMLFrame i add css, javascript in unigui folder and add html content in UniHTMLFrame and run with unigui i am not problam without unigui @Sherzod
  8. i want run any url with iexplorer (with unattended execute software like autoit)
  9. i want to copy file to temp folder of client and execute with unigui 1- send file from server to client and execute it ... (download silently ... without downloader view)
  10. how to simulate enter key = #13 in checkbox to change cursor focus to next component? @Sherzod
  11. how to get client temp address "? which client address sample: C:\Users\[username]\AppData\Local\Temp @Sherzod
  12. hi, i want to open url with another browser in my web application like "explorer, Mozila , ..."
  13. how check internet connection in unigui? @Sherzod
  14. @Sherzod hi, please refer me to solve that ... tnx
  15. how open url with another type browser like internet explorer, mozila, chrome, ...? @Sherzod
  16. how open url with another type browser like internet explorer, mozila, chrome, ...?
  17. procedure TUniF_WebSites.UniDBGrid1CellClick(Column: TUniDBGridColumn); begin IF Column.FieldName = 'LinkAddress' THEN BEGIN UniSession.AddJS('window.open('+QuotedStr(UQ_WebSitesLinkAddress.AsWideString)+', ''_blank'');'); // to open a new window/tab end; end;
×
×
  • Create New...