Jump to content

lema

uniGUI Subscriber
  • Posts

    405
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by lema

  1. Did you rebuild the UniGMap package or just your project? The Delphi Project name or the Google API Project name doesn't make a difference. Of course you have to add the allowed referers in API Key.
  2. lema

    server4you.de

    I have the 3rd option. http://www.tophost.gr/dedicated-servers/standard-servers-pack.htm One doubt only about processor speed. I am not sure about specific CPU performance , but it seems a little sluggish. I have to run some benchmarks...
  3. lema

    Async to Sync

    As a classic old-fashion programmer , I learnt to develop with the procedural approach in mind. I try to adapt into the web - asynchronous model , and in most cases I don't have any problem. But , there are times that I want to block the program flow until some javascript function return a value. Is there any possibility to achieve that?
  4. As title says , can we run 2 or more applications in the same directory? That mean that they will share the /log (and other) directories. Is it safe ?
  5. lema

    server4you.de

    I have to say that I lease the server through a reseller in my country. The only "bad experience" was before 4-5 days that the server was under heavy DNS Cache poisoning attack. They helped me , although I have an unmanaged package. After 2-3 months of use I had no other problem. The server is always available and the bandwidth is quite high. The machine is a AMD 64 Athlon X2 3400+ with 8GB RAM and 80GB SSD. It hosts several databases , some cgi applications and acts as my dev unigui box. For now I am happy.
  6. There is no way to run unigui applications on that machine ! In order to run an unigui app , you have to use a host providing ISAPI hosting or lease a Windows VPS. There are a few options here: http://forums.unigui.com/index.php?/forum/12-hosting/
  7. lema

    Fast report problem

    http://forums.unigui.com/index.php?/topic/298-unigui-in-how-to-use-the-fastreport-report-control/
  8. Hi , thanks ! I will try it. Note: It's better for all of us to enclose source code into a code block.
  9. Hi Stas, I am testing the online demo , but the QRcode samples from http://en.wikipedia.org/wiki/QR_code do not seem to work. They are all png files. http://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Qr-3.svg/220px-Qr-3.svg.png http://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Qr-2.svg/220px-Qr-2.svg.png http://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Qr-1.svg/220px-Qr-1.svg.png http://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Wikipedia_mobile_en.svg/220px-Wikipedia_mobile_en.svg.png
  10. Yes , I know. But , this is not a bug. Please see below: https://developers.google.com/maps/documentation/javascript/layers#KMLLayers So , when you are working on localhost or local networks will show nothing For debug purposes , I suggest to upload the KML to a publicly accessible location where google API can have access and just pass the URL to component, as I did into the demo: KML.KMLAddress := 'http://85.25.130.138/kml/pentagon.kml';
  11. New version 2012-10-30 v1.2.8 -- Waypoints in Directions. Note: While using a free account , the route calculation may contain up to 8 intermediate waypoints. https://developers.google.com/maps/documentation/directions/#Limits
  12. New version 2012-10-29 v1.2.7 -- Kml support. Kml samples ----------- (intended for use with Google Earth , but many of them should do the job..) https://kml-samples.googlecode.com/svn/trunk/interactive/index.html
  13. Did you get this error while trying to run the included demo?
  14. procedure TMainForm.UniButton1Click(Sender: TObject); var I: Integer; ASessionList: TList; begin ASessionList := UniServerModule.SessionManager.Sessions.SessionList.LockList; try for I := 0 to ASessionList.Count - 1 do begin UniMemo1.Lines.Add(TUniGUISession(ASessionList[i]).UniApplication.RemoteAddress); end; finally UniServerModule.SessionManager.Sessions.SessionList.UnlockList; end; end; You can use UniMainModule.OnSessionTimeout and ExtendTimeOut to extend session for another xxx seconds
  15. New version 2012-10-27 v1.2.6 Fixed unicode bugs
  16. New version 2012-10-27 v1.2.5 -- Started playing with Directions API. The Demo shows how to get the instructions Array from Google API and show it into a UniDBGrid. Tips: Click on Grid to place a marker. Click on map to find closest direction step. Click on "get DirectionsResult" button to get the JSON containing the whole route
  17. Hi to all. I share the uniGEarth component. It is a very simple component , used to show the google earth into your uniGUI projects. For now it can only configure some properties but as soon as I find some time , I will try to add some functionality like event handling , adding placemarks etc. You can see it in action here : http://85.25.130.138/lema/uniGEarthDemo.dll Latest version: 2012-10-15 v1.0.0 uniGEarth.v.1.0.0.zip
  18. Very interesting ! Thank you. BTW I tested a sample image with ~ 90% success.
  19. The method ResizeMap has already been implemented in component , but I forgot to call it on demo project. Please , use the following: procedure TxxxxForm.UniFormResize(Sender: TObject); begin UniGMap1.ResizeMap; end; I will be add the missing procedure on the next demo release.
  20. New version 2012-10-14 v1.2.4 -- Markers with labels. The new "Marker with Label" feature is actually a wrapper of MarkerWithLabel Library. Reference : http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerwithlabel/1.1.5/docs/reference.html Examples: http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerwithlabel/1.1.5/docs/examples.html Source: http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerwithlabel/1.1.5/src/ Note: The file markerwithlabel_packed.js must be located in /files folder
  21. New version 2012-10-13 v1.2.3 -- Can create , edit , delete , locate rectangles. -- Get informed about several rectangle events , like click , rightclick , BoundsChanged. Also , there is an updated demo showing the new features.
  22. Yes , sure ! I will change every non thread-safe StrToFloat() to the thread-safe form with TFormatSettings record. Also , I will eliminate the use of StringReplace() function.
  23. New version 2012-10-12 v1.2.2 -- Can create , edit , delete , locate polygons. -- Get informed about several polygon events , like click , rightclick , insert_at , remove_at , set_at. -- Get polygon perimeter length (meters) and area (square meters).
  24. Hi Ronny. Try to narrow down the problem and attach here a test project that causes the problem.
×
×
  • Create New...