Search found 2963 matches: insert

Return to advanced search

Re: HarbourWave - leaked information

... was worried about creating his application in Windows (hotel management) none of us did the same behavior as Mr. Otto . instead now every time I insert a request, Mr. Otto arrives with a topic in the forum with the same subject but with viewweb and HTML the same thing is forbidden and also done ...
by Silvio.Falconi
Mon Jan 29, 2024 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HarbourWave - leaked information
Replies: 7
Views: 907

Re: erase files

Insert a msginfo() before you delete the files and check with "Resource Monitor" the "Assoiated Handles" of your file. Open the Start menu, type "Resource Monitor" and press Enter. Switch to the ...
by Otto
Thu Jan 25, 2024 7:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: erase files - Resolved!!
Replies: 20
Views: 1545

Re: Creating table with Trichedit

...   FWrite(oFile, "{\fonttbl{\f0 Arial;}}")     // Font table definition, Arial is at index 0    // Insert a paragraph    FWrite(oFile, c1+"\par")    // Insert a paragraph with specific font and color    ...
by Silvio.Falconi
Thu Jan 25, 2024 10:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1459

Re: Creating table with Trichedit

To insert a paragraph before the table in the RTF document, you can simply write the text before starting the table construction in the RTF code. In RTF, paragraphs are generally marked by the \par control word.    // Insert ...
by Silvio.Falconi
Thu Jan 25, 2024 8:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1459

Re: Creating table with Trichedit

To insert a paragraph before the table in the RTF document, you can simply write the text before starting the table construction in the RTF code. In RTF, paragraphs are generally marked by the \par control word.    // ...
by anserkk
Thu Jan 25, 2024 4:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1459

Re: Creating table with Trichedit

... "}")    // Close the file    FClose(oFile)    ? "RTF file created:", cFileNameRETURN Nice job!! I wish insert a row ( with two column) before of the 4 rows you inserted and write some texts Where I can found command as insert picture,fonts, colors ? I ...
by Silvio.Falconi
Wed Jan 24, 2024 1:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1459

Re: future of Rich Text Editor maybe time to start with WEBVIEW

Insert tables at runtime into the editor with Tinymce and WEBVIEW2

Image
by Otto
Tue Jan 23, 2024 5:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: future of Rich Text Editor maybe time to start with WEBVIEW
Replies: 19
Views: 1706

MySql vs Oracle

... se instale en la nube, de ahí mis dudas y preguntas, que diferencia hay entre el motor de DB MySql vs Oracle?, parece que los comandos (SELECT, INSERT, UPDATE etc.) son los mismos?, necesito adquirir una licencia de Oracle para desarrollador ?, mi experiencia en MySql puede ser suficiente para ...
by Armando
Tue Jan 23, 2024 4:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql vs Oracle
Replies: 33
Views: 1685

Creating table with Trichedit

Using InsertTable( nRows, nCols )method of Trichedit
How insert data info on each cells?

For a sample I have an array aschema is 3 rows with 10 columns
How create a table on Rtf with this array ?
by Silvio.Falconi
Mon Jan 22, 2024 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1459

HTML code in a TPanel class

... or deadlines with the ability to embed links to call for applications. I have done it, but it only runs on an HTML page, instead I would like to insert it into a TPanel because the TPanel is in the main window and is visible to all users on the network. So far, I have only taken a window as a ...
by Otto
Sat Jan 20, 2024 4:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTML code in a TPanel class
Replies: 9
Views: 1360

Re: I'm not asking for the moon...

... you could post the example including xbrowse(), so we can replicate the problem. But my focus is on a different approach now. Best regards, Otto I insert a test on Previous message
by Silvio.Falconi
Fri Jan 19, 2024 8:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: I'm not asking for the moon... Resolved!!
Replies: 24
Views: 2173

Re: Grabar imagen en tabla mysql

... PUBLIC PROGFEC:=APROG[1,3] PUBLIC PROGHRS:=APROG[1,4] * cFileG := StrToHex(MemoRead(cFILE)) * cCMDVAL :="" cCmdSql := "INSERT INTO PROGRAMA(TIPO,ARCHIVO,NOMBRE,FECHA,TAMA,HORA) VALUES( " cCMDVAL := cCMDVAL+"'"+cTIPO +"', " cCMDVAL := cCMDVAL+"'"+cFileG ...
by Marco Augusto
Fri Jan 19, 2024 1:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Grabar imagen en tabla mysql
Replies: 5
Views: 401

Re: Nages, 2 diferent Db's update

... "select * from table [where <cond>]" // returns array of values)oRemoteServer:Upsert( cTable, nil, aData ) In addition to INSERT and UPDATE, MySql provides UPSERT: To insert if the primary key is not found and update if the primary is found, We can do UPSERT using either ...
by nageswaragunupudi
Wed Jan 17, 2024 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Nages, 2 diferent Db's update
Replies: 2
Views: 724

Re: Problem with tget numeric

... store in the city and 4 codes are connected for each order because there are many types of bread and imagine for each shop the operator has to insert as many lines as the types of bread ordered, so the operation must be very fast and this operation is done every day now it is still done by ...
by Silvio.Falconi
Tue Jan 16, 2024 9:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1434

Nages, 2 diferent Db's update

Hi fivewinners I have 2 Mysql Db's, same structure, same name but in separate servers. Client needs to update or insert data from one server to another I did it like this FWCONNECT oSvr HOST "localhost" USER "userx" PASSWORD "passx" DB "xDb"FWCONNECT ...
by Adolfo
Tue Jan 16, 2024 1:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Nages, 2 diferent Db's update
Replies: 2
Views: 724
PreviousNext

Return to advanced search