topic
stringlengths
1
63
text
stringlengths
1
577k
internet ip address
[quote="EnricoMaria":3d7y4sva]Ok, but I don't like a function that relies on a specific web address.[/quote:3d7y4sva] Yes, I also don't like, but work. The router is a little computer with a O.S. (Linux normally). In this case i do not think that is possible to unify one standard function for return the external IP.
internet ip address
Enrico, I do not like the idea neither, this is why i was looking at another function. This one works ok, we do all our software Maintenance with VNC using this function to show the internet ip Richard
internet ip address
Hi all, I can get my external ip address with the code below. I wonder if there is another way to get the external ip without connecting to any site. Birol Betoncu [code=fw:806asmzp]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"f...
internet ip address
Try this code [code=fw:wpdmd9h3]<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: #B900B9;">//--------------------------//</span><br /><span style="color: #00C800;">FUNCTION</span> Main<span ...
internet ip address
Thanks for your reply. It is very helpfull. Birol Betoncu
internet ip address
[quote="Richard Chidiak":3qezof05]Hello Is there an esay way to know the INTERNET ip address from a computer ? I think Enrico published solething on it some time ago, i did a search but did not find, if anyone has a sample, thanks for the help PS : I was previously using tip functions from xharbour but they do not...
invocar funciones sql con ado
yo utilizo procedimientos almacenados, mi experiencia es la siguiente: el comando CALL se utiliza en MySql para llamar los procedimientos y los parámetros se pasan entre perentesis, yo al cambiarme a MS-Sql tuve que cambiar el comando CALL por EXECUTE y sacar los parentesis. prueba de esta forma: [code=fw:2pp72eua]<...
invocar funciones sql con ado
Gracias jacgsoft y armando por responder [quote= prueba de esta forma: [code=fw:2bzbyv3q]<div class="fw" id="{CB}" style="font-family: monospace;">oCon1:<span style="color: #000000;">Execute</span><span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"Execute dbo.CalcSaldo 'T25CD', '01', '00' "</s...
invocar funciones sql con ado
Gente: Estoy tratando de llamar a una funcion sql con ADO pero no consigo hacerlo y también como capturo el resultado sql: [code=fw:t6u2hbpm]<div class="fw" id="{CB}" style="font-family: monospace;"><br />CREATE <span style="color: #00C800;">FUNCTION</span> <span style="color: #000000;">&#91;</span>dbo<span style="col...
invocar funciones sql con ado
En el SQl create PROCEDURE [dbo].[CalcSaldo](@Codigo varchar(8), @nMes int, @codusu char(2), @nResul Int Output ) As Begin Set Nocount On; Set @nResul = (dbo.CalcIngAno(@Codigo, @nMes,@codusu) - dbo.CalcSalAno(@Codigo, @nMes, @codusu)) + (dbo.CalcIngMes(@Codigo, @nMes, @codusu) - dbo.calcSalMes(@...
invocar funciones sql con ado
Gracias por su apoyo De esta forma trabaja [code=fw:1a9umep9]<div class="fw" id="{CB}" style="font-family: monospace;"><br />cSql1:=<span style="color: #ff0000;">"SELECT dbo.CalcSaldo('T25CD' ,1, '00')"</span><br />    <span style="color: #00C800;">TRY</span><br />      oRsr := TOleAuto<span style="color: #000000;">&#...
invocar o provocar un click desde codigo
Ya antes tube este problema y creí haberlo resuelto, Tengo una tabla padre (clientes) otra detalle (facturas con saldo) , en algunos casos y solamente en algunos casos, con ciertos clientes me "esconde una factura" , es decir tiene 2 con saldo y muestra 1, tiene 5 y muestra 4, etc. ya generé un tag metiendo el campo ...
invocar o provocar un click desde codigo
Hola Miguel: [quote="Miguel Salas":1zdth0u8]Tengo una tabla padre (clientes) otra detalle (facturas con saldo) , en algunos casos y solamente en algunos casos, con ciertos clientes me "esconde una factura" , es decir tiene 2 con saldo y muestra 1, tiene 5 y muestra 4, etc. ya generé un tag metiendo el campo "consaldo"...
invocar o provocar un click desde codigo
Saludos para todos Muchas consultas en el foro no tienen repuestas porque no muestran parte del código para ver el problema y asi poder ayudarlo como indica Manuel y casi siempre lo pide Antonio y Daniel. y si ponen el código colocarlo dentro de "[code][/code]" para un mejor análisis Gracias por hacer de este foro u...
invocar o provocar un click desde codigo
ok amigos, aqui les pongo el código actual....gracias [code=fw:10kb4us9]<div class="fw" id="{CB}" style="font-family: monospace;"><br />.....<br />oBrwCli:<span style="color: #000000;">bChange</span>:=<span style="color: #000000;">&#123;</span>|| oSayTel:<span style="color: #0000ff;">refresh</span><span style="color: ...
invoke sql functions with ado
Open recordset with sql as "SELECT functioname(param1,param2,...)" Then, result := oRs:Fields(0):Value
invoke sql functions with ado
Guys; It isnt working this sentence and also i want to capture the result of the function in fwh sql; [code=fw:13r5luo9]<div class="fw" id="{CB}" style="font-family: monospace;"><br />CREATE <span style="color: #00C800;">FUNCTION</span> <span style="color: #000000;">&#91;</span>dbo<span style="color: #000000;">&#93;</...
invoke sql functions with ado
Thank master rao! its working now [code=fw:1q6uemy7]<div class="fw" id="{CB}" style="font-family: monospace;"><br />    cSql1:=<span style="color: #ff0000;">"SELECT dbo.CalcSaldo('T25CD' ,1, '00')"</span><br />    <span style="color: #00C800;">TRY</span><br />      oRsr := TOleAuto<span style="color: #000000;">&#40;<...
invoke sql functions with ado
With later versions of FWH [code=fw:1f5s0t1v]<div class="fw" id="{CB}" style="font-family: monospace;">nResult := FW_AdoQueryResult<span style="color: #000000;">&#40;</span> <span style="color: #ff0000;">"SELECT dbo.CalcSaldo('T25CD' ,1, '00')"</span>, oCon1 <span style="color: #000000;">&#41;</span></div>[/code:1f5s0t...
ip address
Hello How can we know the pc ip address on the internet Gethostbyname(pcname) returns the internal ip gethostbyname("www.......") returns the web page's address I am interested to know at one moment my own ip address on the web Thanks for the help Richard
ip address
FUNCTION GetIP() local oSocket := TSocket():New( 2000 ), nIp := oSocket:cIPAddr oSocket:End() RETURN (nIp)
ip address
James, Added to FWH, thanks ops, it shows the LAN IP, not the Internet IP...
ip address
[quote="Antonio Linares":t13eiqrg]James, Added to FWH, thanks ops, it shows the LAN IP, not the Internet IP...[/quote:t13eiqrg] Right, I hope to have a function for retreiving the Internet IP very soon. I have the information available at the moment in a txt file. I need to parse this txt file quickly to search f...
ip address
[quote="Richard Chidiak":jsmcm994][quote="Antonio Linares":jsmcm994]James, Added to FWH, thanks ops, it shows the LAN IP, not the Internet IP...[/quote:jsmcm994] Right, I hope to have a function for retreiving the Internet IP very soon. I have the information available at the moment in a txt file. I need to parse...
ir al registro
Hola Foro : tengo una duda por ahi es tonta pero es bueno consultar con ustedes los que sabes. En las bases de datos del tipo xbase.dbf para ir a un registro determinado obviamente conociendo el numero se hacia de la siguiente forma ejemplo : Agenda->(Dbgoto( nRegi ) ) // donde nRegi = numero de registro La pregun...
ir al registro
Juan Carlos Intenta asi: [code=fw:x26nt15a]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oRSet:<span style="color: #000000;">MoveFirst</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />oRSet:<span style="color: #0000ff;">Move</span><span style="color: #000...
ir al registro
Muchas gracias : pero aun estoy cometiendo un error, en la base hay un campo llamado registro y esta indexada por fecha ... debo conocer la posición absoluta ya que la consulta sql me dice los registros que cumplen una condición determinada. que bolonqui ja ja no me acuerdo en ADO como se hacia para saber el valor ab...
ir al registro
Si Realizo una consulta SQL y trato de ver en numero de registro con esta funcion ? Data1:AbsolutePosition() el numero que me entrega es segun la consulta. mi intencion es conocer con en una dbf el Recno() pero no se cual en la funcion o la orden que me entrega dicha ...
ir al registro
Hola, Si estas usando un sql, tienes que cambiar la forma de acceder a la informacion, ya no es necesario el registro, si quieres emular algo parecido puedes agregar una columna id autoincremental, cuando hagas una consulta puedes usar el ID para ir directamente a una fila. oQry := oServer:Query("Select Prueba where ...
ir al registro
Gracias a todos, ya tiene la Tabla un campo llamado registro y es del tipo auto numérico el tema era como conocer la ubicación exacta ya sea el la tabla sin filtro o con filtro. de esta forma se pone lento a la hora de realizar una actualización de un registro. aclaro es una base bastante grande. Otra vez mucha...
is box mandotary in SCROLLMSG class?
Hi, is box mandotary in SCROLLMSG class? Thanks.
is box mandotary in SCROLLMSG class?
Dear Hakan, Can you provide a small example ?
is box mandotary in SCROLLMSG class?
Right now, box is always painted. Do you want it without border (box) ?
is box mandotary in SCROLLMSG class?
[quote="nageswaragunupudi":3dmeopqa]Right now, box is always painted. Do you want it without border (box) ?[/quote:3dmeopqa] Yes, Mr. Rao, I want it without border. Can it be optional?
is box mandotary in SCROLLMSG class?
[quote:1dyte8w7] Can it be optional?[/quote:1dyte8w7] Yes. We made this optional from the next version. If you want to remove the box right now in your application, you need to modify the fwh\source\classes\scrolmsg.prg: Comment out line 115 [code=fw:1dyte8w7]<div class="fw" id="{CB}" style="font-family: monospace;">...
is box mandotary in SCROLLMSG class?
[quote="nageswaragunupudi":3q0gd0kx][quote:3q0gd0kx] Can it be optional?[/quote:3q0gd0kx] Yes. We made this optional from the next version. If you want to remove the box right now in your application, you need to modify the fwh\source\classes\scrolmsg.prg: Comment out line 115 [code=fw:3q0gd0kx]<div class="fw" id="{C...
is box mandotary in SCROLLMSG class?
Good Our implementation is slightly different, but on the same lines.
is control enabled?
How do I determine programatically if a specific control is enabled? Don
is control enabled?
oControl:lActive
is control enabled?
Don, You can also use: IsWindowEnabled( oControl:hWnd )
is in FW_AdoImportFromDBF
is in function FW_AdoImportFromDBF parametr CODEPAGE (applies to source DBF) best regards KAJOT
is in FW_AdoImportFromDBF
This parameter is not provided.
is it possible to use Microsoft Word via ole?
I am trying to do like this and it doesn't work [code=fw:xjgce265]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">Define</span> <span style="color: #0000ff;">Window</span> oWndWord <span style="color: #0000ff;">from</span> <span style="color: #000000;">0</span>,<span style=...
is it possible to use Microsoft Word via ole?
Giovany, We have not been able to make it work as an ActiveX. We don't know why yet. You can access Word using TOleAuto, but you will not have its window inside yours. There are many examples in these forums: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=69228#p69228">vie...
is there a ""Frame"" Control under Fivewin
hi, what can i use under Fivewin as "Frame" <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> under HMG i use [code=fw:1v5kuhmz]<div class="fw" id="{CB}" style="font-family: monospace;">#xcommand @ <row> , <col> FRAME <name> ;<br />        <span style="color: #00000...
is there a ""Frame"" Control under Fivewin
Dear Jimmy, What is a FRAME ? Please post an image
is there a ""Frame"" Control under Fivewin
hi Antonio, [quote="Antonio Linares":3r4mw9a5] What is a FRAME ? [/quote:3r4mw9a5] it is like a GROUPBOX (WC_STATIC) around some Controls [img:3r4mw9a5]https&#58;//i&#46;postimg&#46;cc/pXfqRVnH/FRAME&#46;jpg[/img:3r4mw9a5]
is there a ""Frame"" Control under Fivewin
Hola buenos días, creo que es lo que necesitas [code=fw:31mzju2g]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ <span style="color: #000000;">5</span>, <span style="color: #000000;">8</span> GROUP oGrp <span style="color: #0000ff;">OF</span> oDlg <span style="color: #0000ff;">PIXEL</span> <span styl...
is there a ""Frame"" Control under Fivewin
hi, thx for Answer yes, i can use a Groupbox as "Frame" even it is not a "Group" of Controls what about "Line" in a Dialog / Window ?
is there someone of infoser.es of Madrid ?
please write me on my private e mail silvio[dot]falconi[@]gmail[dot]com. thanks
is updated 7.11 library available for download?
Mr Antonio Is an updated FWH 7.11 with all the fixes published so far in the forum available for download? Or is it planned ?
is updated 7.11 library available for download?
NageswaraRao, No, it is not available. We will publish FWH 7.12 by early december
isDerivedFrom() vs isKindOf()
hi all, is there any difference between isDerivedFrom() and isKindOf() ? They appear to be very similar Roberto
isDerivedFrom() vs isKindOf()
Both give the same results.
isdir-isdirectory no funcionan con server2012r2(NO RESUELTO)
Estimados con que funcion puedo reemplazar esta que no funcionan en server2012r2 lo que necesito es revisar si la ruta del server esta operativa [quote:zjekcsv1] isDir( "\\SERVER2012\XML" ) isDirectory( "\\SERVER2012\XML" ) [/quote:zjekcsv1] desde ya gracias
isdir-isdirectory no funcionan con server2012r2(NO RESUELTO)
Patricio: Me parece que la función es lIsDir(). Saludos
isdir-isdirectory no funcionan con server2012r2(NO RESUELTO)
[code=fw:9nuryjtm]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp; &nbsp;<span style="color: #00C800;">PRIVATE</span> cDirExe := cFILEPATH<span style="color: #000000;">&#40;</span>GETMODULEFILENAME<span style="color: #000000;">&#40;</span>GETINSTANCE<span style="color: #000000;">&#40;</span><span ...
isdir-isdirectory no funcionan con server2012r2(NO RESUELTO)
Estimados gracias por contestar pero no funciona en server2012r2 <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->
isdir-isdirectory no funcionan con server2012r2(NO RESUELTO)
[quote="Patricio Avalos Aguirre":1roe4wd8]Estimados gracias por contestar pero no funciona en server2012r2 <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( -->[/quote:1roe4wd8] Muestre como estás haciendo, porfa! Saludos.
isdir-isdirectory no funcionan con server2012r2(NO RESUELTO)
Estimado [quote:1pve5ayz]isDir( "\\SERVER2012\XML" ) isDirectory( "\\SERVER2012\XML" ) lIsdir( "\\SERVER2012\XML" )[/quote:1pve5ayz] [b:1pve5ayz]todas estas funciones funcionan bien en server2008 y server2003 server2012r2 no funcionan [/b:1pve5ayz]
isdir-isdirectory no funcionan con server2012r2(NO RESUELTO)
[url:12pm8i2u]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=3&t=29940&start=0[/url:12pm8i2u] Porfa, habla con Vilian, para veer como se ha resuelto ó no. Saludos.
isdir-isdirectory no funcionan con server2012r2(NO RESUELTO)
Gracias por contestar..
isdir-isdirectory no funcionan con server2012r2(NO RESUELTO)
Patricio, que usas Habrour ó xHarbour? cDirName := "R:\ECF" ? HB_DIREXISTS( cDirName ) [url:222lha8x]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=19797&p=104485&hilit=UNIDAD+DE+RED#p104485[/url:222lha8x] [url:222lha8x]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=6&t=1...
isexerunning (Solved)
HI, this code: (by EMG) IF ISEXERUNNING( CFILENOEXT( HB_ARGV( 0 ) ) ) SHOWWINDOW( FINDWINDOW( 0, "Titolo tua finestra" ), 9 ) SETFOREGROUNDWINDOW( FINDWINDOW( 0, "Titolo tua finestra" ) ) RETURN NIL ENDIF works before build window of exe?
isexerunning (Solved)
Norberto, It requires the main window to exist already
isexerunning (Solved)
Antonio, i need some method to before creation of the main window. I need detect it is already running and put the focus on open application.
isexerunning (Solved)
Norberto, Try to use: [code=fw:1ynmdol2]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">if</span> GetModuleHandle<span style="color: #000000;">&#40;</span> HB_ARGV<span style="color: #000000;">&#40;</span> <span style="color: #000000;">0</span> <span style="color: #000000;...
isexerunning (Solved)
Antonio, isexerunning works without main window, but i cant put focus in already open appl. thanks
isexerunning (Solved)
Norberto, If there is no user input in the already running app, what do you mean/expect giving it the focus ?
isexerunning (Solved)
Antonio, I need detect another instance of the same application, and if there is another instance, transfer focus to it, maybe showing the screen in the foreground, but I wanted to do this before the initial window, perhaps checking the name of the executable and not the window title. thanks
isexerunning (Solved)
Norberto, Try it: [code=fw:131awdx5]<div class="fw" id="{CB}" style="font-family: monospace;"><br />pTitulo:=<span style="color: #ff0000;">"Nome do teu sistema que fica na barra de cima da Window"</span><br /><span style="color: #00C800;">If</span> IsExeRunning<span style="color: #000000;">&#40;</span> cFilename<span...
isexerunning (Solved)
Kleyber, this works after build main window, i need before. i need something using the name of exe, not main windows title, because at this point , it not create. Thanks
isexerunning (Solved)
Norberto, this is working for me. Best regards, Otto [code=fw:19fvw5xw]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FUNCTION</span> main<br />&nbsp;&nbsp; &nbsp;<span style="color: #00C800;">if</span> IsExeRunning<span style="color: #000000;">&#40;</span> cFileName<span style...
isexerunning (Solved)
Can we see a little but complete sample showing your problem? I didn't understand it. EMG
isexerunning (Solved)
Enrico, Otto, thanks, but dont work to me. I wanted check the existence of another instance the application before creating the main window, before checking the User, open files, etc. all the solutions posted work after the main window created .I wanted first of all, at the beginning of the system. May have to get the...
isexerunning (Solved)
My sample works [b:199b73t7]before[/b:199b73t7] the main windows is created. EMG
isexerunning (Solved)
[quote="norberto":33zkhoxf]Kleyber, this works after build main window, i need before. i need something using the name of exe, not main windows title, because at this point , it not create. Thanks[/quote:33zkhoxf] Norberto, I would like to understand it better: If you have another instance of your program, how is th...
isexerunning (Solved)
hI, isexerunning detects another instance, but i cant put this in foreground (focus).
isexerunning (Solved)
Yes, you can. That's just what my sample does. I use it in my applications. EMG
isexerunning (Solved)
EMG, all solutions posted works, but dont change the focus and max the first instance, see this video, with tutor01: <!-- m --><a class="postlink" href="http://youtu.be/HZ_-tw_qTpU">http://youtu.be/HZ_-tw_qTpU</a><!-- m --> another instance is detected, but not focused, only if i click on it. in video i missing chan...
isexerunning (Solved)
[code=fw:1g4werba]<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: #B900B9;">//----------------------------------------------------------------------------//</span><br /><br /><span st...
isexerunning (Solved)
Enrico, all, solved!! I use database fields to make the title of the main window, like a->field1+a->field2, perhaps it has spaces in the field, not finding the window title, after use a constant as name of the main window, it worked. I think that all solutions posted work, the error was in the way I was building the...
jDrop found on Harbour.org svn
I just tried to get a fresh download from svn, y this poped up: [img:2sq7aukd]http&#58;//www&#46;mayapos&#46;com/FiveWin/jdrop&#46;png[/img:2sq7aukd] I have no idea of how to let the development team know, so if someone can do it for me, I'll apreciate it....
jDrop found on Harbour.org svn
Bayron, Are you using TortoiseSVN ? Use it
jDrop found on Harbour.org svn
Yes, that is the one I am using... This message poped up about 5 times when I did a full new download...
jDrop found on Harbour.org svn
It seems that only happened because I downloaded the full project... It did not happened when I only downloaded from [color=#0000FF:1ap74qr9]trunk/harbour[/color:1ap74qr9]....
james
where is james bott?
james
He has been very busy. Sent from my iPhone using Tapatalk
james
[quote="TimStone":1pw6kq6n]He has been very busy. Sent from my iPhone using Tapatalk[/quote:1pw6kq6n] [b:1pw6kq6n]with tdata seem no work good[/b:1pw6kq6n] I not see index tag on combobox with tdatabase or normal dbf It run ok [img:1pw6kq6n]https&#58;//i&#46;postimg&#46;cc/Z5NGsYNH/t&#46;png[/img:1pw6kq6n] [b...
james
Yo haria asi: +-. [code=fw:zb1rtjp3]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// SAMPLES\SILDATAB.PRG</span><br /><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br />ANNOUNCE RDDSYS <span style="color: #B9...
james
[quote="karinha":393juhlv]Yo haria asi: +-. [code=fw:393juhlv]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// SAMPLES\SILDATAB.PRG</span><br /><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br />ANNOUNCE RDDS...
james
Sorry, my version doesn't have: fwh\samples\xbsortcb.prg Regards.
james
When I created the application for the beach, in December 2020 james corrected the definitions for opening the archives by creating a class called Tincremental which was only used to add a counter. In these definitions james omits[b:38gr53kv] the "DBFCDX" driver[/b:38gr53kv] because perhaps with Tdata it was not nee...
james
You don't ever want to add the database driver in the database class's New() method--you should define the default driver at the beginning of the program. This way all routines in the app use the same driver and if you ever want to change the driver you only have to change it in one place. The only exception to this r...
james
[quote="James Bott":1dbzqtbh]You don't ever want to add the database driver in the database class's New() method--you should define the default driver at the beginning of the program. This way all routines in the app use the same driver and if you ever want to change the driver you only have to change it in one place. ...
java installed
how to check if java installed on your computer? thanks
java installed
[b:3poov0qf]Option 1:-[/b:3poov0qf] Running the following command in the command prompt will return the Java Version Installed, If Java is not installed then it would return “Unknown Command” error message. [code=fw:3poov0qf]<div class="fw" id="{CB}" style="font-family: monospace;">java -version</div>[/code:3poov0qf]...
java installed
thanks Anser
jkIDE: impressions / experiences / perspectives
Greetings! [b:ldjnuhu4][u:ldjnuhu4]JKide[/b:ldjnuhu4][/u:ldjnuhu4] Last Updated: friday, april 2, 2010... [img:ldjnuhu4]http&#58;//i54&#46;tinypic&#46;com/288nv4j&#46;png[/img:ldjnuhu4] [url=http&#58;//visualfivewin&#46;blogspot&#46;com/2010/04/visual-fivewin-build-93&#46;html:ldjnuhu4]Site[/url:ldjnuhu4] & [url=htt...
jkIDE: impressions / experiences / perspectives
Francis, We have contacted a few times with jkIde developer (Patrick Fan) to help him providing him latest FWH version, plus our help and support, but he does not seem to be very responsive, neither has a wish to provide open sources of his FiveWin derivative work <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" al...