Jump to content

Gianluca

uniGUI Subscriber
  • Posts

    9
  • Joined

  • Last visited

Everything posted by Gianluca

  1. hi sorry very much for the delay but I was not in the office these days. I am sending you an example starting from the demo. Running the query does not appear to loop on the while not eof statement. I am also attaching the script of the table and data to populate it, thanks for your collaboration hello ClendarTestSQL.zip
  2. yes I took a cue from the example to build my calendar. The problem I think is in the way it handles the UNIGUI query does not perform the next recordon the next record, it seems to not recognize the WHILE NOT EOF. I have no error but the query never return a set of record in te loop. i use firedac on a sql server table. if you can give me confirmation that the procedure I am using works or if you can suggest one, thank you
  3. sorry I don't understand. can you please help me with a small example? thanks
  4. Hello, yes return a set of record from the table, I send a screen shoot, thanks.
  5. Hello, I realized a small project with UNIGUI 1.90.0.1563 pro registered. I Cannot enter appointments in the calendar read from a table, probabily because I use a code not good for mobile version, my code is on formCreate: ar E : TUniCalendarEvent; begin UnimCalendarPanel1.StartDate := toDay ; UnimCalendarPanel1.WeekTimeRange.TimeStart := 0.0; UnimCalendarPanel1.WeekTimeRange.TimeEnd := 0.99999999999; UnimCalendarPanel1.DayTimeRange.TimeStart := 0.0; UnimCalendarPanel1.DayTimeRange.TimeEnd := 0.99999999999; with qCalendario do begin if active then close; Open; while NOT EOf do begin E := UnimCalendarPanel1.Events.Add; E.CalendarId := StrmCAL.FieldByName( 'CalendarId' ).AsInteger; E.Title := FieldByName( 'Titolo' ).AsString; E.StartDate := FieldByName( 'DataInizio' ).Asdatetime; E.EndDate := FieldByName( 'Datafine' ).Asdatetime; e.Notes := FieldByName( 'Nota01' ).AsString; e.Reminder := FieldByName( 'FlReminder' ).AsString; E.IsAllDay := True; Next; end; end; When Excute program Calendar is not update. If Someone can help me, thanks in advance.
  6. Hello, I have a problem in exporting data to Excel from a unidbgrid on mac, while on windows the export and the file are generated correctly. On MAC I have a return error like "Bad Request" and nothing else. I'm using register version 1.9.0 build 1549, thanks everyone for the help.
  7. hi cid, thank for your advice, the problem is the app run on android and the virtual\soft keyboard always appears after the barcode is read on operation on picking is making. if it possible don't open the soft keyboard of android. In this project iuse unigui for mobile, thank in advance.
  8. thank very much for alla answers and sorry for delay time. the procedure run correctrly and read barcode the problem is that al the time when the cursor is palced on tunimedit the soft keyboard of androoid i showing, and the user have to close it. the sequence is like this: 1 the cursor is placed in tunimedit and the user read the barcode 2 the app make some operation an the end replaced the cursors on tunimedit, but a this moment the soft keyboard of android i showing and the user have to close it thank to all for helping
  9. Hello, Can Anyone help me? I would like to hide keyboard on tunimedit on mobile version. It is possibile and can you give me some example. thanks in advance Gianluca ps hello, thanks for reply my versione is Complete Professional 1.90.0.1511
×
×
  • Create New...