Jump to content

Search the Community

Showing results for tags 'browser'.

  • 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

Calendars

  • Community Calendar

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 16 results

  1. Can we please have a project wide solution to stop Browser "Save Password" prompt that pops up at all odd times, not even related to the current non-password editor. Something we can add to the MainForm.Script that will work across all editing - a Sencha solution. Individually manipulating each edit as mentioned on other Internet posts is not practical.
  2. HI Everybody i open a new Browser Page with the following coomand (from the website): UniSession.BrowserWindow('news/news.dll', 1280,1024, '_blank' ); and so i start a new UniGui Application in Form Mode, it work super but when i let the user quit the application with a Form.Close the result is an empty new Browser Windows (blue screen with the "Restart Application" line.... How can i close this Browser Windows? Thanks for any help. Davide
  3. Hi all, How to speed up development? After edit Delphi source, we need to wait Delphi to compile and then wait browser to reload. Browser waiting to reload our new app is the most painful. What is best practice to speed up reloading new built? Do we have something like React, Vue or other tools called "hot reload" Best regards, Marko
  4. I have installed the components correctly. In Delphi opening window they appear registered. Open projects with them and make the compilation and execution. The icon is in Tray Bar. But when I try to view the browser only is the term "loading ..." I've tried everything. What should I do? Ah! In the open browser window, with the phrase "loading" also appears at the top of the Delphi XE8 icon. I've tried Windows 10, 64-bit, now Windows 7 Ultimate, 32-bit. My Delphi's RAD Studio XE8.
  5. How do I detect the browser that is running the application? Because this code only works right when I run in debugger: var C: TUniClientInfoRec; begin label_ra.Caption: = UniApplication.RemoteAddress; C: = UniApplication.ClientInfoRec; label_bt.Caption: = C.BrowserType; label_bv.Caption: = IntToStr (C.BrowserVersion); label_os.Caption: = C.OSType; But when I run inside Apache or IIS, it is not returning me anything, it comes in white.
  6. I am converting an existing Web application to unigui and I have a problem with fonts not working as expected and I am unable to use developer tools in both Firefox and Chrome to inspect the uniGui rendered pages. If I open the raw html file directly with the browser the font work as expected and the browsers Element Inspector works fine. I am not too concerned about the fonts issue at this stage but the inability to use the browser's Element Inspector is a serious issue for me. Can we expect this to be resolved in the new future?
  7. Bom dia pessoal!! Será que alguém pode me ajudar? Alguém tem conhecimento se consigo desenvolver um projeto com Unigui (Delphi Seattle) onde consigo gerar um EXE para rodar também local, ou seja, via browser e local? Obrigado! Raphael
  8. I want to show browser's vertical scrollbar when main page's vertical height is over screen height. How to do it? I use FMSoft_uniGUI_Complete_Professional_1.50.0.1480.exe
  9. Hi, Everytime we recompile application, you must close in traybar and refresh browser page. The tip will automatically close application and start a new page in default browser. In Project, Options, Build Events,Pre-Build, write command: taskkill /F /IM program.exe /T procedure TUniServerModule.UniGUIServerModuleCreate(Sender: TObject); begin if self.StandAloneServer then //if you need this, if not, remove it. ExploreWeb('http://localhost:8077'); //auto start browser end; procedure ExploreWeb(page:PChar); var Returnvalue: integer; begin ReturnValue := ShellExecute(0, 'open', page, nil, nil,SW_SHOWNORMAL); if ReturnValue <= 32 then begin case Returnvalue of 0 : MessageBox(0,'Error: Out of memory','Error',0); ERROR_FILE_NOT_FOUND: MessageBox(0,'Error: File not found','Error',0); ERROR_PATH_NOT_FOUND: MessageBox(0,'Error: Directory not found','Error',0); ERROR_BAD_FORMAT : MessageBox(0,'Error: Wrong format in EXE','Error',0); else MessageBox(0,PChar('Error Nr: '+IntToStr(Returnvalue)+' inShellExecute'),'Error',0) end; end; end; procedure TFMainForm.UniFormShow(Sender: TObject); begin //show frame/form to login only if we are not debuging... if (DebugHook = 0) then begin FLogin.ShowModal; ... end; end;
  10. Hi, I created a new form in my project named form1 and i want to open this form in a new browser tab when i click on a button from the mainform? Best regards Jack Amin
  11. For my Remote DB Session I need a Unique Session ID For Each Connected Browser (user) so as to distinguish one from another. My understanding is that the ServerModule Session is independent of the Browser and Server Specific ? - please advise - thanks in advance.
  12. I need to get the User's Desktop Browser Client Area (Height and Width) so I can maximize my Form at runtime - please advise - Thanks in advance.
  13. Is there a demo or can someone explain whether there's a UniGUI based way to request fullscreen mode from the browser (on login say)? E.g using browser API as mentioned here: https://davidwalsh.name/fullscreen https://developer.mozilla.org/en-US/docs/Web/API/Fullscreen_API There seems to be some differences between how browsers handle this (sigh) which seems to be taken care of by the following library, apparently: https://github.com/sindresorhus/screenfull.js/
  14. Hello.. I have two doubts. 1st) how to run google chrome and not I.E ?? 2nd) where I find the example Layout Management -> Accordion Layout ?? Tanks..
  15. Hi! Its I know the discover identity of the browser I'm using to access my application? Like ... if the user is using Chrome, Firefox ... Thx all.
  16. Open new Tab in Browser in mode isapi ??? , in google chrome as a browser help?????????????
×
×
  • Create New...