Jump to content

mierlp

uniGUI Subscriber
  • Posts

    572
  • Joined

  • Last visited

  • Days Won

    35

Posts posted by mierlp

  1. Hi

     

    I'm developing a small database tool for our festival which
    contains the importend Phone numbers.

     

    Is it possible to use phone dialing from a smartphone.

    What i would like to is when i need someone from

    the list,...click a button and the number must be dailed.

     

    Can this be done with uniGui

  2. Hi,

     

    I spend a lot of time to build and test the result i need with this GUI. After trying and trying i can't find out why it's not working.

     

    It's nothing more than a mainform (uniServerModule.MainFormDisplay=mfPage) and all other

    Forms need to open within the FormMain.UniContainer. So the form will be maximazid.

    Each form contains a uniPanel_Main with all the components and must be centered (that works)

     

    Attached also a example project. Whatever i try i can't get the frmTableBank opened to

    the max, show NO border (that's  still not working properly) and center the panel.

    When frmTableBank is maximized the mainform is not visible anymore.

     

    When playing around with the LayoutConfig properties i still didn't got the result i need.

    I think it's a combination of properties...but can't figure out which one

     

    Who can help me or modify the code/properties to 

     

    Regards Peter

    post-510-0-64518900-1464362447_thumb.png

    TEST.ZIP

  3. Hi Lema,

     

    I just created a fresh test project (see attachment) and now it's working. I got the error in a existing big project where i added the GMap

    functionality....so i have to see what's differenbce between the test project and the existing project.

     

    BUT...if have 1 question...is it possible to ad a marker / infowindow based on the given address or do you have to 
    reverseGeocoding first before to adding a marker / infowindows

     

    Regards PEter

    Gmap.zip

  4. Hi Lema,

     

    THanks...that's the correct file. I just want to use some geocoding and looked at the example...but missing something? 

     

    • So i created a form which contains the UniGmap.
    • The OnShow events contains : UniGmap.Initialize;
    • Put a editbox on the form for entering the addres and a button to do the search with this code :   UniGMap1.Geocoding(UniEdit_Address.Text)

      I got this Ajax error

    _rsov_(O4BF,22);var geocoder = new google.maps.Geocoder(); geocoder.geocode({"address": "standaardmolen 86 weert"}, function(results, status) {   if (status == google.maps.GeocoderStatus.OK) {     ajaxRequest(O50B, "Geocoder", ["lat="+results[0].geometry.location.lat(), "lng="+results[0].geometry.location.lng() ]);     } else {     ajaxRequest(O50B, "Geocoder", ["Geocoder failed due to: " + status]);     }   } );
  5. Hi

     

    Thanks for the answer....i know this solution and already use it in

    my application. But we have a pratical issue for the users.

     

    For a music festival they get about 2500 accreditations request in 3 weeks

    and they need to print a single request. When first generating a pdf ...then view

    and then print...it cost to much time. That's why i need to directly print

    the request.

  6. hi

     

    All my reports are stored in a database. I load a report when i need one

    and genereate report and direct print the report (frxReport.Print).

    This works when my program is a stand-alone server and use it on a local machine.

     

    Now i created a .dll and running it on my IIS server. The same option does not work

    anymore (oke..no printer installed on server).

     

    What do i need or how to support direct send report to the users local printer ?

     

    For the frxReport properties like ShowDialog, ShowProgress are disabled.

     

    Regards Peter

  7. hi

     

    Within my application a need several edit fields for register time (only HH:mm)

     

    I use a mySQL database so i can use:

    a. TIME field

    b. DateTime field

    c. Float

    d. Var

     

    I have to compare time (start/end times) and calculate times. When comparing time it's possible

    a performance starts at 23:00 and ends at 00:30 hour. Do i need to use the date to correct

    calculate the time?

     

    Time fields have advantage and disadvantage and some people use float fields for time. I have used

    a time field and when entering the time in a dbedit with the syntax HH:mm it's after save is show

    always HH:mm:ss (because it's a time field). But after using a display field HH:mm it still show

    the time like HH:mm:ss

     

    So ...what's you opion for :

    1. best field for time

    2. when using a DBEdit for enter time i can use a mask like 99:99
    3. tips ?

     

    Regars Peter

×
×
  • Create New...