topic
stringlengths
1
63
text
stringlengths
1
577k
swaping"" de funciones
Quique,Me dejastes pensando con esto que comentastes:> con la gran ventaja de poder hacer llamado a la original, algo así como si fuera un método de la clase superiorY he jugado un poco con el asunto, creando la Clase TFunction <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --...
swaping"" de funciones
Olá Antonio,Ao compilar seu exemplo , me é gerado o erro abaixo:[code:339hzit8] xLINK&#58; error&#58; Unresolved external symbol '_hb_itemPutSymbol'&#46; xLINK&#58; fatal error&#58; 1 unresolved external&#40;s&#41;&#46; [/code:339hzit8]Saludos,Rossine.
swaping"" de funciones
Rossine, según veo utilizas xHarbour, Antonio dijo que ese código es para harbour, intenté pasarlo, pero no pude, ya pedí ayuda <!-- s;) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";)" title="Wink" /><!-- s;) -->
swaping"" de funciones
Rossine,Como te ha comentado Quique, esa versión es para Harbour. Para xHarbour hay que hacer unos cambios, pues xHarbour no usa el tipo "symbol" sino el tipo "pointer":Harbour:MsgInfo( ValType( @Time() ) ) // muestra "S"xHarbour:MsgInfo( ValType( @Time() ) ) // muestra "P"
swaping"" de funciones
Modificaciones para xHarbour gracias de nuevo al master Vic, no se si también funcione para harbour[code:14mpsqyv] #include "hbclass&#46;ch" PROCEDURE Main&#40;&#41; TimeTest&#40;&#41; StodTest&#40;&#41; RETURN PROCEDURE TimeTest LOCAL oMyTime &#58;= TFunction&#40;&#41;&#58;New&#40; @MyTime&#40;&#41; &#...
swaping"" de funciones
Funcionou perfeito agora <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> Gracias Quique e Antonio,Rossine.
swaping"" de funciones
Anotnio ¿que necesito hacer para que funcione esto? marca error en el ultimo msgInfo()[code:ijrr9o62]#INCLUDE "hbclass&#46;CH" function main miTWindow&#40;&#41; funSwap&#40; @time&#40;&#41;, @miTime&#40;&#41; &#41; msgInfo&#40; time&#40;&#41; &#41; funSwap&#40; @tWindow&#40;&#41;, @miTWindow&#40;&#41; &#41...
swaping"" de funciones
Quique,Por lo visto la clase derivada sigue usando el puntero antiguo, de alguna forma.
swaping"" de funciones
Sip, por eso la consulta ¿hay manera de solucionar ese problema?
swaping"" de funciones
Quique,Debe estar usandose el puntero antiguo, el cual debe estar almacenado en otro lugar tambien.Habria que revisar el modulo de classes en C de Harbour/xHarbour y localizar en donde esté ese puntero guardado.
swaping"" functions
This is a virtual machine "dirty" hack <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> but can result very useful under some circunstances. I place a copy here just in case someone want to test it:test.prg[code:36n2wrt0] #include "FiveWin&#46;ch" static pOld function Main...
swaping"" functions
Another example:test.prg[code:1y22awak] #include "FiveWin&#46;ch" static pOld function Main&#40;&#41; pOld &#58;= FunSwap&#40; "DATE", "TOMORROW" &#41; MsgInfo&#40; Date&#40;&#41; &#41; // We have replaced the original Date&#40;&#41; function! &#58;-&#41; return nil function Tomorrow&#40;&#41; local uRe...
swaping"" functions
A useful way to create logs or do assertions (James!) <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->test.prg[code:33954flt] #include "FiveWin&#46;ch" static pOld function Main&#40;&#41; pOld &#58;= FunSwap&#40; "TEST", "LOGIT" &#41; MsgInfo&#40; Test&#40; "Hello"...
swaping"" functions
Antonio,This looks interesting. Thanks.James
swaping"" functions
For those interested in this issue, we have gone a little further in the spanish equivalent thread, creating a Class TFunction <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --><!-- m --><a class="postlink" href="http://forums.fivetechsoft.com/viewtopic.php?t=12588">http://for...
swaping"" functions
[quote="Antonio Linares":i5eyr9ft]For those interested in this issue, we have gone a little further in the spanish equivalent thread, creating a Class TFunction <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> <!-- m --><a class="postlink" href="http://forums.fivetechsoft.c...
xpp\get.prg HB_LANGMESS() "" debug message sometim
Hello,I've just upgraded from Fivewin++ V7.01 to V8.01 and the following problem has appeared:When I use "get" fields in a dialog box and move from one field to another, I sometimes get a standard Windows "Information" Window with the text "xpp\get.prg HB_LANGMESS() " and an OK default push button. I asssume this is pa...
#Borland make sample AYUDA
Como le debo decir cuando tengo una lista de prg y quiero cambiar a unos para parametros unos /L /N /W y otros /L /N /W /B ver \bin\harbour $< /L /N /W /Oobj\ /I$(FWDIR)\include;$(HBDIR)\include;$(fprg)\include > comp.log [code=fw:1evlqi2q]<div class="fw" id="{CB}" style="font-family: monospace;"><br />#Borland m...
#DEFINE for testing in parallel FIVEWIN - modharbour
I use #define MODHARBOUR to create an offline version for development and testing in parallel sample #ifdef MODHARBOUR use ( hb_GetEnv( "PRGPATH" ) + "\data\tagging.DBF" ) new #else use ( ".\data\tagging.DBF" ) new #endif #ifdef MODHARBOUR TEMPLATE ENDTEXT #else xbrowse() #endif
#Define mutiline
Hello, Can we insert multiple lines at the same time with #define? Thank you in advance Otto
#Define mutiline
If you mean in one #define, can we create multiple definitions, then it is not possible. Each define has to be separate. I am not sure if I understood you correctly.
#Define mutiline
Dear Mr. Rao, Yes, that's exactly what I want. Because of the better readability of the source code, it would be fine. Even when checking the source code, you only need to look at this one #define. For example: @ ( oDlg:nHeight - 30 )/2.05, 5 BUTTON "MoveUp" SIZE 35,12 PIXEL OF oDlg ACTION SwapRow( oBrw, .f. ) ...
#Define mutiline
[code=fw:2zrpbb02]<div class="fw" id="{CB}" style="font-family: monospace;"><br />#xtranslate NEXTBTN <prompt> <span style="color: #0000ff;">ACTION</span> <uaction> => ;<br />&nbsp; &nbsp;nOffset += <span style="color: #000000;">5</span> + oBtn:<span style="color: #000000;">nwidth</span> ;;<br />&nbsp; &nbsp;@ <span st...
#Define mutiline
With define [code=fw:26rehina]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#define</span> NEXTBTN nOffset += <span style="color: #000000;">5</span> + oBtn:<span style="color: #000000;">nwidth</span>; @ <span style="color: #000000;">&#40;</span> oDlg:<span style="color: #000000...
#Define mutiline
Dear Mr. Rao, thank you so much. I think this offers much power to build his own toolbox. Best regards, Otto
#Define mutiline
Dear Mr. Rao, I can't find out a way for the first button to define. I tried this but with no success. iif( VALTYPE( oBtn) = "C", ( nOffset += 5 + oBtn:nwidth ), nOffset ) So I ended up using 2 xTranslate. [code=fw:3a164zw6]<div class="fw" id="{CB}" style="font-family: monospace;">#xtranslate NEXTBTN <prompt> <span...
#Define mutiline
[code=fw:1xa0a6mc]<div class="fw" id="{CB}" style="font-family: monospace;"><br />#xtranslate MYBTN <prompt> <span style="color: #0000ff;">ACTION</span> <uaction> => ;<br />   nOffSet := <span style="color: #00C800;">If</span><span style="color: #000000;">&#40;</span> oBtn == <span style="color: #00C800;">nil</span>, <...
#Define mutiline
Dear Mr. Rao, thank you. Now it is working fine. --------------------------------------- May I ask you something else please. If I use OOP code, how can I pass the parameters. [code=fw:3tckt9gi]<div class="fw" id="{CB}" style="font-family: monospace;">#xtranslate NEXTBTN <prompt> <span style="color: #0000ff;">ACTION<...
#Define mutiline
[code=fw:2hhao8di]<div class="fw" id="{CB}" style="font-family: monospace;">#xtranslate NEXTBTN <prompt> <span style="color: #0000ff;">ACTION</span> <uAction> => ;<br />&nbsp; &nbsp;nOffSet := <span style="color: #00C800;">If</span><span style="color: #000000;">&#40;</span> oBtn == <span style="color: #00C800;">nil</sp...
#Define mutiline
Dear Mr. Rao, It works perfectly. I think you can tremendously simplify the source code of your programs. Comments can be inserted in the #xtranslate files, and the reading flow in the actual program is not disturbed. I want to show how easy it is to rearrange the switch. You swap the lines and don't have to worry ab...
#Define mutiline
Dear Mr. Rao, Can you help me again, please? I would now like to assign a background color. But the Button color of oBtn does not change. Best regards, Otto [code=fw:3ua4r7zg]<div class="fw" id="{CB}" style="font-family: monospace;"><br />#xtranslate NEXTBTN <prompt> <span style="color: #0000ff;">ACTION</span> <uActi...
#Define mutiline
TButton and TButtonBmp are Windows controls. We can not set colors. It is possible to set colors for TBtnBmp only.
#Define mutiline
Dear Mr. Rao, I have seen that TButton inherit from TControl. But I have not checked whether the paint method takes into account all the data. I will test with ButtonBmp. I think we should extend AUTOCODE in this direction. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -...
#Define mutiline
Yes. TButton and all other FWH controls are derived from TControl. TButton class creates a Windows "BUTTON" control and the button is painted by Windows only. TButton does not have its own paint method. TButtonBmp is derived from TButton class. So this control also creates a Windows "BUTTON" control. This class has i...
#Define mutiline
Dear Mr. Rao, Thank you so much for your explanation, your help, and your time. Now I understand the connections. Best regards, Otto
#command Syntax
hi, when have a Method using Xbase++ Syntax like this [code=fw:2hror1s1]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> XbpPBar:<span style="color: #000000;">SetMaximum</span><span style="color: #000000;">&#40;</span> nMaximum <span style="color: #000000;">&#41;</s...
#command Syntax
Jimmy, Please provide full XbpPBar.prg source code to help you
#command Syntax
hm ... em, äh ... that sample is only a Demo Code for this Type of Syntax used by Alaska <!-- s:roll: --><img src="{SMILIES_PATH}/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" /><!-- s:roll: --> i have my own native Control using Ot4Xb and hope Pablo will help me to "translate" it to harbour --- but i like ...
#command Syntax
DATA nMaximum METHOD SetMaximum( nVal ) INLINE ::nMaximum := nVal METHOD GetMaximum() INLINE ::nMaximum The simplest way uses to be the best one <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
#command Syntax
hi Antonio, [quote="Antonio Linares":3kl5tmid]The simplest way uses to be the best one <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->[/quote:3kl5tmid] i agree : keep it simple [code=fw:3kl5tmid]<div class="fw" id="{CB}" style="font-family: monospace;">   oProgress:<span st...
#define ""lost"" ?
hi, i got a new Problem which i don't understand. what have i done : [code=fw:2998kzpw]<div class="fw" id="{CB}" style="font-family: monospace;">   <span style="color: #00C800;">IF</span> EMPTY<span style="color: #000000;">&#40;</span>cWantPath<span style="color: #000000;">&#41;</span><br />      <span style="color:...
#define ""lost"" ?
Use [code=fw:34a6cg4z]<div class="fw" id="{CB}" style="font-family: monospace;">#IFDEF Use_GUI</div>[/code:34a6cg4z] because it's Case sensitive.
#define ""lost"" ?
hi, [quote="Marc Vanzegbroeck":331czv09]Use [code=fw:331czv09]<div class="fw" id="{CB}" style="font-family: monospace;">#IFDEF Use_GUI</div>[/code:331czv09] because it's Case sensitive.[/quote:331czv09] thx for Answer. i do use Copy/Paste so it is always same Syntax. but that is not the Problem while Code work without...
#ifdef __xpp__ en la tw de hernana (SOLUCIONADO)
Para que esta este codigo? si activo la directiva __XPP__ me da error. Gracias. [code=fw:2t0va0xi]<div class="fw" id="{CB}" style="font-family: monospace;"><br />#ifdef __XPP__<br /><br /><span style="color: #00C800;">static</span> <span style="color: #00C800;">function</span> wBrwLine<span style="color: #000000;">&#...
#ifdef __xpp__ en la tw de hernana (SOLUCIONADO)
Ese define era para el soporte de XBase++. Daba la opción de usar el código en PRG en vez de en C.
#pragma message
I always forget this one, so better keep a reminder here <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->How to display a C preprocessor output message:#pragma message "Here!"
#pragma message
Checking several preprocessor defined values:#if defined( VALUE1 ) || defined( VALUE2 ) || ...
#pragma message
For VC use pragma message like this: #pragma message( "Here!" ) [url:aw525gu5]https&#58;//docs&#46;microsoft&#46;com/en-us/cpp/preprocessor/message?view=vs-2019[/url:aw525gu5]
#xcommand
Alguien me puede ayudar a con este comando Resulta que modifique la clase dbcombo y lo que quiero es agregarlo en xcommand pero me arroja un error nunca he podido decifrar como funcionan esto de los #xcomm#~??654556 #xcommand REDEFINE DBCOMBO [ <oCbx> VAR ] <cVar> ; [ <items: ITEMS, PR...
#xcommand
Hola, prueba con <{uCondicion}> en lugar de [{||<uCondicion>}] saludos Marcelo
%systemroot%
Hola, Es posible desde FWH obtener el directorio donde se encuentra %systemroot%, %programfiles% y %userprofile% ? Gracias.
%systemroot%
[quote="Carles":230abbya]Hola, Es posible desde FWH obtener el directorio donde se encuentra %systemroot%, %programfiles% y %userprofile% ? Gracias.[/quote:230abbya] Espero sea lo que buscas cPath := GETENV("PATH") SET PATH TO (cPath)
%systemroot%
Hola William, Getenv() nos da las variables de entorno, pero no es exactamente lo q busco. Quiero %systemroot%, %programfiles% y %userprofile%. Gracias.
%systemroot%
[quote="Carles":skhhkymt]Hola William, Getenv() nos da las variables de entorno, pero no es exactamente lo q busco. Quiero %systemroot%, %programfiles% y %userprofile%. Gracias.[/quote:skhhkymt] GetEnv( "SYSTEMROOT" ) GetEnv("PROGRAMFILES") GetEnv("USERPROFILE" ) Vamos....creo que son variables de entorno, por lo t...
%systemroot%
Rafa, Quiero juestamente esto y se me ha ido la olla. Hacia GetEnv( '%systemroot%' ) en lugar de GetEnv( 'SYSTEMROOT' ) <!-- s:? --><img src="{SMILIES_PATH}/icon_confused.gif" alt=":?" title="Confused" /><!-- s:? --> Me voy a comer q estoy demasiado espeso. Demasiadas horas. Esto nos va a matar Perdon a todos. Raf...
'Apple-like' lines for Microsoft's Surface Pro
'Apple-like' lines for Microsoft's Surface Pro (photos, video) [url:1cgbfxm6]http&#58;//tech&#46;fortune&#46;cnn&#46;com/2013/02/10/apple-microsoft-surface-pro/[/url:1cgbfxm6]
'Apple-like' lines for Microsoft's Surface Pro
[quote:12f06qw0]Finally, a rational and? balanced review.[/quote:12f06qw0] <!-- m --><a class="postlink" href="http://www.youtube.com/watch?v=c-G-7keEE5M">http://www.youtube.com/watch?v=c-G-7keEE5M</a><!-- m -->
'Apple-like' lines for Microsoft's Surface Pro
[quote="Otto":1wslp9fp][quote:1wslp9fp]Finally, a rational and? balanced review.[/quote:1wslp9fp] <!-- m --><a class="postlink" href="http://www.youtube.com/watch?v=c-G-7keEE5M">http://www.youtube.com/watch?v=c-G-7keEE5M</a><!-- m -->[/quote:1wslp9fp] 1.- Well, is exactly what we have been saying all toguether.... ju...
'COPY TO' problem with timestamp datatype
Hello all, I have a table with timestamp datatype field. when I 'COPY TO' the content to another table.. generates runtime 'data type error' How to resolved? Regards, FAP
'COPY TO' problem with timestamp datatype
I presume you are using DBFCDX. If you use SETRDDDEFAULT( 'DBFCDX' ) and then use COPY TO command, it copies Timestamp fields also correctly. I have tested on XHarbour.
'COPY TO' problem with timestamp datatype
Dear RAO, Thanks again. I use .ADT tables. I tried rddsetdefault( 'ADS' ) and/or rddsetdefault( 'ADT' ) on INIT PROCEDURE but still with error description: 'Data Type Error' on table with timestamp field. What causing this? Regards, FAP
'COPY TO' problem with timestamp datatype
Dear All, I end up using AdsCopyTable().. It works though but I lost gaugebar/meter.. adsRegCallBack() woking only in indexing not in other function like AdsCopyTable() Regards, FAP
'DATA' hAlphaLevel (Resolved)
Linhares, I hope I'm not bothering or. Could you take a doubt? How can I work with the 'DATA' hAlphaLevel? Example, if I want to create a window or dialog where it will only contain a bitmap, but I would like the dialog or window was 100% transparent but not bitmap. And I would like the bitmap was a star where the whi...
'DATA' hAlphaLevel (Resolved)
Hello arthursilvestre, please use a topic which is related to the content. Best regards, Otto
'DATA' hAlphaLevel (Resolved)
Edited, thks
'DATA' hAlphaLevel (Resolved)
[code=fw:13spxwc9]<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;">&#40;</span><span style="color: #000000;">&#...
'DATA' hAlphaLevel (Resolved)
Perfect, Thanks. I really appreciate the help.
'N' appears when spacebar is pressed
Guys, any of you had this happen to you? When you press spacebar, instead of a blank space your get displays 'N' instead. Running fwh\samples\testget.prg and testget6.prg doesn't give me that problem though. [img:onq0pen3]http&#58;//img600&#46;imageshack&#46;us/img600/2079/strangechars&#46;jpg[/img:onq0pen3] Any id...
'N' appears when spacebar is pressed
The next step I did to try to determine the source of the problem: i. Linked-in tget.prg from fwh\source and insert OutputDebugString() at line 1135. ii. Compile with harbour binary downloaded from <!-- m --><a class="postlink" href="http://code.google.com/p/harbour-and-xharbour-builds/downloads/detail?name=harbour.zip...
'N' appears when spacebar is pressed
Hua, Could you provide a small example to reproduce it here ? thanks
'N' appears when spacebar is pressed
Strange, compiling using xHarbour makes this specific problem goes away. Unfortunately it also means the comeback of some bugs that have been resolved so can't stick to it.
'N' appears when spacebar is pressed
Hua, have you checked that you are not linking a modified Class TGet ? Could you provide a small example ? thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
'N' appears when spacebar is pressed
Attempts to create a reduced-self contain example so far failed Antonio. The tget.prg was taken directly from fwh\source. I'll give a try again.
'N' appears when spacebar is pressed
Hua: [quote="hua":2fj9l8g0]Strange, compiling using xHarbour makes this specific problem goes away. Unfortunately it also means the comeback of some bugs that have been resolved so can't stick to it.[/quote:2fj9l8g0] What bugs are you referring to? Randal
'N' appears when spacebar is pressed
[quote="Randal":p7q53ldw]What bugs are you referring to?[/quote:p7q53ldw] The xHarbour bug is some commands that are supposed to observe SET DEFAULT TO didn't. There was also another bug I reported regarding a zip-related function. All were submitted to the [url=http&#58;//www&#46;xharbour&#46;com/v4/support/bugreport...
'N' appears when spacebar is pressed
I had the same problem occasionally (not only N but also other chars). It seems a memory problem because I solved it calling some hb_gcall() in the code. In xHarbour I never had this behavior. Regards, Roberto Parisi
'N' appears when spacebar is pressed
I also don't have this problem in xHarbour but compiling my module in Harbour solved some other problems for me. To be fair, my xHarbour version is fairly outdated. So far I manage to recreate the problem when dynamically loading keylib32.dll (a dll from SoftwareKey). Still chopping my test code further so could get...
'NIL' has no exported method: NMAX
Hi all, there is this annoyant error that appairs randomly without a specific reason. It seem something related to the bitmap class. Anyone already had this problem ? Any ideas ? Thanks. ******** Application =========== Path and name: K:\TESTXBRW\brw.Exe (32 bits) Size: 1,863,680 bytes Time from start: 0 ...
'NIL' has no exported method: NMAX
Marco, As a workaround please change Class TBitmap line 822 this way: [code=fw:2s2iljh8]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;<span style="color: #00C800;">local</span> nVisible := <span style="color: #00C800;">Super</span>:<span style="color: #000000;">nWidth</span><span style="...
'Windows' key
Hi all, i must simulate a press of the new 'windows' keys which can be found on modern keyboards. ( An other app needs 'windows' + 'a' ) Unfortunatelly i can not find any value for them in inkey.ch nor vkey.ch. I still use a vintage keyboard without such keys and can not experiment. I already got the hint to use [quo...
'Windows' key
This is a working sample: [code:3h2z4t7t]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL oDlg DEFINE DIALOG oDlg @ 1, 1 BUTTON "Test"; ACTION __KEYBOARD&#40; CHR&#40; 0x5B &#41; &#41; ACTIVATE DIALOG oDlg; CENTER RETURN NIL[/code:3h2z4t7t] EMG
'Windows' key
Enrico, many thanks for your help. It's working fine. I forgot to tell that those keys must be triggered from a xharbour console app. <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: --> And this doesn't work. May be you have an other idea? Thanks and regar...
'Windows' key
Sorry, no. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> EMG
'Windows' key
Enrico, i tried to be clever and write a Windows program which i can start from my console app. [code:2secxgnp]#include "FiveWin&#46;ch" FUNCTION MAIN&#40;&#41; __KEYBOARD&#40; CHR&#40; 0x5B &#41; + 'e' &#41; RETURN NIL[/code:2secxgnp]This should normally start the Windows Explorer. But it doesn't. It just opens...
'Windows' key
Detlef, You can run Explorer from a DOS prompt calling for EXPLORER, maybe you can call it by RUN command... Regards, Maurilio
'Windows' key
Maurilio, thanks for jumping in. But my problem is not to call Windows explorer. This was just a suggested test for EMG. I must trigger the key combination 'windows' + 'a' for a call center software to dial customer numbers. Unfortunatelly this seems to be impossible from a xHarbour console app. Anyhow, thanks for ...
'Windows' key
Try this: [code:185182w3]#include "Fivewin&#46;ch" FUNCTION MAIN&#40;&#41; LOCAL oDlg DEFINE DIALOG oDlg @ 1, 1 BUTTON "Test"; ACTION __KEYBOARD&#40; CHR&#40; 0x5B &#41; + "e" + CHR&#40; VK_RETURN &#41; &#41; ACTIVATE DIALOG oDlg; CENTER RETURN NIL[/code:185182w3] EM...
'Windows' key
Enrico, [quote:32p1ynjz]Try this... __KEYBOARD( CHR( 0x5B ) + "e" + CHR( VK_RETURN ) )[/quote:32p1ynjz] starts the settings dialog of a German windows XP. It's just like clicking the Startbutton of Windows and select 'Einstellungen ( Settings )' plus Enter. But unfortunatelly it's not the equivalent to 'windows' + 'e...
'Windows' key
Detlef, Now I understand what you want <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> I never did it with FiveWin, but I have a program in Delphi where I execute a program and select a option from menu. In Delphi I do: [code:tufazbmq] &#40;&#46;&#46;&#46;&#41; Keybd_Event&#...
'Windows' key
Maurilio, many thanks for your efforts. I just finished myself googling this problem. After reading docs and samples i finally got it. Here the source. You can compile it with bcc32 and it will run fine. [code:2u2kyj60]#include <windows&#46;h> void main&#40;&#41; &#123; keybd_event&#40; VK_LWIN, 0, 0, 0 &#41;; ...
'izi pi zi' reporting is renamed Triathlon Report
Hello friends, I am currently working on the new offer tool for WINHOTEL. Here the offers are created as WORD, Outlook and web offers. I was looking for a working title for this tool and we decided on Triathlon. Since the quotation tool uses many functions of the 'iz pi zi' HTML report, I thought that the name would...
'kinetic' navigation
'kinetic' navigation Since I compiled with 9.08 drag & drop is no longer working. Can someone confirm this? Best regards, Otto
'kinetic' navigation
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=16905&start=0">viewtopic.php?f=3&t=16905&start=0</a><!-- l -->
( CONTRIBUTION ) PickColor with sources for your Systems
Greetings Fellow Forum : I share the work I 've done in this week sometime hopefully will be useful, I still have a function to finish and I hope to help everyone we can be 100 % functional. [img:3c412224]http&#58;//sim1&#46;subirimagenes&#46;net/img/2015/07/25//150725110059511943&#46;jpg[/img:3c412224] It is a gene...
( CONTRIBUTION ) PickColor with sources for your Systems
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=31135&p=179945#p179945">viewtopic.php?f=6&t=31135&p=179945#p179945</a><!-- l -->
( CONTRIBUTION ) PickColor with sources for your Systems
[b:2fqwbf2v]I lack the most important and can not find how to do it , capture the color of a pixel out of our application :[/b:2fqwbf2v] I created the DESKTOP-solution You are looking for with ZOOM-factor ( still some extensions will be added ) I can add this extension to my RGB-tools as well. [img:2fqwbf2v]http&#58...
( CONTRIBUTION ) PickColor with sources for your Systems
Uwe, Here you have an example (how to manage the mouse): <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=179960#p179960">viewtopic.php?p=179960#p179960</a><!-- l -->
( CONTRIBUTION ) PickColor with sources for your Systems
Antonio, thank You very much. the 1. release for testing Just load and move the cursor over the desktop Still the SAVING and 3 bachground-selection--buttons must be added. [img:3lu6s68j]http&#58;//www&#46;pflegeplus&#46;com/IMAGES/RGBCol3&#46;jpg[/img:3lu6s68j] <!-- m --><a class="postlink" href="http://www.pflegep...
( CONTRIBUTION ) PickColor with sources for your Systems
Uwe: This is exactly what is needed simply great, but I wonder..?? Because they do not share the examples with source code, without wishing to offend anyone i am of the idea that selfishness in this forum should not be present and share what you know, I hope it is not much we compartar the source code. Greetings
( CONTRIBUTION ) PickColor with sources for your Systems
cuatecatl82, because it is not finished, I just added the exe. The final release will be complete with source. Because we want to save the values, we cannot move back to a save-button ( it will change the values ) instead we have to use : [color=#0000FF:26sh6kwf][b:26sh6kwf]oWnd:bKeyDown := {|nKey| if(nKey = 32, SAV...