topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
sort Filename (Extension) | hi,
[quote="nageswaragunupudi":3awfaa1p]And wherever possible, it may be easier to leave the sorting business to xbrowse itself and xbrowse does a good job.[/quote:3awfaa1p]
thx for help
i´m sure it work under Fivewin but i use also HMG or Xbase++
so i always search Solution which i can use for all xBase-Dialect |
sort an array on line Resolved!! | can I sort an array is on xbrowse ?
sample :
AaDd(atemp,{strzero(n,4),; //0001
SP->id,; // "O"
SP->DESC,; //"ooooooo"
SP->SETTORE,; //"A"
nGiorni,; //"1"
nPriceTem... |
sort an array on line Resolved!! | Create xbrowse with AUTOSORT clause and click on the last header. |
sort an array on line Resolved!! | Sorry but i wish sort on idlistino is not on x browse |
sort an array on line Resolved!! | First sort the array
ASort( aTemp, , , { |x,y| x[ 8 ] < y[ 8 ] } )
Then build the XBrowse and [b:16n2mrw9]do not use AUTOSORT[/b:16n2mrw9]. |
sort an array on line Resolved!! | Sorry i make a mistake i have on array records having idlistino =1 and other =2 and i select with a combobox if 1 or 2 and i wish refrrsh the xbrowes showing only the idlistino =nselect |
sort an array on line Resolved!! | [code=fw:2za9bl0m]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br... |
sort an array on line Resolved!! | thanks .it was just what I was trying to do |
sort an array on line Resolved!! | Only I have a listini with two array (name,type)
type "Listino 1" ,"01" |
sort an array on line Resolved!! | [b:3i7tl5lz]I correct with [/b:3i7tl5lz]
@ 36,75 COMBOBOX cFilter ITEMS ArrTranspose( aListini )[ 1] SIZE 100,400 PIXEL OF oDlgTariffe;
ON CHANGE ( oBrwBase:aArrayData := FilterArray( aData, nFilterCol, cFilter ), ;
oBrwBase:GoTop(), oBrwBase:Refresh() )
[img:3i7tl5lz]https://i.pos... |
sort an array on line Resolved!! | If I made (idea)
[code=fw:3idf7xmp]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">static</span> <span style="color: #00C800;">function</span> FilterArray<span style="color: #000000;">(</span> aData, nFilterCol, cFilter, alistini <span style="color: #000000;">)</span><b... |
sort up/down xbrowse error function sort | on first column of xbrowse I have an black arrow to sort the dbf
[img:tp16gtev]https://i.postimg.cc/28W1PtJb/j.png[/img:tp16gtev]
[b:tp16gtev]initial run ok , them when I click on header it refresh the oBrw but not the nHeadBmpNo why ?[/b:tp16gtev]
[b:tp16gtev]look this sample [/b:tp16gtev]
... |
sound on key press | How I can insert a sound when I press a key and I use a Tget control ? |
sound on key press | #include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg
LOCAL oGet1, cVar1 := SPACE( 10 )
REQUEST HB_GT_GUI_DEFAULT // for tone usage
DEFINE DIALOG oDlg
@ 1 , 1 GET oGet1 VAR cVar1 OF oDlg
// oGet1:bKeyChar = { || tone(100,.1) }
oGet1:bKeyChar = { || messagebeep() }
ACTIVATE DIALOG oDl... |
sound on key press | Mr Marco,
REDEFINE GET oMss VAR cMss ID 130 MEMO OF oDlm
oMss:bKeyChar = { || messagebeep() }
[b:16xwwnvw]NOT RUN ![/b:16xwwnvw] |
sound on key press | Did you try ?
oMss:bKeyDown = { || messagebeep() } |
sound when click in button | HI.
I need insert one sound when user has clicked in button. like i do it?
thank´s |
sound when click in button | Hello,
Include [color=#FF0000:2mvcfyrz]SndPlaySound[/color:2mvcfyrz] in Your Button-Action.
@ 4, 2 BUTTON "Date-Test" size 50, 25 OF oDlg ;
ACTION ( SndPlaySound( "chord.wav", 0 ), ;
more actions ... )
But I noticed, even on a fast computer it takes some times, the wave-sound is played.
The sound is not played the s... |
sound when click in button | <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
Thank´s |
sound when click in button | What about using TONE(<nFrequency>, <nDuration>) instead of SndPlaySound(). It´s really faster, because no soundfile has to be loaded. |
source codes available ( pFTP ) | Hi all:
Sources are now available FTP program for a small fee.
Download here: [url] <!-- m --><a class="postlink" href="http://javierlloris.blogspot.com.es/p/programas-y-herramientas.html">http://javierlloris.blogspot.com.es/p/p ... entas.html</a><!-- m --> [/ url]
a greeting
JLL |
space and diskinfo | How cal this function ?
HB_FUNC (MEMINFO)
{
MEMORYSTATUS st;
GlobalMemoryStatus (&st);
hb_reta (4);
hb_stornl ((ULONG) st.dwMemoryLoad, -1, 1);
hb_stornl ((ULONG) st.dwTotalPhys, -1, 2);
hb_stornl ((ULONG) st.dwTotalVirtual, -1, 3);
hb_stornl ((ULONG) st.dwAvailVirtual, -1, 4);
}
HB_FUNC (DIS... |
space and diskinfo | Silvio,
Those functions return arrays.
The first one returns a 4 elements array, and the second one a two elements array. |
space and diskinfo | How I can show all the informations ? |
space and diskinfo | Silvio,
AEval( MemInfo(), { | n | MsgInfo( n ) } ) |
special Codeblock Syntax under Fivewin | hi,
i saw in some Code Syntax like this
[code=fw:2flscn25]<div class="fw" id="{CB}" style="font-family: monospace;"> <||<br /> <span style="color: #00C800;">local</span> oRect := oDlg: GetCliRect <span style="color: #000000;">(</span> <span style="color: #000000;">)</span><br /> oBar: nWidth := o... |
special Codeblock Syntax under Fivewin | Hi Mr. Jimmy,
They are named extended codeblocks
<!-- m --><a class="postlink" href="https://vivaclipper.wordpress.com/tag/codeblock/">https://vivaclipper.wordpress.com/tag/codeblock/</a><!-- m -->
This (extra) syntax too is correct for harbour:
[code=fw:37f3wr0g]<div class="fw" id="{CB}" style="font-family: monosp... |
special Codeblock Syntax under Fivewin | This is xHarbour style of extended codeblock
[code=fw:3q23vfmv]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><|oLbx|<br /> <span style="color: #00C800;">local</span> oRect := oDlg: GetCliRect <span style="color: #000000;">(</span> <span style="color: #000000;">)</span><br /> oBar: ... |
special Codeblock Syntax under Fivewin | Hi Hua,
[quote:1c1k96mb]Just remember that extended codeblock must have RETURN[/quote:1c1k96mb]
It's not required return clause. Return clause it's neccessary only for return value
[code=fw:1c1k96mb]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// Not neccessary return value... |
special Codeblock Syntax under Fivewin | hi,
thx all for Answer
[quote="hmpaquito":9zzc26uj]It's not required return clause. Return clause it's neccessary only for return value[/quote:9zzc26uj]
ah, that was what have confuse me |
special Codeblock Syntax under Fivewin | Dear Jimmy
This syntax for codeblock, RETURN is required
[code=fw:2dbgq4k6]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /> <span style="color: #00C800;">local</span> bBlock<br /> bBlock := <|| <br /> <span... |
special Codeblock Syntax under Fivewin | Estimado Cristóbal,
La siguiente, sin return, es una sintaxis válida, que dará NIL como resultado de la operación Eval( bBlock )
[code=fw:j606xbn8]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">local</span> bBlock<br /> bBlock := <||<br /> &nbs... |
special Codeblock Syntax under Fivewin | Estimadísimo Paquito
Yo es que soy un poco perfeccionista y como al no tener RETURN me da el siguiente mensaje ( tengo los warnings activados ) y como sabemos un codeblock es tratado internamente como si fuese una FUNCTION [b:lkuvdhwk]Anonymous[/b:lkuvdhwk]
[quote:lkuvdhwk]
D:\FWH\FWHTEAM\SAMPLES\testtoast.prg(17) [b:l... |
special Codeblock Syntax under Fivewin | Hola Cristóbal,
Pues sí. Debe ser como tu dices: Los warning mandan y definen la sintaxis correcta.
Así en "stricto sensu" hay que poner un return en los extended codeblocks
Gracias por la aclaración |
special Codeblock Syntax under Fivewin | [quote:28h1r87s]It's not required return clause. Return clause it's neccessary only for return value
[/quote:28h1r87s]
"Return" is not required with xHarbour.
"Return" is required with Harbour.
So it is always safe to use return <someval> or return nil.
Our program should with both with Harbour and xHarbour.
It is... |
special Codeblock Syntax under Fivewin | Thank you very much Mr. Rao for your extense y comprensive explication |
special characters in get box | Hello,
When I want to show a special character in a get, this does not show the right character. See example[code=fw:2uoopwli]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveMac.ch"</span><br /><br /><span style="color: #00C800;... |
special characters in get box | Rene,
The GETs look fine here:
[img:1532it13]https://bitbucket.org/fivetech/screenshots/downloads/Screen%20Shot%202016-09-07%20at%2009.35.15.png[/img:1532it13] |
special characters in get box | Rene,
Currently we are using the encoding NSUTF8StringEncoding to retrieve the string parameter:
NSString * hb_NSSTRING_par( int iParam )
{
return [ [ [ NSString alloc ] initWithCString: HB_ISCHAR( iParam ) ? hb_parc( iParam ) : "" encoding: NSUTF8StringEncoding ] autorelease ];
}
These are the possible encod... |
special characters in get box | This is the MsgInfo() source code:
HB_FUNC( MSGINFO )
{
NSString * msg, * title;
CocoaInit();
ValToChar( hb_param( 1, HB_IT_ANY ) );
msg = hb_NSSTRING_par( -1 );
if( [ msg length ] == 0 )
msg = @" " ;
if( hb_pcount() > 1 )
{
ValToChar( hb_param( 2, HB_IT_ANY ) );
tit... |
special characters in get box | Hello Antonio,
Thanks for the reply, but I get to see this on my screen:
[img:25lwal08]http://www.plantenkennis.com/downloads/Screenshot.png[/img:25lwal08]
Can/must I change the encoding somewhere?
Rene |
specific structure | how set a specific structure and call it into a function or
I must set this structure
typedef struct _gettextlengthex {;
DWORD flags;
UINT codepage;
} GETTEXTLENGTHEX |
specific structure | Is it to process a EM_GETTEXTLENGTHEX message ? |
specific structure | Silvio,
Try this:
MsgInfo( RELEN5( hWndRichEdit ) ) |
speed of browse | Hello,
I have browse where I show a table and some values of other tables. The main table is 8000 rec. When I click on a record I get a new window that shows the details of the record. When I scroll down the table and click on a record, the detail window takes a few seconds to open. When I close this window this also... |
speed of browse | Rene,
Please email me your PRGs so I can run your app here, thanks |
speek class | Sto provando la classe speeck di Cesar
se non l'avete posso postarla
io voorei modificarla in modo da poter * leggere* qualsiasi scritta
cioè se io clicco su un menu mi deve leggere il prompt di quel menu
come posso fare ? |
spell check with word activex | HI, someone already try use an way to use spell check with ms word, maybe using activex?
i need make spell check in memo , in portuguese-br , someone try this?
thanks |
spell check with word activex | I have not used it, but others here are using this spell checker with FWH.
<!-- m --><a class="postlink" href="http://www.wintertree-software.com/dev/ssce/windows/index.html#Catalog">http://www.wintertree-software.com/dev/ ... ml#Catalog</a><!-- m -->
It is US$399 and you can get a Brazilian dictionary.
James |
spell check with word activex | Friends:
Yes, I have a little function to use the ms-word spell checker, if it can help
I can post it.
Regards |
spell check with word activex | Armando, please... |
spell check with word activex | Friends:
Here is
This is the way to call the SpellCheck function
[code=fw:2ehjs8d5]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oPro:<span style="color: #000000;">DES</span> := SpellCheck<span style="color: #000000;">(</span>oPro:<span style="color: #000000;">DES</span><span style="color: #0000... |
spell check with word activex | HI Armando, very thanks, works very fine... <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> let me ask : if i want know if word is present in computer? maybe an function <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --... |
spell check with word activex | Norberto:
Oppps, I don't know <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: --> , perhaps somebody can help us, or Test and error .
Sorry |
spell check with word activex | [quote="norberto":1ejgwply]HI Armando, very thanks, works very fine... <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> let me ask : if i want know if word is present in computer? maybe an function <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" titl... |
spell check with word activex | you can test like this
[code=fw:3dzcmcs9]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /> <span style="color: #00C800;">TRY</span><br /> oWORD := CREATEOBJECT<span style="color: #000000;">(</span> <span style="color: #ff0000;">"word.Application"</span> <span st... |
spell check with word activex | Richard,
Please explain why you need two TRY/CATCHes?
Wouldn't something like this work?
James
[code=fw:3syvn32i]<div class="fw" id="{CB}" style="font-family: monospace;">isWord<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> <span style="color: #00C800;">local<... |
spell check with word activex | Hi, i use :
.....
TRY
oWord:=TOleAuto():New( "Word.Application" )
CATCH
Msginfo( "Word não instalado!!" )
Return(Texto)
END
....
and works fine.
why some people use toleauto and another createobject, is the same??
thanks |
spell check with word activex | James
This code has been in my application since quite a while and running ok
From my notes, Ole prompted error many times at first try , this is why i embedded try catch to solve this and it solved it at that time.
Maybe now , only one try/catch is enough ,
My purpose was just to show the way testing ms word's pr... |
spell check with word activex | Richard,
I wasn't being critical--I figured you had a reason and it seems you did. Even if two aren't needed always it is probably better to use them if there is a possibility of a false error.
Thanks for the sample.
James |
spell check with word activex | Hi,
Once the spell check is completed, I am getting a dialog with following messages:
"This file is in use by another application or user."
(C:\Documents and Settings\..\Normaldot)
and also getting
Save as dialog box.
How to avoid this.
Regards,
- Ramesh Babu P |
spell check with word activex | Hi everyone.
I'm using a dll that you only purchase once and is then distributable with your app. It works well and you don't need to have word installed on the computer. In the long (or even short) run it is less expensive than having Word on the workstation. It has very many functions and it might work just like ... |
spinner | Antonio
Do you plan to have spinners installed on fw ppc ?
They can be very handy to avoid typing numbers in several cases.
Tia
Richard |
spinner control | I try to use get with spinner but it make error
but
I found on Internet this possibility
HWND hwndList = CreateWindow(_T("listbox"), _T(""), WS_VISIBLE|LBS_NOINTEGRALHEIGHT|WS_CHILD|WS_TABSTOP|LBS_NOTIFY, x, y, width, height, m_hDlg, (HMENU)nControlId, g_hInst, NULL);
HWND hwndUpDown = CreateWindow(UPDOWN_CLASS,... |
splitter sample | Antonio,
I tried splitter test sample n. 3
and I have the sample problem
I wish when the use resize the wnd the vertical splitter must be moved
at left if the ownd is rresize on the left
at right if the ownd is resize on the right |
splitter sample | Please post some screenshots, thanks |
splitter sample | testspl3.prg
I resize the window to left
[img:9b8btzvs]http://www.eoeo.it/wp-content/uploads/2016/03/1.jpg[/img:9b8btzvs]
the vertical splitter must be moved to left
[img:9b8btzvs]http://www.eoeo.it/wp-content/uploads/2016/03/2.jpg[/img:9b8btzvs]
the vertical splitter should ... |
splitter sample | Silvio,
add to this sample the following :
( works in both directions )
...
...
ACTIVATE WINDOW oWnd ;
ON RESIZE ( oVSplit:AdjLeft(), oHSplit:AdjRight(), [color=#0000FF:1ytzef0e]ADJUST_POS(oWnd)[/color:1ytzef0e] )
return nil
// --------------------------
// DEFINE WINDOW oWnd FROM 1, 1 TO 400, [color=#FF0000:1ytzef... |
splitter sample | thanks Uwe,
it seems tio run ok
On Mt application I must change the position but it run . thanks |
splitter browse y outlook | Hola a todos del foro
Tengo una ventana mdi, y quiero que al lado derecho aparesca el outlook con opciones de gestion que ya lo hice, pongo un splitter a su costado, y al lado derecho quiero el twbrowse, pero no me sale el browse.
Que ma falta para hacer esto...
Salu2
Francis |
splitter browse y outlook | Busca FSDI, hace lo que tu quieres. Cuando lo encuentres le mandas un mensaje a José Luis Sanchez <!-- s;) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";)" title="Wink" /><!-- s;) -->
Saludos
Carlos |
sql 2 dbf | How I can converte a sql database into dbf ? |
sql 2 dbf | Silvio.
1.-create connection with database (mysql/mssql/firebird/postgreesql)
2.-create a structucture of dbf based in the structure of table sql.
3.-read the table sql record by record and insert in table dbf the fields of the recordset.
NOTE: you can use ADO for the read the data in sql.
sorry for my bad english.... |
sql 2 dbf | sorry but I not Know the structure of sql file
I have only this file xxx.sql and I must converte it on dbf |
sql 2 dbf | usually the sql file have the structure inside.
and have the sql statement insert into for each row in the table.
if you do not know the structura of the table, I doubt that a program can know this unless defined in the same sql.
this is a example for a sql from mysql:
note in file the code for delete the table if t... |
sql 2 dbf | Carlos:
I think Silvio is looking for a class/function like DIRECTORY() but for TABLES instead DBFs.
Silvio:
Search for ADOX in saint google.
Regards. |
sql 2 dbf | I CAN SEND YOU MY FILE IF YOU WANT TRY TO CONVERTE IT
i NOT kNOW THE STRUCTURE OF THIS FILE
A SCHOOL GIVE ME A FILE BIBLIO.SQL i MUST CONVERTE IT INTO DBF FILE BECUASE i ALLREADY MADE A BIBLIO APPLICATION ON 2001
IT I FOUND THE SOLUTION TO CONVERTE IT INTO DBF i CAN SAVE ALL RECORDS ON MY DBF FILE AND THIS SCHO... |
sql 2 dbf | Silvio, sendme your 'database.sql' backup, i will try it. |
sql 2 dbf | Silvio,
I can try, please end me the file sql. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
karlos.vargas at gmail.com
salu2
carlos vargas |
sql 2 dbf | Try a software name SQL Converter |
sql 2 dbf | carlos I sent you the file at donbxxxx.... email |
sql 2 dbf | carlos vargas,
According to your information, if i want to online read sql data into my FWH program for further processing, Must I use Advantage Database Server, can I use advantage local server (because it is free) or any other method.
Right now I am using SQL CONVERTER to convert particular table into CSV file and ... |
sql 2 dbf | Ready!
the procedure is easy.
1.-install mysql.
2.-SLQYog.
3.-Open SQLYog and open the mysql database.
4.-open you sql file, copy the content. an paste in the rigth windows in SQLYog.
5.-click rigth button mouse in the rigth windows in SQLYog and select run execute all query. (this procedure is similar to restore the... |
sql 2 dbf | thanks carlos |
sql 2 dbf | Silvio,
you can do it also from your app.
Hi Silvio,
if you edit your sql-file, you find the structure at the top with the index keys:
[code=fw:3ez05daf]<div class="fw" id="{CB}" style="font-family: monospace;">-- Table structure <span style="color: #00C800;">for</span> table `biblio`<br />-- <br /><br />CREATE TA... |
sql 2 dbf | Dear Mr.Stefan,
If I am not wrong, I understand that Mr.Silvio is having a .sql file, which actually is a sql dump file. (It has the table structure as well as the data in it). He needs to read the data from the .sql file and then transfer that data to a DBF file.
Mr.Silvio ?
Regards
Anser |
sql 2 dbf | Dear Anser,
yes, it is a dump from phpmysqladmin. He can also use this dump file to get the data, but I think it´s better, to get the data out of the original file, because he can also update the dbf, if new records have been added to the sql file. |
sql 2 dbf | Dear Mr.Stefan,
If Mr.Silvio has access to the database then what you said is the best option <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> , but I am not sure whether he has access to the database. Has not mentioned anything about that.
Regards
Anser |
sql con AZURE | Estimados
En este momento estoy tratando de conectarme a una base de datos en Microsoft azure, les agradeceré si me pueden ayudar como realizar la conexión, la cadena que me entrega Microsoft no funciona remplazándola directamente.
w_sql='Provider=sqloledb;Server=tcp:siscont.database.windows.net,1433;Initial Catalog... |
sql con AZURE | [url:16yg45am]https://groups.google.com/forum/#!topic/comp.lang.xharbour/vGiNFzL2xfw[/url:16yg45am] |
sql con AZURE | Marcelo,
mira si te sirven los siguientes enlaces
[url:376d42cx]https://azure.microsoft.com/en-us/blog/windows-azure-web-sites-how-application-strings-and-connection-strings-work/[/url:376d42cx]
[url:376d42cx]https://www.connectionstrings.com/sql-azure/[/url:376d42cx]
[url:376d42cx]https:... |
sql definitivamente | Completamente de acuerdo con los que proponen SQLAhora si no quieres complicar al usuario con la instalacion del servidory este lo va a usar en una sola pc tienes la version "empotrado"donde tu ejecutable gestiona los datos y no hay servidor.Ahora definitivamente la conexion mysql es mucho mas facil que la de msql ser... |
sql display: has someone already implemented? | sql display: has someone already implemented? |
sql server guardar y mostrar imagen | Hola gente, necesito ayuda como mostrar un campo "IMAGE" de una tabla sql server.
Lo guardo sin problema, pero no encuentro la forma de mostrar la imagen en jpg.
Saludos.
Jorge |
sql server guardar y mostrar imagen | Saving:
[code=fw:2wc5uzjb]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oRs:<span style="color: #000000;">Fields</span><span style="color: #000000;">(</span> <image_fieldname> <span style="color: #000000;">)</span>:<span style="color: #000000;">Value</span> := HB_STRTOHEX<span style="color: #0... |
sql server guardar y mostrar imagen | George
Are you trying to save an image or file to a Sql Table ?? and trying to reconstruct it back to its original file ?? I may have interpreted your question incorrectly .. however, This is how I store and retrieve a file from Sql Server ..
1) Use VarBinary(Max) field type
2 here is the code to save your file ( a... |
sql server guardar y mostrar imagen | Anyone can build and run this sample:
Here we connect to a free MSSQL server in the cloud provided by FWH for testing purposes.
[code=fw:3k41asrd]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> TestImageMSSQL<br /><br /> <span style="color: #00C800;">... |
sql server guardar y mostrar imagen | Two ways of creating the above table
METHOD-1
[code=fw:3d9fv9jr]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">TEXT</span> INTO cSql<br />CREATE TABLE TEST_JPG <span style="color: #000000;">(</span><br /> <span style="color: #0000ff;">ID</span>  ... |
sql server guardar y mostrar imagen | Alternative methods for inserting image (or any binary) data:
USING RECORDSET OBJECT:
Method-1: Longer code if you have patience to write
[code=fw:2z370blq]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oRs := FW_OpenRecordSet<span style="color: #000000;">(</span> oCn, cTable <span style="... |
sql server guardar y mostrar imagen | Hola, me da error HB_STRTOHEX no definida, que librería me falta?
Saludos
Jorge |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.