Jump to content

Maybar

uniGUI Subscriber
  • Posts

    7
  • Joined

  • Last visited

Posts posted by Maybar

  1. Thanks Sherzod,

    The system automatically gives a password when creating PDF files, and the system stores this password in the database. I don't want him to ask for the password when showing the PDF file to the user in the Internet browser. I want the system to automatically enter the password and show the PDF file to the user. The user does not know the password of the PDF file.

    good luck.

  2. hocam ilk açılışta geliyor

    1 sn sonra aşağıdaki hata ekranı geliyor.

    uniMap kullanımı da kontrol ederim

    teşekkürler. google map kullanımıyla ilgili detaylı bir örnek vs. var mı forum da 

    teşekkürler.

  3. I using TUniHTMLFrame

    Is there a solution

    thanks..

     

    HTML Strings:

     

    <!DOCTYPE html>
    <html>
    <body>
    <div id="map" style="position: absolute; width: 100%; height: 100%"></div>

    <script>
    function myMap() {
     if (navigator.geolocation) {
         navigator.geolocation.getCurrentPosition(function (position) {
             initialLocation = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
             map.setCenter(initialLocation);
         });
     }
    var mapOptions = {
        center: new google.maps.LatLng(51.5, -0.12),
        zoom: 16,
        mapTypeId: google.maps.MapTypeId.HYBRID
    }
    var map = new google.maps.Map(document.getElementById("map"), mapOptions);
    }
    </script>

    <script src="https://maps.googleapis.com/maps/api/js?key=?????????????????????????????????&callback=myMap"></script>
    <!--
    To use this code on your website, get a free API key from Google.
    Read more at: https://www.w3schools.com/graphics/google_maps_basic.asp
    -->

    </body>
    </html>

    error1.PNG

    error2.PNG

×
×
  • Create New...