topic
stringlengths
1
63
text
stringlengths
1
577k
clausole When...Hide a size of Dialog - strange - RESOLVED
Silvio, please ADD: [code=fw:1h5afpyn]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp; &nbsp; &nbsp; <!-- Windows <span style="color: #000000;">10</span> --><br />&nbsp; &nbsp; &nbsp; &nbsp; <supportedOS <span style="color: #0000ff;">Id</span>=<span style="color: #ff0000;">"{8e0f7a12-bfb3-...
clausole When...Hide a size of Dialog - strange - RESOLVED
Dear Silvio, [url:mciz12iy]https&#58;//learn&#46;microsoft&#46;com/en-us/answers/questions/490947/windows-11-os-id&#46;html[/url:mciz12iy] Regards, saludos.
clausole When...Hide a size of Dialog - strange - RESOLVED
[b:8fhxm6q1]FOUND THE PROBLEM [/b:8fhxm6q1] DEFINE DIALOG oDlg ; SIZE nWidth, nHeight PIXEL ; TITLE cTitle ; COLOR CLR_BLACK,CLR_WHITE instead of DEFINE DIALOG oDlg ; SIZE nWidth, nHeight PIXEL ; TITLE cTitle ; COLOR CLR_BLACK,CLR_WHITE [b:8fhxm6q1]TRANSPARENT[/b:8fhxm6...
clausole When...Hide a size of Dialog - strange - RESOLVED
Now run ok [img:18gt9hz5]https&#58;//i&#46;postimg&#46;cc/x1VkLGbw/NOW-RUN&#46;png[/img:18gt9hz5]
clausole When...Hide a size of Dialog - strange - RESOLVED
Dear Silvio, Congratulations. Even so, please test with this MANIFEST model using COLORS in the controls, please. Estimado Silvio, Felicitaciones. Aun así, prueba con este modelo MANIFEST usando COLORES en los controles, por favor. WINDOWS10.MANIFEST [code=fw:1425r2sq]<div class="fw" id="{CB}" style="font-family: m...
clausole When...Hide a size of Dialog - strange - RESOLVED
Dear Silvio, complete download using WINDOWS10.MANIFEST. Test please. Estimado Silvio, descarga completa usando WINDOWS10.MANIFEST. prueba por favor. Link: [url:15vnxsbv]https&#58;//mega&#46;nz/file/cMkFwAQa#km42FPaVgu3ko93BuYTsdX9aJFtxkyWVGPmsQ4aSd38[/url:15vnxsbv] Gracias, thanks. Regards, saludos.
clausula transparent urllink no funciona
Buenas tardes para todos Como dice el encabezado parece que la clausula TRANSPARENT del control urlink no funciona correctamente, lo tengo definido en un dialogo el cual tiene un brush, pero se ve blanco. [img:2wbk1omz]https&#58;//www&#46;hymplus&#46;com/forofw/URLINK&#46;png[/img:2wbk1omz] [code=fw:2wbk1omz]<div cl...
clausula transparent urllink no funciona
Leandro, desde la versión FWH17.01 que no funciona. Puede usar BRUSH. Mas no TRANSPARENT en el DIALOG. Saludos.
clear IMAGE
Hello, I want to set a button (ID 102) to clear the Image: [code=fw:18lgnizq]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">IMAGE</span> &nbsp;oBmpFoto1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0000ff;...
clear IMAGE
I had the same problem in my imaging product. I got around it by creating a blank image "blank,jpg" and using it when there is no image wanted.
clear IMAGE
Lucas Here is a snipit of code I use for Images with some help and advice from our good friend Uwe. Have a look at how the image is defined with oImage and bPainted then deleted with the function DelImage() Rick Lipkin [code=fw:xscojx5j]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="co...
clear IMAGE
Mr Lucas Let me try to make it simple for you. #1. If you want to change the image with a new image file : ACTION ( oData:foto := <newfilename>, oImage:LoadBmp( oData:foto ) ) #2. If you want to clear image ACTION ( oData:foto := "", ClearImage( oImage ) ) I shall give you a function to ClearImage [co...
clear IMAGE
Lucas; Try this oBmpFoto1:LoadImage("nada")
clear IMAGE
[quote="elvira":1cy2g8c2]Lucas; Try this oBmpFoto1:LoadImage("nada")[/quote:1cy2g8c2] This also works. Giving a non-empty name, which is not an existing image file also works. This is a work around.
clear IMAGE
From FWH 13.07, we can use oImg:Clear()
clear SAY? how?
Hello, How I make to clean some SAYS in a DIALOG? I am making this: @ 10,20 SAY OSAY VAR ' MY TEXT ' OF ODLG UPDATE . . . ODLG:UPDATE() This command is cleaning the GETs but the SAYs is not cleaning. Many thanks
clear SAY? how?
[quote="syda":3g7p0eys]Hello, How I make to clean some SAYS in a DIALOG? I am making this: @ 10,20 SAY OSAY VAR ' MY TEXT ' OF ODLG UPDATE . . . ODLG:UPDATE() This command is cleaning the GETs but the SAYs is not cleaning. Many thanks[/quote:3g7p0eys] Yo lo hago de l siguiente mane...
clear SAY? how?
@ 10,20 SAY oSay PROMPT "Mi texto" OF oDlg UPDATE oSay:SetText( "" )
clear tImage
Hi all !I created image oIm:=tImage():New()oIm:LoadBmp(cFile) I want delete BMP from oIm. How do it ?
clear tImage
Natter,if you want to change the image just load load a new oneoIM:SetBmp(cResName) or oIM:ReLoad( cResName, cBmpFile )if you want to delete the bmp you can destroy the object, just write oIM := nil or you try to load an unexisting image (not tested)
clear tImage
... delete the bmp you can destroy the object, just write oIM := nil or you try to load an unexisting image (not tested)"I do it. It's not work
clear tImage
try this:oIm:hbitmap := 0oIm:Refresh()Ralph
clear tImage
It's not work
clear tImage
[quote="Natter":4786jswb]It's not work[/quote:4786jswb]May be:[code:4786jswb]PalBmpFree&#40; oIm&#58;hBitMap, oIm&#58;hPalette &#41;[/code:4786jswb]Regards.Manuel Mercado.
clear tImage
This is a sample:[code:3elmakxn]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL oDlg, oImg DEFINE DIALOG oDlg; SIZE 700, 500 @ 1, 1 IMAGE oImg; FILE "SFONDO&#46;JPG"; SIZE 200, 200; ADJUST @ 0, 1 BUTTON "Save"; ACTION MSGINFO&#40; oI...
clear tImage
It looks like the TImage class needs an End() method.James
clear tImage
[quote="James Bott":3a94xwjj]It looks like the TImage class needs an End() method.[/quote:3a94xwjj]Hi James:It has. TImage is a TBitmap subclass, then inherits Destroy Method.Best regards.Manuel Mercado
clear tImage
Thank everybody !@ 0, 25 BUTTON "Clear"; ACTION oImg:hBitmap := 0, ; oImg:cBmpFile := NIL,; oImg:Refresh() ) It work right !
clear tImage
[quote:2ztgfdbs]It has. TImage is a TBitmap subclass, then inherits Destroy Method. [/quote:2ztgfdbs]It is not clear if we should call the Destroy() method or the End() method. I see that TBitmap inherits from TControl which inherits from TWindow, yet I do not see the Destroy() method being called by any of those class...
clear tImage
Natter,Try calling oImg:End() or oImg:Destroy() to see if one of those also works.James
clear tImage
1) calling oImg:End() - this method deleted control2) calling oImg:Destroy() - this method not work right.
clear tImage
[quote="Natter":1utfjt0o]Thank everybody ! @ 0, 25 BUTTON "Clear"; ACTION oImg:hBitmap := 0, ; oImg:cBmpFile := NIL,; oImg:Refresh() ) It work right ![/quote:1utfjt0o]It's not enough. Please use what I put in my sample if you don't want to have resource ...
clear the Clipboard
How to clear the Clipboard ( "Clipboard") of winxp, I am using __KEYBOARD (CHR (300)), to copy the screen, but when the Clipboard has no more space, the __KEYBOARD (CHR (300)) to working.
clear the Clipboard
Please review fwh\samples\TestClip.prg
clear the Clipboard
Antonio, if I open the area of transfer after using oClp:Clear(), this clean, but after a while the app not save the screen, this message: [b:3arpaf7e]Shut one or more application to free up more memory and try again.[/b:3arpaf7e]But if you leave the app, and return back to work.[code:3arpaf7e] DEFINE ICON oIcon F...
clear the Clipboard
Whats the source code for SalvaTela() ?
clear the Clipboard
[code:1kbx2yj2]static function SalvaTela&#40;cFileName,oIcon&#41; **************************************** LOCAL oTClip, hBitmap, fBit, Result &#58;= &#46;f&#46; LOCAL oBmpImage Default cFileName &#58;= "Tela&#46;JPG" cFileName &#58;= AllTrim&#40;cFileName&#41; if AT&#40;'&#46;jpg',lower&#40;cFilename&#41;...
clear the Clipboard
You have to release the bitmap and the dib, thats why you are consuming your sistem memory![code:3t0qkyxw] if Result fBit&#58;=dibfrombitmap&#40;hBitmap&#41; DeleteObject&#40; hBitmap &#41; SysWait&#40;&#46;1&#41; dibwrite&#40;"Tela&#46;BMP",fBit&#41; GlobalFree&#40; fBit &#4...
clear the Clipboard
Olá Antonio,No exemplo abaixo quando clico em "Salvar" a função "FISaveImg" sempre me retorna falso e o arquivo "TELA.JPG" é gerado com tamanho 0, porque ?[code:26m99243] #include "fivewin&#46;ch" ************* function Main ************* local oDlg, oIco, cTest &#58;= "Hello world! ", oClp DEFINE ICON oIco ...
clear the Clipboard
Rossine,Has comprobado que Tela.bmp esté correcto ?
clear the Clipboard
Antonio,É gerado o arquivo TELA.BMP no tamanho de 1.920.054, mas não consigo abrí-lo com o ms-paint (paint). O paint me retorna a seguinte mensagem:"O Paint não pode ler este arquivo. Este não é um arquivo de bitmap válido ou não há suporte para o formato atualmente."Saludos,Rossine.
clear the Clipboard
Rossine,has comprobado que despues de hacer:__KEYBOARD(CHR(300))haya una copia correcta de la imagen en el clipboard ?Por lo que comentas parece que el bitmap esta corrupto...
clear the Clipboard
Antonio,[quote:1e8ljld8] has comprobado que despues de hacer: __KEYBOARD(CHR(300)) haya una copia correcta de la imagen en el clipboard ? [/quote:1e8ljld8]Sim, após: __KEYBOARD(CHR(300)) ... executei o "PAINT" e colei a imagem que estava no clipboard.Este exemplo roda bem aí com você ?Saludos,
clear the Clipboard
[quote="Rossine":231vord4]Antonio, [quote:231vord4] has comprobado que despues de hacer: __KEYBOARD(CHR(300)) haya una copia correcta de la imagen en el clipboard ? [/quote:231vord4][/quote:231vord4]Sim, após: __KEYBOARD(CHR(300)) ... executei o "PAINT" e colei a imagem que estava no clipboard.Baixe o arquivo TELA...
clear the Clipboard
Antonio,[quote:e3npfpn8] has comprobado que despues de hacer: __KEYBOARD(CHR(300)) haya una copia correcta de la imagen en el clipboard ? [/quote:e3npfpn8]Sim, após: __KEYBOARD(CHR(300)) ... executei o "PAINT" e colei a imagem que estava no clipboard normalmente.Baixe o arquivo TELA.BMP aqui: [url:e3npfpn8]http&#58...
clear the Clipboard
Olá,É possível fazer isto funcionar ? <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> Gracias,Rossine.
clearing of archives
In a conversion procedure I have to clear all the archives and then populate them during the conversion. The archives were all opened with Tdatabase and therefore in share Archives are indexed with the! Deleted () clause I don't know how to do the zeroing of archives and the dbpack since it cannot be done in Tdatabase ...
clearing of archives
Are the new archives also changed in structures ? ntx to cdx ? or also the same ?
clearing of archives
The application that I am putting in place serves to make the substitutions of teachers every morning, I am changing it because we have decided to transform it into a network with user management. Initially to use the procedure it was necessary to insert the data in all the archives (teachers, classes, classrooms, le...
clearing of archives
I would concider Make a conversion folder (for putting temporary dbf) from the program folder copy the needed dbf's with the copy structure command to conversion folder (dbf's will be empty but have all fields) fill the dbf in the conversion folder and generate the index file's see if you have all users logged out an...
clearing of archives
hi, i do create DBF / Index if not exist ... you can open a DBF EXCLUSIVE when NO User is Connect ... than you can Ferase() it to find out "who" is Connect to DBF is another Question
clearing of archives
[quote:cv61jrjz]I don't know how to do the zeroing of archives and the dbpack since it cannot be done in Tdatabase [/quote:cv61jrjz] if the table is open exclusively, oDbf:Zap() oDbf:Pack()
click a area of Tpanel control ( Creating a Piano)
I'm trying to create a small piano and I have this ( made with Tpanel control ) [img:20zontc1]http&#58;//www&#46;eoeo&#46;it/wp-content/uploads/2014/12/key&#46;jpg[/img:20zontc1] the problem... when I click the first tPanel white ( first white key) control it sound the note C when I click the first tPanel black...
click a area of Tpanel control ( Creating a Piano)
Silvio, You could check when the mouse is over the black key and disable the white ones
click a area of Tpanel control ( Creating a Piano)
where i can see a sample for make it ?
click a area of Tpanel control ( Creating a Piano)
Silvio, Try this: oBlackPanel:bMMoved = { | nRow, nCol | oWhitePanel:Disable() } If that works, next we will see how to enable an array of oWhitePanels again
click a area of Tpanel control ( Creating a Piano)
no ..not work good... this sample : [code=fw:ajdgk2r0]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"constant.ch"</span><br...
click a area of Tpanel control ( Creating a Piano)
Silvio No entiendo lo que quieres decir Esto funciona bien para mi I do not understand what you mean This works fine for me [code=fw:1aie8qvs]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><span...
click a area of Tpanel control ( Creating a Piano)
Dear cNavarro, If you press the first white panel it play the note C and the msginfo is 1 If you press the black panel on area is on first white panel it play the note C and the msginfo is 1 but it is wrong because it must play c# and the msginfo must be = 2 If you press the black panel on area is o...
click a area of Tpanel control ( Creating a Piano)
Silvio, In FWH\source\classes\vistamnu.prg there is an example of use
click a area of Tpanel control ( Creating a Piano)
Silvio Please try this Piano.Prg [code=fw:zjibu3rx]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">/*<br />*<br />* &nbsp;Piano.prg<br />* &nbsp;G.N.Rao<br />*<br />*/</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fiveWin.Ch"</spa...
click a area of Tpanel control ( Creating a Piano)
,.
click a area of Tpanel control ( Creating a Piano)
for write the note ...I'm trying with [code=fw:1clatkar]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#define</span> SRCCOPY &nbsp;<span style="color: #000000;">13369376</span><br /><span style="color: #00D7D7;">#define</span> DT_TOP &nbsp; &nbsp; &nbsp; &nbsp; &nb...
click a area of Tpanel control ( Creating a Piano)
Found !!!! aKey[ 3 ][1]+= 80 aKey[ 3 ][2]+= 20 [b:35xj18ye]the result [/b:35xj18ye] [img:35xj18ye]http&#58;//www&#46;eoeo&#46;it/wp-content/uploads/2014/12/piano2&#46;jpg[/img:35xj18ye] [code=fw:35xj18ye]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">static</span> <span ...
click a area of Tpanel control ( Creating a Piano)
.
click a area of Tpanel control ( Creating a Piano)
Rao, Silvio, Very nice <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
click a area of Tpanel control ( Creating a Piano)
Please try this with #define METHOD1 and also commenting out //#define METHOD1. Are you sure the frequencies are right? Is it possible to stop the Tone when the user presses another key? [code=fw:3itj5sj7]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">/*<br />*<br />* &nbsp;Pi...
click a area of Tpanel control ( Creating a Piano)
Rao, [img:1m4kxwcr]http&#58;//www&#46;eoeo&#46;it/wp-content/uploads/2014/12/Tabella-di-correlazione-tra-notazione-musicale-e-relative-frequenze-per-ottava&#46;png[/img:1m4kxwcr] We Initiated from 3 octave because a C with 130,8 is a good listen --- I'll like Know How make instrument path ( piano, guitar, drum) S...
click a area of Tpanel control ( Creating a Piano)
After finalizing the frequencies for all octaves, please share the final values with me. How can we make the duration controlled by the user? That is the tone should start playing when the user presses the key and stop when he releases the key.( ofcourse that is not piano). I like to have this variation also.
click a area of Tpanel control ( Creating a Piano)
Mr. Rao, on tone function of Andy try to wrote #define SAMPLING_RATE 126100 instead of #define SAMPLING_RATE 44100 it change the duration of note Perhaps we can found a function to control it !!! See it please I add : now the Piano have [b:23fkesmw]60[/b:23fkesmw] keys !!!!! ( use with METHOD1 active) [...
click a area of Tpanel control ( Creating a Piano)
a Demo song to try with new sources Save with :[b:230slutu] Birthday.ini [/b:230slutu] [code=fw:230slutu]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #000000;">&#91;</span>Music<span style="color: #000000;">&#93;</span><br />Note=<span style="color: #000000;">42</span><br /><sp...
click derecho en area de notificación
Hola a todos, me gustaría saber si alguien conoce la manera de hacer click derecho sobre un icono en el área de notificación. Me explico: tengo un programa que se comparte entre varias personas a través de una cuenta de google drive, cuando el programa arranca se descargan los ficheros y el programa espera a que todo...
click derecho en area de notificación
Do you mean this? [code=fw:2c7qarnv]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp; <span style="color: #00C800;">METHOD</span> <span style="color: #00C800;">New</span><span style="color: #000000;">&#40;</span> oWnd, oIcon, cTip, uLClick, uRClick, uMMoved, uLDblClick, uLButtonUp,;<br />&nbsp; &nbsp; ...
click derecho en area de notificación
No, I mean right-click on the Google Drive icon and show the pop-ip window. Regards, [img:2yv0t1m6]http&#58;//alanit&#46;com/wp-content/uploads/2022/05/Captura-de-pantalla-2022-05-31-195308&#46;png[/img:2yv0t1m6]
click derecho en area de notificación
Sorry, I don't understand. EMG
click derecho en area de notificación
Estimado Jose Luis, Aqui tienes detallado el proceso para hacerlo: [url:30p3zv3u]https&#58;//stackoverflow&#46;com/questions/21335917/simulating-right-click-on-system-tray-icon-and-clicking-on-context-menu-in-c[/url:30p3zv3u]
click sobre tree con checkbox
Hola a Todos: Tengo un Treeview , quiero que haga algo al marcar el check y que se grabe o sea al almar de nuevo el tree debe estar marcado o marcados los que ya clickiee. Tengo el evento al darle click sobre la rama mas no sobre el checkbox. ¿Alguien ya ha resuelto esto? desde ya muchas gracias. atte Miguel Salas Mé...
click sobre tree con checkbox
Miguel, Con ayuda del buen amigo William Morales, hace tiempo hice lo que necesitas, armar un tree y al seleccionar algunas opciones, estas se graben y despues cuando lo vuelvas a mostrar, salgan ya activas. Sin embargo, quiero comentarte algo : Cuando son muchas las opciones del tree y mandas un Expand, tarda unos 5...
click sobre tree con checkbox
te agradezco la respuesta y en espera de tu valiosa ayuda saludos
click sobre tree con checkbox
Miguel, [color=#FF0000:2fkngpe3]En alguna tabla o dbf debes tener uno o varios campos para guardar las claves de los items seleccionados, yo los separo usando ':'[/color:2fkngpe3] [code=fw:2fkngpe3]<div class="fw" id="{CB}" style="font-family: monospace;">oTree := TTreeView<span style="color: #000000;">&#40;</span><s...
click sobre tree con checkbox
Te agradezco infinitamente Raymundo... dejame probarlo y te comento
click sobre tree con checkbox
unas dudas,: 1- No veo en el codigo que uses la funcion "GetUOptsSld" (solo dentro de si misma ¿?) 2- El array aDmXDts ¿con que lo llenas? 3.- SrcOptsValues() la llamas al llenar el Tree? como ves ando perdido en esto saludos
click sobre tree con checkbox
Miguel, 1- No veo en el codigo que uses la funcion "GetUOptsSld" (solo dentro de si misma ¿?) [code=fw:2g2evi2x]<div class="fw" id="{CB}" style="font-family: monospace;">Cuando termino de seleccionar las opciones deseadas, mando llamar esta funcion para que recorra el tree y mando a un a un arreglo el cargo del elemen...
click sobre tree con checkbox
Amigo Raymundo, tiene un ejemplo mas didactico con array Saludos
clickable image
Hello, I have a window with 4 tabs. On tab 3 I want to show 1 to 10 images (depending on how much images I have) and when I click on that image I want to show it in a new window on real size. I have looked in the examples, but not all of them are working correctly. The example testsimage gives errors while compiling. F...
clickable image
Rene, > Is there a function that I can check which tab is active/shown oTabs:nTab > is there a way to make the image clickable oImage:bLButtonUp = { | nRow, nCol | ImageClick() } > How can I find the sizes of the image? oImage:nWidth and oImage:nHeight
clickable image
Rene, This is not working yet: oImage:bLButtonUp = { | nRow, nCol | ImageClick() } I am implementing it
clickable image
Rene, Already implemented. Here you have a working example: [code=fw:1a3dfg3u]<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;">function</span> Main<span style="color: #00000...
clickable image
Hello Antonio, Thanks for the reply and new libs. The oImg:bLButtonDown and the oTabs:nTab works perfect. Only the oImg:nWidth gives the width (and height) of the control, not the width of the real picture. I want to know the real sizes of the image. When i make an image size 110, 110 and place a picture of 640x480 ...
clickable image
This seems to be the right way to get the image dimensions: [code=fw:fcjkeuvp]<div class="fw" id="{CB}" style="font-family: monospace;">NSImageRep *rep = <span style="color: #000000;">&#91;</span><span style="color: #000000;">&#91;</span><span style="color: #0000ff;">image</span> representations<span style="color: #00...
clickable image
Rene, Already implemented and working fine. I have sent you the modifed libs already. Simply do: MsgInfo( oImage:GetWidth() ) and MsgInfo( oImage:GetHeight() ) many thanks for your feedback
clickable image
Hello Antonio, The nWidth and nHeight gives the sizes of the defined object, not of the picture. I have a picture of 480 px height and 640 px width. When I place this on my BigPhoto window the sizes given are the sizes I have dementioned. See code: [code=fw:10n5nz75]<div class="fw" id="{CB}" style="font-family: monosp...
clickable image
Rene, You have to use oFoto:GetWidth() and oFoto:GetHeight()
clickable image
Hello Antonio, Sorry, yes that was the trick. I was forgotten to put the newest lib in the lib-folder. thats why I got an error. I have to work more exact. Tomorrow I will put my newest code on Git, so you can see the progress.
clickable image
Rene, ok, thanks, I will pull and test it
clickable image
Hello Antonio, I have put the latest version on git I have put some comments in the source, so its easier to understand Rene
clickable image
Rene, I already reviewed it and I sent you an email
client RDP info
hi all, I need to know a unique value of the remote client from the server rdp. is possible? Thank you for your reponse.
client RDP info
Hello, What I do is to take the user name with which the user entered. [code=fw:1p9fohq8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">Function</span> ListUsersTs<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><span style="color: #00C8...
client_multi_queries
I want to set option after my TMySqlServer(.....) connection is set to enable execution of multiple queries separated by ';' each. Please help.