topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
change title header of outlook2003 | How I can to modify the title header of outlook2003 of each agroup ?when I change record of xbrowse I want call this FUNCTION RefreshCont(oCont,cdbf) oCont:cTitle:="Cust "+tran((cdbf)->(OrdKeyNo()),'@E 999,999')+" / "+tran((cdbf)->(OrdKeyCount()),'@E 999,999') oCont:refresh() return NILoCont must be the hea... |
change title header of outlook2003 | Silvio,oOutLook2003:aGroups[ n ]:cPrompt = "text"oOutLook2003:aGroups[ n ]:Paint() |
change title header of outlook2003 | Application=========== Path and name: C:\work\errori\testoutlook3\test2003.Exe (32 bits) Size: 1,489,920 bytes Time from start: 0 hours 0 mins 2 secs Error occurred at: 08/02/08, 23:44:37 Error description: Error BASE/1004 Class: 'NIL' has no exported method: AGROUPS Args: [ 1] = U [code:1mdj8g69]... |
change title header of outlook2003 | Silvio,You have to previously initialize oOutLook2003. It is nil, thats why you get the error. |
change title header of outlook2003 | sorry but i not understand , i take your source sample: DEFINE OUTLOOK2003 oOutLook2003 OF oWndand oOutLook2003 is staticwhy not found it ?i only add a xbrowse to rightand then i want resize the xbrowse when i resize the main window. |
change title header of outlook2003 | Silvio,In FWH\samples\Test2003.prg add this line:[code:3v5f3zuq]
DEFINE OUTLOOK2003 oOutLook2003 OF oWnd ;
PROMPTS "Mail", "Calendar", "Contacts", "" ;
BITMAPS "..\bitmaps\mail.bmp", "..\bitmaps\calendar.bmp", "..\bitmaps\notes.bmp"
MsgInfo( ValType( ... |
change title header of outlook2003 | right and I made on function Show[b:h7fji6jx]LOCAL nPage := AScan( oOutLook:aGroups, { | o | o:lSelected } )
LOCAL nAllPages := Len (oOutLook:aGroups)[/b:h7fji6jx]FOR i := 1 TO nAllPages IIF (Valtype (aCtrl[i]) ="O",aCtrl[i]:Hide(), )NEXT nTop = oWnd:nHeight - ( Len(oOutLook:aGroups ) *166 )DO CASE....CASE nPage = 3 ... |
change title header of outlook2003 | Silvio,>oCont:= oOutLook2003:aGroups[ nPage ]:cPrompt oGrid:bChange := { || RefreshCont( oCont,"CUst") } >oCont is a string! You should do:oCont:= oOutLook2003:aGroups[ nPage ] |
change title header of outlook2003 | Antonio ,it run ok but I wanted show it on headder on top and not on menuI hope Uunderstand me |
change title header of outlook2003 | Silvio,No, sorry, I don't understand what you mean.Please post a screenshot, thanks |
change title header of outlook2003 | the Header I want modify must not be the down title "sala1" but on the top "contatti"Now I have another error look it please i need you help [img:2ce6zw3g]http://www.teramoest.it/public/errorwb.jpg[/img:2ce6zw3g]when I click on menu "sala1" I want see only the buttons but I see also the xbrowse ( cus... |
change title header of outlook2003 | Silvio,> the Header I want modify must not be the down title "sala1" but on the top "contatti" oOutLook2003:oHeader:cPrompt = "new Text"oOutLook2003:Paint() |
change title header of outlook2003 | Silvio,Please provide a small and self contained example so we can test it and help you, thanks |
change title header of outlook2003 | the sample is here<!-- w --><a class="postlink" href="http://www.teramoest.it/test_antonio_outlook3.rar">www.teramoest.it/test_antonio_outlook3.rar</a><!-- w -->I use two dbf ( customer and part they are in sample directory) and I use a panel to show many buttonswhen I open the application I must see the buttons but I... |
change tooltips..how? | I would like to change size and time tooltip appears. How would I do this? |
change tooltips..how? | Harvey,1. You can change the size of the tooltip specifying a larger text or a multiline text, i.e.: "This is a" + CRLF + "multiline tooltip" + CRLF + "test"Also, FWH now supports an array instead of a text for a tooltip, using this format:oControl:cToolTip := { cToolTipText, [cHeader, [nIcon]], [nForeColor], [nBackCol... |
change tooltips..how? | Thanks for the quick resoponse. I use "This is a" + CRLF + "multiline tooltip" + CRLF + "test" but there seems to be a limit on the amount of text. In 16bit never had a problem. Now the larger tooltips flash off and on until I make them smaller. I put one of my larger tips in tooltip.prg sample and same thing flashi... |
change tooltips..how? | Besides the previous msg info, in order to change the default tooltip width, this change is required in source\classes\window.prg:[code:126878em]
#define TTM_SETMAXTIPWIDTH (WM_USER + 24)
...
hWnd = CreateToolTip( ... )
SendMessage( hWnd, TTM_SETMAXTIPWIDTH, 0, <nNewLengt... |
change tooltips..how? | Harvey,Do you mean the tooltip width or the amount of text that it shows ?Whats the Len() of your used tooltip text ? |
change tooltips..how? | Harvey,2. In order to change the time that the tooltip is shows, similar changes in source\classes\window.prg are required:[code:1yltzbpk]
#define TTM_SETDELAYTIME (WM_USER + 3)
#define TTDT_AUTOPOP 2
...
hWnd = CreateToolTip( ... )
SendMessageDelay( hWnd, TTM_SETD... |
change value recordset | hi,
I would like to change a recordset value:
[code=fw:alndv7yx]<div class="fw" id="{CB}" style="font-family: monospace;"><br />...<br />oResi := FW_OpenRecordSet<span style="color: #000000;">(</span> oCn, tuple, <span style="color: #000000;">1</span> <span style="color: #000000;">)</span><br />...<br />oResi:<... |
change value recordset | is it impossible? |
change value recordset | It looks correct to me. But change comma with dot:
[code=fw:1052vn0v]<div class="fw" id="{CB}" style="font-family: monospace;">oResi:<span style="color: #000000;">Fields</span><span style="color: #000000;">(</span><span style="color: #ff0000;">"TOTQTA"</span><span style="color: #000000;">)</span>:<span style="... |
change value recordset | hi Enrico, doesn't work.
in line 588:
[code=fw:3gokib4p]<div class="fw" id="{CB}" style="font-family: monospace;">oResi:<span style="color: #000000;">Fields</span><span style="color: #000000;">(</span><span style="color: #ff0000;">"TOTQTA"</span><span style="color: #000000;">)</span>:<span style="color: #00000... |
change value recordset | What is the field type of TOTQTA?
EMG |
change value recordset | decimal(12, 3) |
change value recordset | You are assigning
542845.0000
Try with
542845.000
or change the field type to double or currency (or something similar that is supported by your database engine).
EMG |
change xImage on line | I have a get sample and a Ximage on a dialog
and I wish show anbother image when the get is modified
[b:3jm9qm5e]first problem[/b:3jm9qm5e] the image is a ng and is not transparent , why ?
[img:3jm9qm5e]https://i.postimg.cc/G3QvRLF3/d.png[/img:3jm9qm5e]
nRow+=2
@ nRow,180 XIMAGE oBmp ;
... |
change xbrowse footer menu | Hello everyone;
I dropped by the forum in need to change standard footer menu (sum, count, ave ...) for my own and saw messages about openAI writing harbour code so I tried it.
I asked: "write harbour code that modifies xbrowse footer popup menu"
Here is what I got:
[code=fw:3k1hhdkd]<div class="fw" id="{CB}" style... |
change xbrowse footer menu | There is a good example in
samples\testxbr3.prg
[url=https://imageshack.com/i/pm8R5OJEj:q9bqiezk][img:q9bqiezk]https://imagizer.imageshack.com/v2/xq90/922/8R5OJE.jpg[/img:q9bqiezk][/url:q9bqiezk] |
change xbrowse footer menu | Yes, Yes, Yes. Now that I look at it, it is clear.
I will probably tell Chatgpt what the real solution is. Maybe it will be able to help me later.
It is always good to hear from you, Mr. Rao.
Thank you. |
changed from BCC to MSVC 2015 | Hi ppl,
It is with great pleasure announce that exactly now I
do my first successfull compilation of my ERP app
with MSVC 2015 + Harbour + FWH.
The final EXE is so big 50MB compared to BCC 35MB,
but I see that MSVC is so fast !!!
I'm no found any hard job do that, except that I have a lot
of C code and some DLLs ... |
changed from BCC to MSVC 2015 | toninhofwi
You may want to consider a ( professional ) .Exe 'shrinker. I have used a product called 'Aspack'. In my case it takes a native .Exe from 8 mg to less than 2mg with NO penalty in execution and with a smaller size, the shrinked Executable loads MUCH FASTER over a Lan\Wan.
<!-- m --><a class="postlink" href... |
changed from BCC to MSVC 2015 | Thanks Rick for the hint.
I bought a copy and I'm waiting for download link.
Regards. |
changed from BCC to MSVC 2015 | Toninhofwi
Give [url:3ec28zvw]https://upx.github.io/[/url:3ec28zvw] a try... it's awesome.... and free |
changes for TDataRow | Hello,
Can we have please?
Method Delete(), to delete record()
Method Print( cTitle, FieldList, FieldPrompts ).
Thank you. |
changes for TDataRow | Up!. |
changes for TDataRow | Moises,
Rao is Class TDataRow developer so I will wait for his code, thanks |
changes for TDataRow | We can add Print() method.
Essentially TDataRow() is a wrapper for scatter/gather functionality for the purpose of editing a record. Advantage of using TDataRow is that it works the same way with any datasource and safe while saving the changes.
We never use scatter/gather functionality if we want to delete a record.... |
changes for TDataRow | For quickly printing a record from DataRow class.
oRec := TDataRow():New( ............ )
[code=fw:3l4djv9i]<div class="fw" id="{CB}" style="font-family: monospace;"><br />XBREPORT oXbr <span style="color: #0000ff;">OF</span> oWnd DATASOURCE oRec:<span style="color: #000000;">aData</span> COLUMNS <span style="color: #... |
changes for TDataRow | Mr. Nages,
Thank you. Also, indicating prompts/titles for the fields will be very interesting.
Also, about delete, as I load the record to modify it, it will be very useful to have a Delete() method, that makes the operation in DBF or ADO as it does with the append or modify. I don´t see a big issue but a very intere... |
changes of Harbour | Hi,The web of Harbour is not up to date. Where I can find the latest changes of Harbour?.<!-- m --><a class="postlink" href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/harbour-project/harbour/ChangeLog?rev=HEAD&content-type=text/vnd.viewcvs-markup">http://cvs.sourceforge.net/cgi-bin/view ... cvs-markup</a><!-- m --... |
changes of Harbour | Moises,You can review Harbour current changelog from sourceforge Harbour files:<!-- m --><a class="postlink" href="http://harbour-project.svn.sourceforge.net/viewvc/harbour-project/trunk/harbour/ChangeLog?view=log">http://harbour-project.svn.sourceforge. ... g?view=log</a><!-- m --> |
changing color in xBrowse | how do i change the color of highlighted parts in xBrowse?
[img:9oyxp42v]http://www.smartprint.co.rs/slika/xBrowse.png[/img:9oyxp42v] |
changing color in xBrowse | hi,
[quote="mtajkov":1wf0ryao]how do i change the color of highlighted parts in xBrowse? [/quote:1wf0ryao]
about your Question :
you can "switch OFF" that Column when use
[code=fw:1wf0ryao]<div class="fw" id="{CB}" style="font-family: monospace;"> lRecordSelector := .F.</div>[/code:1wf0ryao]
as "Selector" is in 1st ... |
changing color in xBrowse | bClrStd, bClrSelFocus |
changing color in xBrowse | [code=fw:2xs1xu0p]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">nRecSelColor</span> := RGB<span style="color: #000000;">(</span> <span style="color: #000000;">255</span>, <span style="color: #000000;">255</span>, <span style="color: #000000;">255</span> <span sty... |
changing data base on the fly. | I have a dialog with 2 browses (using xbrowse) each displaying different dbfs. I push a button and it should change one of the browses to another data base. Works great with tcbrowse in my 16 bit app. Cn't get to work in xbrowse. All I do with tcbrowse is change the alias and point the #translate to the new alias.. Wo... |
changing header in bowse | Hello Antonio,
Can I change the headers of a browse programmaticaly? I have a browse with headers {"Header1", "Header2", ''Header3","Header4"} and in the program the user can rename this headers like {"Column1", "Column2".....}
Also a user can change the order of the columns by dragging them with the mouse. Can I sa... |
character high and witdh | I am a non professionnal programmer in FWH from source code
Can anyone tell me how I can make bigger the characters displayed within the windows. The characters to print are no problem. |
character high and witdh | welcome to this forum
you have to define the font first and delete the object font afterwards
DEFINE FONT AFONT NAME "Tahoma" SIZE 0,-14 // this is a sample
@ 200,05 GET xxx VAR yyyy OF www PIXEL SIZE 90,30 COLOR CLR_HBLUE,CLR_WHITE FONT afont
You can add a font to every control (get, say etc...)
after activat... |
character high and witdh | Thank you Richard, It works very good for says and gets but how can I do work it for listbox browses? |
character high and witdh | DEFINE FONT oFONT NAME "Tahoma" SIZE 0,-14 // this is a sample
@ 1,1 LISTBOX ... FONT oFont
Regards,
James |
character high and witdh | many thanks to James Bott
best regards and a happy New Year
José |
chat open Ai questions ( currency rates ) | Someone asked me to download the exchange rates for various currencies online and therefore, not knowing how to do it, I asked OpenAi
I asked OpenAi this question "can you make me a function in Harbour/ clipper language that takes the currency rates from the internet without using the access of Open Exchange Rates but... |
chat open Ai questions ( currency rates ) | [b:iv08lg36]a further request using the API of the bank of Italy and this was the answer[/b:iv08lg36]
The Bank of Italy offers an exchange rate access service through the REST API available at the address <!-- m --><a class="postlink" href="https://tassidicambio.bancaditalia.it/terzevalute-wf-web/rest/v1.0">https://ta... |
chat open Ai questions ( currency rates ) | Silvio,
this is working for me:
[code=fw:1vw02bzr]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /> <br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">(<... |
chat open Ai questions ( currency rates ) | [img:1fxgwf4o]https://i.postimg.cc/qvBM9Cxn/f.png[/img:1fxgwf4o]
[code=fw:1fxgwf4o]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span style="color: #00C800;">Function</span> main<span style... |
chat open Ai questions ( currency rates ) | [quote="Otto":3amqsr8w]Silvio, you can use another STRTRAN.
cText := StrTran(cText, '"', '' )
Regards,
Otto
[code=fw:3amqsr8w]<div class="fw" id="{CB}" style="font-family: monospace;"><br />aShow := <span style="color: #000000;">{</span><span style="color: #000000;">}</span><br /> cTe... |
chat open Ai questions ( currency rates ) | Silvio, you can use another STRTRAN.
cText := StrTran(cText, '"', '' )
Regards,
Otto
[code=fw:l6ycnw7f]<div class="fw" id="{CB}" style="font-family: monospace;"><br />aShow := <span style="color: #000000;">{</span><span style="color: #000000;">}</span><br /> ... |
chatGPT - the best AI chat available right now | [url:3a8xjuwh]https://chat.openai.com/[/url:3a8xjuwh]
Too much requests are making it unavailable sometimes, but surely in the next days it will be enforced |
chatGPT extension for Google | [url:tws0tiqx]https://chrome.google.com/webstore/detail/chatgpt-for-google/jgjaeacdkonaoafenlfkkkmbaopkbilf[/url:tws0tiqx] |
chatGPT writes and executes Harbour code !!! | [url:2asakk1f]https://chat.openai.com/chat[/url:2asakk1f]
And not only writes it and fixes it, if required, but also is able to execute the code and let you know the results...
[code=fw:2asakk1f]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span st... |
chatGPT writes and executes Harbour code !!! | it also translates code from one language to another...
Wow <!-- s:-D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":-D" title="Very Happy" /><!-- s:-D -->
First I asked for this:
> write a C code to calculate the planets positions given a date
after getting the result I told it:
> translate the above code to Ha... |
chatGPT writes and executes Harbour code !!! | Connecting FiveWin / xHarbour with OpenAI API <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
[img:14br6lyp]https://imagizer.imageshack.com/img924/2139/lWXKSS.jpg[/img:14br6lyp]
[code=fw:14br6lyp]<div class="fw" id="{CB}" style="font-family: monospac... |
chatGPT writes and executes Harbour code !!! | Good Afternoon Carlos Gallego, how do I get a key (password) to test your beautiful example? Thanks.
{
"error": {
"message": "You didn't provide an API key. You need to provide your API key in an Authorization header using Bearer auth (i.e. Authorization: Bearer YOUR_KEY), or as the password field (with blank ... |
chatGPT writes and executes Harbour code !!! | Hi João,
You must register in [url:1unsll8k]https://openai.com/api/[/url:1unsll8k].
Next, you can read [url:1unsll8k]https://beta.openai.com/docs/api-reference/introduction[/url:1unsll8k] in order to generate your own token and how to use the Api.
Best regards, |
chatGPT writes and executes Harbour code !!! | Dear Antonio,
I tried to create "keywords" from texts using one of the examples.
The results are good.
I would be interested in the costs.
If I understand it correctly, one page (letter-size) would cost about 1 €.
Can that be right?
Best regards,
Otto |
chatGPT writes and executes Harbour code !!! | Dear Otto,
good morning
I am subscribed to chatGPT (previously I was using davinci 2 from OpenAI too) and up to now, they have not asked me for any money <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
chatGPT writes and executes Harbour code !!! | Dear Antonio,
I made several requests to OpenAI and then the message came that my daily tokens were used up.
I will try chatGPT.
Can I make the requests from FIVEWIN (webview2) to chatGPT?
Best regards,
Otto |
chatGPT writes and executes Harbour code !!! | Dear Otto,
> Can I make the requests from FIVEWIN (webview2) to chatGPT?
Yes, Carlos has posted in this same thread the FWH code to do it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
chatGPT writes and executes Harbour code !!! | Dear Antonio,
how is the link to chatGPT .
I always get results from Google for OpenAI.
Thank you in advance
Otto |
chatGPT writes and executes Harbour code !!! | Dear Otto,
[url:2ql3fzmu]https://chat.openai.com/chat[/url:2ql3fzmu] |
chatGPT writes and executes Harbour code !!! | Antonio,
Incredible!!!!
I ask
(Italian)
[b:3kz5k8iz]Mi puoi mostrare il codice di un programma scritto in linguaggio Harbour che crea un array di 3 numeri dal 1 al 90 dove la somma è uguale alla distanza ciclometrica ? [/b:3kz5k8iz]
(Espanol)
¿Me puede mostrar el código de un programa escrito en lenguaje Harbour qu... |
chatGPT writes and executes Harbour code !!! | Another question
( Italian)
[code=fw:117f60f8]<div class="fw" id="{CB}" style="font-family: monospace;">Mi puoi mostrare il codice di un programma scritto in linguaggio Harbour che combina <span style="color: #000000;">10</span> numeri in ambi,terzine,quartine,cinquine,sestine,ottine,novine e decine con la possibili... |
chatGPT writes and executes Harbour code !!! | Yo queria ser mas mala, sinceramente queria joderlo para volverlo loco y en cambio el gano
I wanted to be meaner, honestly I wanted to screw him to drive him crazy and instead he won
esta vez le pregunte....
[code=fw:5mx8st4v]<div class="fw" id="{CB}" style="font-family: monospace;">¿Me puede mostrar el código de un ... |
chatGPT writes and executes Harbour code !!! | [b:d8w16lv0][size=200:d8w16lv0]la funcion generada no funciona aqui es el truco!!![/size:d8w16lv0][/b:d8w16lv0] |
chatGPT writes and executes Harbour code !!! | [b:1ndk68cb]aCombinaciones[nRow, nCol] = (nIndex - 1) MOD 90 + 1 ?????[/b:1ndk68cb]
How I can modify this ? what mean "[b:1ndk68cb]MOD[/b:1ndk68cb]" ?
the function generated
[code=fw:1ndk68cb]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> Main<span style="c... |
chatGPT writes and executes Harbour code !!! | Dear Silvio,
If you want to become more impressed, ask chatGPT to provide you the result of the code it gives you <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
In Harbour, if I remember properly, you use % for MOD
? 5 % 2 |
chatGPT writes and executes Harbour code !!! | Antonio,
I made many tries but none run ok
I ask
[b:217725hn]Can you show me the code of a program written in Harbour language which creates an array of numbers from 1 to 90, without repetition, in an array formed by three numbers, which respect 4 possibilities i.e. the cyclometric sum, the cyclometric distance, the... |
chatGPT writes and executes Harbour code !!! | Dear Silvio,
You can tell chatGPT about its mistakes in its code and it will fix the mistakes
Just let it know that it is failing and why if possible |
chatGPT writes and executes Harbour code !!! | asked : Can you show me the code of a program written in C++ language to draw a christmas tree in bmp format
SomeOne can try this ? <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" />... |
chatGPT writes and executes Harbour code !!! | chatGPT is amazing! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[url:1hf9z9qj]https://chat.openai.com/chat[/url:1hf9z9qj] |
chatGPT writes and executes Harbour code !!! | Dear Silvio,
For images better use Dall-e [url:26v4psxt]https://playgrounds.ai/models/dalle-mini[/url:26v4psxt]
[quote:26v4psxt]a lovely christmas tree close to a Harbour where boats can be seen, full of snow and lovely lights in the sunset[/quote:26v4psxt]
[url:26v4psxt]https://github.com/FiveTechSo... |
chatGPT writes and executes Harbour code !!! | Dear friends,
Here you can see how to create a webform with OpenAI.
The IDs are assigned automatically by OpenAI.
We can use the Form with mod harbour and all is working.
[url:qwetrd02]https://mybergland.com/fwforum/openui.mp4[/url:qwetrd02]
Best regards,
Otto |
chatGPT writes and executes Harbour code !!! | [quote="Antonio Linares":3ee7pi88]Dear Silvio,
For images better use Dall-e [url:3ee7pi88]https://playgrounds.ai/models/dalle-mini[/url:3ee7pi88]
[quote:3ee7pi88]a lovely christmas tree close to a Harbour where boats can be seen, full of snow and lovely lights in the sunset[/quote:3ee7pi88]
[/quote:3ee7pi88]... |
chatGPT writes and executes Harbour code !!! | Dear Antonio,
I reformulated my questions in chat and this evening it gave me this function
i told him to show me the result and the chat gave me the result i wanted but when i tried the function
I compiled it and it gives me an empty array why ?
this is the test
[code=fw:2hjwvoq2]<div class="fw" id="{CB}" style="fo... |
chatGPT writes and executes Harbour code !!! | Dear Silvio,
Please a MsgInfo() abve the call to AAdd() and check if the condition is working |
chatGPT writes and executes Harbour code !!! | [quote="Antonio Linares":3dreb9hq]Dear Silvio,
Please a MsgInfo() abve the call to AAdd() and check if the condition is working[/quote:3dreb9hq]
I made it
the procedure not working on "If" |
chatGPT writes and executes Harbour code !!! | [quote="Antonio Linares":eui1m3c0]Dear Silvio,
Please a MsgInfo() abve the call to AAdd() and check if the condition is working[/quote:eui1m3c0]
Antonio ,
this afternoon I've always been in the chat ([url:eui1m3c0]https://chat.openai.com/chat[/url:eui1m3c0]) and in the end I managed to find a solution fo... |
chatGPT writes and executes Harbour code !!! | hi Silvio,
your Function CalcoloDistanza(n1, n2, n3) have 3 x Parameter
Question : are these 3 Parameter point of a Triangle <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> |
chatGPT writes and executes Harbour code !!! | [quote="Jimmy":25yyz2g7]hi Silvio,
your Function CalcoloDistanza(n1, n2, n3) have 3 x Parameter
Question : are these 3 Parameter point of a Triangle <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->[/quote:25yyz2g7]
No i must make an Array with 3element |
chatGPT writes and executes Harbour code !!! | hi Silvio,
[quote="Silvio.Falconi":3h8u4sd0]No i must make an Array with 3element[/quote:3h8u4sd0]
i´m just asking as it remind me of Problem when work with "Delaunay-Triangulierung" |
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
[code=fw:5atm5x2j]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C80... |
chatGPT writes and executes Harbour code !!! | If I made
[code=fw:mdshnf74]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">FUNCTION</span> distanza_matematica<span style="color: #000000;">(</span>nvalore<span style="color: #000000;">)</span><br /> <span style="color: #00C800;">local</span> aTmp := <span... |
chatGPT writes and executes Harbour code !!! | If I made ( load the triplets up to 10 instead 90)
[code=fw:3gmn53jn]<div class="fw" id="{CB}" style="font-family: monospace;"> <br /><span style="color: #00C800;">FUNCTION</span> distanza_matematica<span style="color: #000000;">(</span>nvalore<span style="color: #000000;">)</span><br /> <span style="co... |
chatGPT writes and executes Harbour code !!! | ask ChatGPT
[code=fw:gvn2ai2x]<div class="fw" id="{CB}" style="font-family: monospace;">use <span style="color: #000000;">100</span> <span style="color: #0000ff;">of</span> those listed Keywords <span style="color: #00C800;">for</span> a Christmas Story</div>[/code:gvn2ai2x]
Answer from ChatGPT
[quote:gvn2ai2x]Here is ... |
chatGPT writes and executes Harbour code !!! | Amazing! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
chatSonic - Even better than chatGPT ? | [url:3v7h3es5]https://chat.writesonic.com[/url:3v7h3es5] |
checar si esta instalado el FlashPlayer en el equipo... | Hola a todos
Existe alguna manera de validar si esta instalado el FlashPlayer en el equipo al momento de iniciar la aplicacion ?? y en caso que no este, poder hacer algun proceso para instalarlo, ya sea desde archivo o por conexion a internet.
Esto me ha pasado con clientes que tienen w2000 o w2003 server.
Muchas ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.