Search found 350 matches: calc

Return to advanced search

Re: FWHMYSQL Insert failing

Good Morning Mr Rao, I made a test with oCN:InsertSQ() and it's also returning a wrong sentence. It's returning this: INSERT INTO `folha` ( `cemp`,`nfolha`,`cmat`,`cvandes`,`cvdorig`,`val_inf`, `val_calc` ,`total_inc`,`filial`,`clotacao`,`prazo`,`situacao` ) VALUES ( '047','9WZ','00261','500','500',...
by vilian
Mon Apr 08, 2024 11:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMYSQL Insert failing
Replies: 6
Views: 394

Re: xHarbour.org updated!

... = notepad FWH = D:\lang\fwh1811\fwh1811 CGI = NO GUI = YES MT = NO OBJ = obj PROJECT = transp32.exe $(PR) OBJFILES = $(OBJ)\TRANSP.obj $(OBJ)\CALC.obj $(OBJ)\FASTREPH.obj $(OBJ)\FUNCTE.obj $(OBJ)\FUNMDFE.obj // $(OBJ)\GO_CODE.obj $(OBJ)\INT25.obj $(OBJ)\PROG01.obj $(OBJ)\PROG02.obj $(OBJ)\PROG03.obj ...
by wartiaga
Tue Sep 19, 2023 5:02 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37426

Re: MENU MAS ATRACTIVO

Joäo, se puede agregar la calculadora a la barra de tareas? intento con: DEFINE MSGITEM oMsg OF oWnd:oMsgBar ; SIZE 24 ; BITMAPS "CALCULADORA" ; TOOLTIP "Calculadora de Windows" ACTION WinExec("CALC.EXE") y me da error.. lo mismo si le quiero agregar un título ...
by TOTOVIOTTI
Tue Aug 15, 2023 2:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MENU MAS ATRACTIVO
Replies: 26
Views: 3135

Re: chatGPT writes and executes Harbour code !!!

I need a function calc the cyclometric distance between 3 numbers , the number must b from 1 to 90 , on array of 3 element and the distance must be equal to nvalore for esample 1 this to create the array FUNCTION distanza_ciclometrica(nvalore)  ...
by Silvio.Falconi
Wed Dec 21, 2022 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: chatGPT writes and executes Harbour code !!!
Replies: 35
Views: 2784

Re: delete identical records

... nTotale=nvalore nAt := AScan( aTmp, { |a| a[1] = j .and. a[2] = k .or. a[3] = n} ) If nAt == 0 aadd(aTmp,{n,k,j}) Endif Endif next next next the calc is fast but is also bad because there are also duples sample : https://i.postimg.cc/sf9VrrSP/sample.png
by Silvio.Falconi
Wed Nov 02, 2022 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: delete identical records
Replies: 6
Views: 357

Re: XBrowse a Excel o a Calc

Lo tengo (supongo): 1º En la aplicación debo programar si deseo trabajar con Excel o Calc, lo capturo mediante una variable. 2º Según el valor de la variable, si ésta indica que deseo con Calc, entonces después de definir XBrowse debo indicar: If lQuieroCalc bDummyBloc ...
by FiveWiDi
Sat Sep 10, 2022 10:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse a Excel o a Calc
Replies: 3
Views: 261

Re: XBrowse a Excel o a Calc

Puedes usar el medoto ToCalc oBrw:ToCalc( bProgress, nGroupBy, nPasteMode, aSaveAs, aCols ) Gracias César, pero no es esto lo que persigo. Cuando en un XBrowse pulsas el botón derecho en una celda, se muestra un menú popup que ...
by FiveWiDi
Sat Sep 10, 2022 9:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse a Excel o a Calc
Replies: 3
Views: 261

Re: XBrowse a Excel o a Calc

Puedes usar el medoto ToCalc
Code: Select all  Expand view
oBrw:ToCalc( bProgress, nGroupBy, nPasteMode, aSaveAs, aCols )
by cmsoft
Sat Sep 10, 2022 4:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse a Excel o a Calc
Replies: 3
Views: 261

XBrowse a Excel o a Calc

Hola a todos,

Cómo puedo forzar que un XBrowse pueda volcar su información sin usar Excel? Es decir que lo envie a Calc.

Muchas gracias,
by FiveWiDi
Sat Sep 10, 2022 2:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse a Excel o a Calc
Replies: 3
Views: 261

Re: WAITRUN() doesn't wait

Dear Enrico,

If you replace calc.exe with notepad exe then it works as expected

Why ? No idea...
by Antonio Linares
Sun Jul 17, 2022 4:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WAITRUN() doesn't wait
Replies: 2
Views: 378

Re: cyclometric circle

... 12 o'clock, so the number 45 at 18.00 and on circle must be draw a pixel near to number I think the positions must be save on array because I can calc the distance beetween two numbers
by Silvio.Falconi
Mon Jul 11, 2022 4:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 3018

calculate the right position

... DIALOG oDlgAgenti SIZE nWd, nHt PIXEL FONT oFont TRUEPIXEL ; TITLE cTitle TRANSPARENT COLOR CLR_BLACK,RGB( 245,244,234 ) ICON oIcon But How I can calc the exact position of each say and get control with respect to the height of the dialog created? for a sample I made local nHt := Int( ScreenHeight() ...
by Silvio.Falconi
Sat Nov 27, 2021 12:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: calculate the right position
Replies: 0
Views: 278

Re: multiple reservations

... some data aadd(aMultiplePrenotazioni,{nElemento,oreservation:type,dCheckIn,dCheckout,nInvoice} ) oreservation:Skip() ENDDO then calc the multiple reservations nContaMultipli:= 0 For n= 1 to Len(aMultiplePrenotazioni) If aMultiplePrenotazioni[n][1]==nElemento nContaMultipli+=1 ...
by Silvio.Falconi
Mon Jul 05, 2021 11:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: multiple reservations
Replies: 2
Views: 494

Re: Problem with date - I not understood

Silvio: I think that in the first case you are calculating "days" ie From 2021-06-19 to 2021-06-20 are two days but if you count "nights" it shoud be one night. My five cents. Regars here is a chalet and the owner sale umbrellas ...
by Silvio.Falconi
Sun Jun 20, 2021 4:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with date - I not understood
Replies: 4
Views: 656

Problem with date - I not understood

I have a reservation from 20.06.2021 to 14.08.2021 in a procedure that I have broken down by the interval of the months and I calculate the days for each month in this case the months of June, July and August are concerned https://i.postimg.cc/VLpnxq9n/agiorni.png to better ...
by Silvio.Falconi
Sun Jun 20, 2021 2:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with date - I not understood
Replies: 4
Views: 656
Next

Return to advanced search

cron