messages
listlengths
1
1
topic
stringlengths
2
60
[ { "date": "2009-06-22", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello Antonio,\n\nthank you. Now it is working.\nWould you please be so kind to tell me what the values are for.\n\nThanks in advance\nOtto\n\n[img:3g1wi104]http://www.atzwanger-software.com/fw/rescheck.jpg[/img:3g1wi104]", "time": "08:11", "topic": "Checking non released GDI objects", "username": "Otto" } ]
Checking non released GDI objects
[ { "date": "2009-06-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Otto,\n\nThis is the way to use it:\n\nAt the beginning of your app you call SetResDebug()\n\nThen you call to CheckRes() before going into an app option (dialog, report, etc) then you exit it, and go into it again calling CheckRes() first. That way you will see if your GDI cosumed objets grow, or remains the same ones.", "time": "07:16", "topic": "Checking non released GDI objects", "username": "Antonio Linares" } ]
Checking non released GDI objects
[ { "date": "2009-06-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\n>Then you call to CheckRes() before going into an app option (dialog, report, etc) then you exit it, and go into it again calling CheckRes() first. \n\nI'm with Otto, I'm not sure what I am seeing. Is the second column the windows handle? What is the last column?\n\nDo we need to just count the listed items (unreleased items) before entering a routine and then again after? If so, then perhaps it would help if we had another function that would just return the count. This way we could record it before and then after the routine we could check it against the before count. Manually counting the items in the displayed list each time will be tedious and prone to error.\n\nJames", "time": "00:35", "topic": "Checking non released GDI objects", "username": "James Bott" } ]
Checking non released GDI objects
[ { "date": "2009-06-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello James.\n\n> Is the second column the windows handle? \nyes, is control handle\n\n> What is the last column?\nis the numer line from call", "time": "01:14", "topic": "Checking non released GDI objects", "username": "Daniel Garcia-Gil" } ]
Checking non released GDI objects
[ { "date": "2009-06-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks, Daniel, now if we can just the function I described, we will be able to troubleshoot these unreleased resources easily.\n\nActually, after I thought about it more, it would be valuable to have access to the array containg this data. Then we could store the array before entering a routine, then after the routine, compare the new array and isolate just those new unreleased resources. This is what we would have to do manually anyway. In the best case, we can try to track down why those resources are not being released. In the case where we can't find the problem, we could automatically release the new unreleased resources when exiting the routine. This could be made generic so we could use it with any troublesome routine.\n\nJames", "time": "01:19", "topic": "Checking non released GDI objects", "username": "James Bott" } ]
Checking non released GDI objects
[ { "date": "2009-06-27", "forum": "FiveWin for Harbour/xHarbour", "text": ">\n it would be valuable to have access to the array containg this data.\n>\nThat is the static array, aResources. We can use it in our program the way you wanted to. We may add a function CheckResArray() to return the static array,\n\nAlso the message displayed by checkres() function can have the number of resources in the first line.", "time": "03:43", "topic": "Checking non released GDI objects", "username": "nageswaragunupudi" } ]
Checking non released GDI objects
[ { "date": "2010-01-05", "forum": "FiveWin for Harbour/xHarbour", "text": "Is MemProof a standalone program. How can it be used with FIVEWIN?\nThanks in advance\nOtto", "time": "11:46", "topic": "Checking non released GDI objects", "username": "Otto" } ]
Checking non released GDI objects
[ { "date": "2017-10-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello,\n\nHow can I check if a SMTP-server is existing?\nI'd like to test it with for instance [b:30jocsms]uit.telenet.be[/b:30jocsms].\nThanks a lot for any help.", "time": "20:49", "topic": "Checking on internet - solved", "username": "driessen" } ]
Checking on internet - solved
[ { "date": "2017-10-27", "forum": "FiveWin for Harbour/xHarbour", "text": "This is a sample:\n\n[code=fw:1o1ry7lr]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #00C800;\">FUNCTION</span> MAIN<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp; ? HB_PING<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"uit.telenet.be\"</span> <span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp; <span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> BEGINDUMP<br /><br /><span style=\"color: #00D7D7;\">#include</span> <hbapi.h> <br /><span style=\"color: #00D7D7;\">#include</span> <winsock2.h><br /><span style=\"color: #00D7D7;\">#include</span> <iphlpapi.h><br /><span style=\"color: #00D7D7;\">#include</span> <icmpapi.h><br /><br />int hb_Ping<span style=\"color: #000000;\">&#40;</span> const char * cp <span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #000000;\">&#123;</span><br />&nbsp; &nbsp; HANDLE hIcmpFile;<br />&nbsp; &nbsp; unsigned long ipaddr;<br />&nbsp; &nbsp; DWORD dwRetVal;<br />&nbsp; &nbsp; char SendData<span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">32</span><span style=\"color: #000000;\">&#93;</span> = <span style=\"color: #ff0000;\">\"Data Buffer\"</span>;<br />&nbsp; &nbsp; LPVOID ReplyBuffer;<br />&nbsp; &nbsp; DWORD ReplySize;<br /><br />&nbsp; &nbsp; <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> isalpha<span style=\"color: #000000;\">&#40;</span> cp<span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span> &nbsp; &nbsp; &nbsp;<span style=\"color: #B900B9;\">//host address is a name</span><br />&nbsp; &nbsp; <span style=\"color: #000000;\">&#123;</span><br />&nbsp; &nbsp; &nbsp; &nbsp;WSADATA wsaData;<br />&nbsp; &nbsp; &nbsp; &nbsp;int &nbsp; &nbsp; iResult;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp;iResult = WSAStartup<span style=\"color: #000000;\">&#40;</span> MAKEWORD<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">2</span>, <span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">&#41;</span>, &wsaData <span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> iResult == <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #000000;\">&#123;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; struct hostent *remoteHost = gethostbyname<span style=\"color: #000000;\">&#40;</span> cp <span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> remoteHost != <span style=\"color: #00C800;\">NULL</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ipaddr = *<span style=\"color: #000000;\">&#40;</span>unsigned long *<span style=\"color: #000000;\">&#41;</span> remoteHost->h_addr_list<span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span>;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WSACleanup<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp; <span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp; <span style=\"color: #00C800;\">else</span><br />&nbsp; &nbsp; &nbsp; &nbsp;ipaddr = inet_addr<span style=\"color: #000000;\">&#40;</span> cp <span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">&#40;</span>ipaddr == INADDR_NONE<span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">1</span>;<br />&nbsp; &nbsp; <br />&nbsp; &nbsp; hIcmpFile = IcmpCreateFile<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">&#40;</span>hIcmpFile == INVALID_HANDLE_VALUE<span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">2</span>;<br /><br />&nbsp; &nbsp; ReplySize = sizeof<span style=\"color: #000000;\">&#40;</span>ICMP_ECHO_REPLY<span style=\"color: #000000;\">&#41;</span> + sizeof<span style=\"color: #000000;\">&#40;</span>SendData<span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; ReplyBuffer = <span style=\"color: #000000;\">&#40;</span>VOID*<span style=\"color: #000000;\">&#41;</span> malloc<span style=\"color: #000000;\">&#40;</span>ReplySize<span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">&#40;</span>ReplyBuffer == <span style=\"color: #00C800;\">NULL</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; <span style=\"color: #000000;\">&#123;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; IcmpCloseHandle<span style=\"color: #000000;\">&#40;</span>hIcmpFile<span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">3</span>;<br />&nbsp; &nbsp; <span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp; <br />&nbsp; &nbsp; <br />&nbsp; &nbsp; dwRetVal = IcmpSendEcho<span style=\"color: #000000;\">&#40;</span>hIcmpFile, ipaddr, SendData, sizeof<span style=\"color: #000000;\">&#40;</span>SendData<span style=\"color: #000000;\">&#41;</span>, <br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">NULL</span>, ReplyBuffer, ReplySize, <span style=\"color: #000000;\">1000</span><span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; free<span style=\"color: #000000;\">&#40;</span>ReplyBuffer<span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; IcmpCloseHandle<span style=\"color: #000000;\">&#40;</span>hIcmpFile<span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">&#40;</span>dwRetVal == <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">4</span>;<br />&nbsp; &nbsp; <br />&nbsp; &nbsp; <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">0</span>;<br /><br /><span style=\"color: #000000;\">&#125;</span><br /><br /><span style=\"color: #00C800;\">HB_FUNC</span><span style=\"color: #000000;\">&#40;</span> HB_PING <span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #000000;\">&#123;</span><br />&nbsp; &nbsp;hb_retni<span style=\"color: #000000;\">&#40;</span> hb_Ping<span style=\"color: #000000;\">&#40;</span> hb_parc<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span>;<br /><span style=\"color: #000000;\">&#125;</span><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> ENDDUMP</div>[/code:1o1ry7lr]\n\nEMG", "time": "21:15", "topic": "Checking on internet - solved", "username": "Enrico Maria Giordano" } ]
Checking on internet - solved
[ { "date": "2017-10-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Enrico,\n\nThanks a lot for your help.\nIt works just fine.", "time": "22:24", "topic": "Checking on internet - solved", "username": "driessen" } ]
Checking on internet - solved
[ { "date": "2017-10-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Please note: it's not my code. I don't remember where I got it from, sorry.\n\nEMG", "time": "09:04", "topic": "Checking on internet - solved", "username": "Enrico Maria Giordano" } ]
Checking on internet - solved
[ { "date": "2017-10-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Enrico,\n\nDo you have any idea why this code HB_PING is working fine with Harbour, but not with xHarbour Builder?\nIn that case, I got an error \"couldn't build\" without mentioning anything else.\n\nThanks.", "time": "16:32", "topic": "Checking on internet - solved", "username": "driessen" } ]
Checking on internet - solved
[ { "date": "2017-10-30", "forum": "FiveWin for Harbour/xHarbour", "text": "It works fine here using official xHarbour. For xHarbour Builder you have to ask for support to xHarbour.com guys.\n\nEMG", "time": "16:36", "topic": "Checking on internet - solved", "username": "Enrico Maria Giordano" } ]
Checking on internet - solved
[ { "date": "2017-10-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Enrico,\n\nThanks. I will do that.", "time": "16:47", "topic": "Checking on internet - solved", "username": "driessen" } ]
Checking on internet - solved
[ { "date": "2017-10-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Maybe:\n\n[code=fw:1c372g2q]<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 /><span style=\"color: #00C800;\">FUNCTION</span> MAIN<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #00C800;\">LOCAL</span> cTestPing<br /><br />&nbsp; &nbsp;<span style=\"color: #B900B9;\">// Direct of Machine(computer).</span><br />&nbsp; &nbsp;<span style=\"color: #B900B9;\">// cTestPing := ( \"http://speedtest.copel.net/\" ) &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Correct</span><br />&nbsp; &nbsp;<span style=\"color: #B900B9;\">// ShellExecute(GetActiveWindow(),\"open\",'\"'+cTestPing+'\"') // correct</span><br /><br />&nbsp; &nbsp;<span style=\"color: #B900B9;\">// cTestPing := ( \"uit.telenet.be\" ) &nbsp;// ERROR return 0</span><br />&nbsp; &nbsp;cTestPing := <span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"http://duits.telenet.be/\"</span> <span style=\"color: #000000;\">&#41;</span> &nbsp; <span style=\"color: #B900B9;\">// return 4, correct?</span><br /><br />&nbsp; &nbsp;? HB_PING<span style=\"color: #000000;\">&#40;</span> cTestPing <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> BEGINDUMP<br /><br /><span style=\"color: #00D7D7;\">#include</span> <hbapi.h> <br /><span style=\"color: #00D7D7;\">#include</span> <winsock2.h><br /><span style=\"color: #00D7D7;\">#include</span> <iphlpapi.h><br /><span style=\"color: #00D7D7;\">#include</span> <icmpapi.h><br /><br />int hb_Ping<span style=\"color: #000000;\">&#40;</span> const char * cp <span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #000000;\">&#123;</span><br />&nbsp; &nbsp; HANDLE hIcmpFile;<br />&nbsp; &nbsp; unsigned long ipaddr;<br />&nbsp; &nbsp; DWORD dwRetVal;<br />&nbsp; &nbsp; char SendData<span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">32</span><span style=\"color: #000000;\">&#93;</span> = <span style=\"color: #ff0000;\">\"Data Buffer\"</span>;<br />&nbsp; &nbsp; LPVOID ReplyBuffer;<br />&nbsp; &nbsp; DWORD ReplySize;<br /><br />&nbsp; &nbsp; <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> isalpha<span style=\"color: #000000;\">&#40;</span> cp<span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span> &nbsp; &nbsp; &nbsp;<span style=\"color: #B900B9;\">//host address is a name</span><br />&nbsp; &nbsp; <span style=\"color: #000000;\">&#123;</span><br />&nbsp; &nbsp; &nbsp; &nbsp;WSADATA wsaData;<br />&nbsp; &nbsp; &nbsp; &nbsp;int &nbsp; &nbsp; iResult;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp;iResult = WSAStartup<span style=\"color: #000000;\">&#40;</span> MAKEWORD<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">2</span>, <span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">&#41;</span>, &wsaData <span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> iResult == <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #000000;\">&#123;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; struct hostent *remoteHost = gethostbyname<span style=\"color: #000000;\">&#40;</span> cp <span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">if</span><span style=\"color: #000000;\">&#40;</span> remoteHost != <span style=\"color: #00C800;\">NULL</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ipaddr = *<span style=\"color: #000000;\">&#40;</span>unsigned long *<span style=\"color: #000000;\">&#41;</span> remoteHost->h_addr_list<span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#93;</span>;<br /><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WSACleanup<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp;<span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp; <span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp; <span style=\"color: #00C800;\">else</span><br />&nbsp; &nbsp; &nbsp; &nbsp;ipaddr = inet_addr<span style=\"color: #000000;\">&#40;</span> cp <span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">&#40;</span>ipaddr == INADDR_NONE<span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">1</span>;<br />&nbsp; &nbsp; <br />&nbsp; &nbsp; hIcmpFile = IcmpCreateFile<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">&#40;</span>hIcmpFile == INVALID_HANDLE_VALUE<span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">2</span>;<br /><br />&nbsp; &nbsp; ReplySize = sizeof<span style=\"color: #000000;\">&#40;</span>ICMP_ECHO_REPLY<span style=\"color: #000000;\">&#41;</span> + sizeof<span style=\"color: #000000;\">&#40;</span>SendData<span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; ReplyBuffer = <span style=\"color: #000000;\">&#40;</span>VOID*<span style=\"color: #000000;\">&#41;</span> malloc<span style=\"color: #000000;\">&#40;</span>ReplySize<span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">&#40;</span>ReplyBuffer == <span style=\"color: #00C800;\">NULL</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; <span style=\"color: #000000;\">&#123;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; IcmpCloseHandle<span style=\"color: #000000;\">&#40;</span>hIcmpFile<span style=\"color: #000000;\">&#41;</span>;<br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">3</span>;<br />&nbsp; &nbsp; <span style=\"color: #000000;\">&#125;</span><br />&nbsp; &nbsp; <br />&nbsp; &nbsp; <br />&nbsp; &nbsp; dwRetVal = IcmpSendEcho<span style=\"color: #000000;\">&#40;</span>hIcmpFile, ipaddr, SendData, sizeof<span style=\"color: #000000;\">&#40;</span>SendData<span style=\"color: #000000;\">&#41;</span>, <br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">NULL</span>, ReplyBuffer, ReplySize, <span style=\"color: #000000;\">1000</span><span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; free<span style=\"color: #000000;\">&#40;</span>ReplyBuffer<span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; IcmpCloseHandle<span style=\"color: #000000;\">&#40;</span>hIcmpFile<span style=\"color: #000000;\">&#41;</span>;<br /><br />&nbsp; &nbsp; <span style=\"color: #00C800;\">if</span> <span style=\"color: #000000;\">&#40;</span>dwRetVal == <span style=\"color: #000000;\">0</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">4</span>;<br />&nbsp; &nbsp; <br />&nbsp; &nbsp; <span style=\"color: #00C800;\">return</span> <span style=\"color: #000000;\">0</span>;<br /><br /><span style=\"color: #000000;\">&#125;</span><br /><br /><span style=\"color: #00C800;\">HB_FUNC</span><span style=\"color: #000000;\">&#40;</span> HB_PING <span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #000000;\">&#123;</span><br />&nbsp; &nbsp;hb_retni<span style=\"color: #000000;\">&#40;</span> hb_Ping<span style=\"color: #000000;\">&#40;</span> hb_parc<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">1</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span>;<br /><span style=\"color: #000000;\">&#125;</span><br /><br /><span style=\"color: #00D7D7;\">#pragma</span> ENDDUMP<br />&nbsp;</div>[/code:1c372g2q]", "time": "20:09", "topic": "Checking on internet - solved", "username": "karinha" } ]
Checking on internet - solved
[ { "date": "2005-12-25", "forum": "FiveWin for Harbour/xHarbour", "text": "I am Looking for a way to load the Order bag Names and the key, and\nthe for from a CDX Index into a Arrary for Checking. I wish to see if\nthe Order bag Name is in the Index or not. I know how to create a new\nOrder bag Name, and Delete the Name. But can you load the Information\nfrom the CDX Index for checking, and displaying.\n\nThank you\nJim\n <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->", "time": "23:54", "topic": "Checking to see if Order Name Exist or Not on a CDX Index", "username": "J-Bohanan" } ]
Checking to see if Order Name Exist or Not on a CDX Index
[ { "date": "2005-12-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Jim,\n\nThis code from FWH/ErrSysW.prg may help you:\n\n[code:2d8z484b]\nfor j = 1 to 15\n if ! Empty&#40; &#40; Alias&#40; n &#41; &#41;->&#40; IndexKey&#40; j &#41; &#41; &#41;\n cErrorLog += Space&#40; 8 &#41; + ;\n If&#40; &#40; Alias&#40; n &#41; &#41;->&#40; IndexOrd&#40;&#41; &#41; == j, \"=> \", \" \" &#41; + ;\n PadR&#40; &#40; Alias&#40; n &#41; &#41;->&#40; IndexKey&#40; j &#41; &#41;, 35 &#41; + ;\n &#40; Alias&#40; n &#41; &#41;->&#40; OrdName&#40; j &#41; &#41; + ;\n CRLF\n endif\nnext\n[/code:2d8z484b]", "time": "00:52", "topic": "Checking to see if Order Name Exist or Not on a CDX Index", "username": "Antonio Linares" } ]
Checking to see if Order Name Exist or Not on a CDX Index
[ { "date": "2009-05-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi guys,\n\nToday i was building a new routine in my system and unfortunately I took a look at the system memory, wow, what i could is even after finished that routine my app was using the same memory as before(running the routine). \n\nSo I closed my app and opened it again, the memory at this time was something around 6.334 kb. So i started surfing around my system(just opening somethings and closing) and checking the memory at the same time, the memory was just incrising never getting low again.\n\nI'm confused now.\n\nDoes fivewin or xharbour clean memory after finished a routine? Or just clean up when the app is closed?\n\n\n\nRegards,\nDiego", "time": "21:51", "topic": "Checking up the system memory", "username": "dempty" } ]
Checking up the system memory
[ { "date": "2009-05-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Diego,\n\nIf you are using Images, Brushes, Fonts, Timers in your application, you have to end their \nhandles immediately after closing their parent Window/Dialog.\n\nDEFINE BRUSH oBrush RESOURCE \"myresource\"\nDEFINE FONT oFont NAME \"Ms Sans Serif\" SIZE 0, -9\n...\n..\noFont:End()\nor \nRELEASE oFont\n\noBrush:End()\nor\nRELEASE oBrush\n\nOtherwise they keep consuming the GDI Resource memory and maintains\nmemory leakage. And also your System memory can not be regained even \nafter closing your application\n\nHope you understood.\n\nRegards,\n\n- Ramesh Babu P", "time": "00:43", "topic": "Checking up the system memory", "username": "RAMESHBABU" } ]
Checking up the system memory
[ { "date": "2006-04-14", "forum": "All products support", "text": "Ciao a tutti.\n\nSto creando un programma con Fivewin, in una prima pagina\nho una trentina di GET, passando in una seconda pagina ho\naltre 5 GET.\n\nCon il 98 tutto ok, quando uso XP si pianta alla seconda pagina,\nse disattivo anche un solo GET funziona.\n\nSono un pò alle prime armi con questo tipo di programmazzione,\nnon so se sia un problema di File aperti, visto che XP non usa\npiù autoexec e config, o qualcos'altro.\n\nQualcuno può aiutarmi?\n\nGrazie.", "time": "19:35", "topic": "Chi mi può aiutare?", "username": "ik1mtt" } ]
Chi mi può aiutare?
[ { "date": "2006-04-14", "forum": "All products support", "text": "C'è bisogno di ulteriori indizi. Sarebbe molto più facile se fornissi un programma [b:162pmy8c]minimale[/b:162pmy8c] ma completo di tutto il necessario per compilarlo ed eseguirlo e che mostri chiaramente il problema.\n\nEMG", "time": "21:11", "topic": "Chi mi può aiutare?", "username": "Enrico Maria Giordano" } ]
Chi mi può aiutare?
[ { "date": "2022-11-09", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n\nhow can i find out which Control are Child OF oWnd <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->", "time": "05:23", "topic": "Child OF oWnd", "username": "Jimmy" } ]
Child OF oWnd
[ { "date": "2022-11-09", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear Jimmy,\n\noWnd:aControls", "time": "08:17", "topic": "Child OF oWnd", "username": "Antonio Linares" } ]
Child OF oWnd
[ { "date": "2022-11-09", "forum": "FiveWin for Harbour/xHarbour", "text": "hi Antonio,\n[quote=\"Antonio Linares\":1he8k718]\noWnd:aControls[/quote:1he8k718]\nah,thx", "time": "09:18", "topic": "Child OF oWnd", "username": "Jimmy" } ]
Child OF oWnd
[ { "date": "2022-11-09", "forum": "FiveWin for Harbour/xHarbour", "text": "hi Antonio,\n\nwhen use FWLOG i got\n[quote:2qdq8gkv] oMain:aControls = {TSAY,TCOMBOBOX,TFOLDER,TCOMBOBOX,TFOLDER,TSPLITTER, ...} [/quote:2qdq8gkv]\nQuestion :\nhow to \"identify\" Control \"Type\" <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \nare Array Element a Object <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\n[code=fw:2qdq8gkv]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">   <span style=\"color: #00C800;\">FOR</span> ii := <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">TO</span> LEN<span style=\"color: #000000;\">&#40;</span>oMain:<span style=\"color: #000000;\">aControls</span><span style=\"color: #000000;\">&#41;</span><br />      Object := oMain:<span style=\"color: #000000;\">aControls</span><span style=\"color: #000000;\">&#91;</span>ii<span style=\"color: #000000;\">&#93;</span><br />      <span style=\"color: #00C800;\">DO</span> <span style=\"color: #00C800;\">CASE</span><br />         <span style=\"color: #00C800;\">CASE</span> Object:<span style=\"color: #000000;\">isDerivedFrom</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"TSAY\"</span><span style=\"color: #000000;\">&#41;</span>  <span style=\"color: #B900B9;\">// Xbase++ Syntax</span><br />            Object:<span style=\"color: #000000;\">SetPos</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />            Object:<span style=\"color: #000000;\">SetSize</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>      </div>[/code:2qdq8gkv]\n\n---\n\nif i know \"Type\" of Object and Element \"is\" a Object : can i write this Way <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\n[code=fw:2qdq8gkv]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">   <span style=\"color: #B900B9;\">// TSAY</span><br />   oMain:<span style=\"color: #000000;\">aControls</span><span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">1</span><span style=\"color: #000000;\">&#93;</span>:<span style=\"color: #000000;\">SETTEXT</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #ff0000;\">\"hello world\"</span><span style=\"color: #000000;\">&#41;</span><br /><br />   <span style=\"color: #B900B9;\">// TCOMBOBOX</span><br />   oMain:<span style=\"color: #000000;\">aControls</span><span style=\"color: #000000;\">&#91;</span><span style=\"color: #000000;\">2</span><span style=\"color: #000000;\">&#93;</span>:<span style=\"color: #0000ff;\">Select</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">3</span><span style=\"color: #000000;\">&#41;</span>   <span style=\"color: #B900B9;\">// 3rd Item</span></div>[/code:2qdq8gkv]", "time": "11:25", "topic": "Child OF oWnd", "username": "Jimmy" } ]
Child OF oWnd
[ { "date": "2022-11-09", "forum": "FiveWin for Harbour/xHarbour", "text": "Yes, that's right", "time": "14:11", "topic": "Child OF oWnd", "username": "cnavarro" } ]
Child OF oWnd
[ { "date": "2022-11-09", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear Jimmy,\n\nHarbour supports isDerivedFrom also:\n\n[code=fw:1cwyjw1y]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">&#40;</span> oControl:<span style=\"color: #000000;\">isDerivedFrom</span><span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"TWINDOW\"</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span></div>[/code:1cwyjw1y]", "time": "15:14", "topic": "Child OF oWnd", "username": "Antonio Linares" } ]
Child OF oWnd
[ { "date": "2022-11-10", "forum": "FiveWin for Harbour/xHarbour", "text": "hi Antonio,\n[quote=\"Antonio Linares\":9hdbab4c]Harbour supports isDerivedFrom also:\n[code=fw:9hdbab4c]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">&#40;</span> oControl:<span style=\"color: #000000;\">isDerivedFrom</span><span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"TWINDOW\"</span> <span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span></div>[/code:9hdbab4c][/quote:9hdbab4c]\nthat help me very much <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\n---\n\nwhen using FWLOG i \"just\" got 1-DIM Array which Controls\n[quote:9hdbab4c]oMain:aControls = {TSAY,TCOMBOBOX,TFOLDER,TCOMBOBOX,TFOLDER,TSPLITTER,TBUTTON, ... }[/quote:9hdbab4c]\nbut when look at each Control there are \"more\" (Array)\n[code=fw:9hdbab4c]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">   x :=  hb_valToExp<span style=\"color: #000000;\">&#40;</span>oMain:<span style=\"color: #000000;\">aControls</span><span style=\"color: #000000;\">&#91;</span>ii<span style=\"color: #000000;\">&#93;</span><span style=\"color: #000000;\">&#41;</span></div>[/code:9hdbab4c]\n[quote:9hdbab4c]__itemSetObj( __itemSetRef( {{HWND, 394868}, {NOLDPROC, 4294903408}, {CCAPTION, }, {CVARNAME, oSayActive}, {NID, 102}, {TWINDOW:NTOP, 864}, {TWINDOW:NLEFT, 10}, {NBOTTOM, 893}, {NRIGHT, 649.00}, {NSTYLE, 1342177280}, {NCLRPANE, 16777215}, {NCLRTEXT, 0}, {ACONTROLS, {}}, {OBRUSH, {{HBRUSH, 9437200}, {HBITMAP, 0}, {HBMPORGL, 0}, {NCOUNT, 6}, {NRGBCOLOR, 16777215}, {LSYSTEM, .T.}, {USOURCE, CLR_WHITE}}}, {OFONT, {{CFACENAME, TAHOMA}, {HFONT, 1242174205}, {HFONTOLD, 0}, {LBOLD, .F.}, {LITALIC, .F.}, {LUNDERLINE, .F.}, {LSTRIKEOUT, .F.}, {NINPHEIGHT, -20}, {NINPWIDTH, 0}, {NESCAPEMENT, 0}, {NORIENTATION, 0}, {NWEIGHT, 0}, {NCHARSET, 0}, {NOUTPRECISION, 0}, {NCLIPPRECISION, 0}, {NQUALITY, 0}, {NPITCHFAMILY, 0}, {NCOUNT, 27}, {LDESTROY, .T.}, {LNEW, .F.}}} , ...[/quote:9hdbab4c]\nthe 1st Sub-Array seems to be Control itself and have all Information of it include \"Name\" (CVARNAME) \nbut also \"all other\" Control (not show in Sample) include \"Main\" are in \"Log\" of \"x\" <!-- s:shock: --><img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" /><!-- s:shock: --> \n\nQuestion : are these \"Original\" Value in Array or will they change <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: -->", "time": "06:44", "topic": "Child OF oWnd", "username": "Jimmy" } ]
Child OF oWnd
[ { "date": "2022-11-10", "forum": "FiveWin for Harbour/xHarbour", "text": "Dear Jimmy,\n\nKeep in mind that each control keeps a DATA oWnd that holds its parent object", "time": "07:49", "topic": "Child OF oWnd", "username": "Antonio Linares" } ]
Child OF oWnd
[ { "date": "2014-10-18", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi All,\n\nI have a child dialog defined in .RC as WS_CHILD.. it has 2 purpose, one for data entry as child and should be popup when viewing..\n\nhow to do it WS_POPUP when I redefine it?.... without using another window as parent.. \n\nPossible?", "time": "04:56", "topic": "Child dialog defined in .RC then redefine as Popup - SOLVED", "username": "fraxzi" } ]
Child dialog defined in .RC then redefine as Popup - SOLVED
[ { "date": "2014-10-18", "forum": "FiveWin for Harbour/xHarbour", "text": "Frances,\n\nTry changing its style from the ON INIT clause usign SetWindowLong( hWnd, GWL_STYLE, ... )", "time": "13:47", "topic": "Child dialog defined in .RC then redefine as Popup - SOLVED", "username": "Antonio Linares" } ]
Child dialog defined in .RC then redefine as Popup - SOLVED
[ { "date": "2014-10-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\n\nIt didn't worked. <!-- s:( --><img src=\"{SMILIES_PATH}/icon_sad.gif\" alt=\":(\" title=\"Sad\" /><!-- s:( -->", "time": "06:28", "topic": "Child dialog defined in .RC then redefine as Popup - SOLVED", "username": "fraxzi" } ]
Child dialog defined in .RC then redefine as Popup - SOLVED
[ { "date": "2014-10-20", "forum": "FiveWin for Harbour/xHarbour", "text": "Frances,\n\nCould you please show me your code for it ? thanks", "time": "07:06", "topic": "Child dialog defined in .RC then redefine as Popup - SOLVED", "username": "Antonio Linares" } ]
Child dialog defined in .RC then redefine as Popup - SOLVED
[ { "date": "2014-10-22", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\nI will finish a testbed program where I can collate and test my issues in FWH and post it here.\n\nthe dialog in .rc is like this\n[code=fw:3szsaqqo]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\"><br />MY_DIALOG DIALOGEX <span style=\"color: #000000;\">1</span>,<span style=\"color: #000000;\">1</span>,<span style=\"color: #000000;\">500</span>,<span style=\"color: #000000;\">500</span><br /><span style=\"color: #0000ff;\">FONT</span> <span style=\"color: #000000;\">9</span>,<span style=\"color: #ff0000;\">\"Verdana\"</span>,<span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">0</span>,<span style=\"color: #000000;\">0</span><br /><span style=\"color: #0000ff;\">STYLE</span> WS_CHILD<br />BEGIN<br />&nbsp; &nbsp; <span style=\"color: #B900B9;\">//....</span><br />END<br />&nbsp;</div>[/code:3szsaqqo]\n\nI use this MY_DIALOG to other container like FOLDEREX.. but I'd like to just pop it as dialog (without creating a Window container).", "time": "03:00", "topic": "Child dialog defined in .RC then redefine as Popup - SOLVED", "username": "fraxzi" } ]
Child dialog defined in .RC then redefine as Popup - SOLVED
[ { "date": "2014-10-22", "forum": "FiveWin for Harbour/xHarbour", "text": "Frances,\n\nAre you sure that you properly tested SetWindowLong( hWnd, GWL_STYLE, ... ) from the ON INIT clause ?", "time": "10:49", "topic": "Child dialog defined in .RC then redefine as Popup - SOLVED", "username": "Antonio Linares" } ]
Child dialog defined in .RC then redefine as Popup - SOLVED
[ { "date": "2014-10-23", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"Antonio Linares\":2q152kor]Frances,\n\nAre you sure that you properly tested SetWindowLong( hWnd, GWL_STYLE, ... ) from the ON INIT clause ?[/quote:2q152kor]\n\n\n\nAntonio,\n\nYes. I am very sure.\n\ni'm posting here my testbed.. this will grow as I encounter issues in FWH.\n\nUsing xMate as project manager.\n\n[url:2q152kor]https&#58;//drive&#46;google&#46;com/folderview?id=0B3UHMYq8I6tHUTJyWnlTN3lQcEU&usp=drive_web[/url:2q152kor]\n\n\nPlease help. Counting on you.\nIf you have gmail account I can add you to edit if you like.\n\nThanks.", "time": "00:50", "topic": "Child dialog defined in .RC then redefine as Popup - SOLVED", "username": "fraxzi" } ]
Child dialog defined in .RC then redefine as Popup - SOLVED
[ { "date": "2014-10-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Frances,\n\nHere this works fine <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\n[code=fw:26h1epp1]<div class=\"fw\" id=\"{CB}\" style=\"font-family: monospace;\">PROCEDURE uDialog01b<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp;<span style=\"color: #00C800;\">LOCAL</span> oDlg1, oDlg2<br />&nbsp;<span style=\"color: #00C800;\">LOCAL</span> oGet, uVar := Space<span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">10</span><span style=\"color: #000000;\">&#41;</span><br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg1 <span style=\"color: #0000ff;\">RESOURCE</span> <span style=\"color: #ff0000;\">'MY_DIALOG'</span><br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">REDEFINE</span> GROUP <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">1001</span> <span style=\"color: #0000ff;\">OF</span> oDlg1 TRANSPARENT<br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">SAY</span> <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">1002</span> <span style=\"color: #0000ff;\">OF</span> oDlg1 TRANSPARENT<br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">REDEFINE</span> <span style=\"color: #0000ff;\">GET</span> oGet <span style=\"color: #0000ff;\">VAR</span> uVar <span style=\"color: #0000ff;\">ID</span> <span style=\"color: #000000;\">1003</span> <span style=\"color: #0000ff;\">OF</span> oDlg1<br /><br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg1 <span style=\"color: #0000ff;\">NOWAIT</span> ;<br />&nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> oDlg1:<span style=\"color: #000000;\">Hide</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp; &nbsp; <br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg2<br />&nbsp; &nbsp;<br />&nbsp; &nbsp;<span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg2 ;<br />&nbsp; &nbsp; &nbsp; <span style=\"color: #0000ff;\">ON</span> <span style=\"color: #0000ff;\">INIT</span> <span style=\"color: #000000;\">&#40;</span> oDlg2:<span style=\"color: #000000;\">SetSize</span><span style=\"color: #000000;\">&#40;</span> oDlg1:<span style=\"color: #000000;\">nWidth</span>, oDlg1:<span style=\"color: #000000;\">nHeight</span> <span style=\"color: #000000;\">&#41;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; oDlg2:<span style=\"color: #0000ff;\">Center</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span>,;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; uChangeParent<span style=\"color: #000000;\">&#40;</span> oDlg1, oDlg2 <span style=\"color: #000000;\">&#41;</span>, oDlg1:<span style=\"color: #000000;\">End</span><span style=\"color: #000000;\">&#40;</span><span style=\"color: #000000;\">&#41;</span> <span style=\"color: #000000;\">&#41;</span><br />&nbsp; &nbsp;<br /><span style=\"color: #00C800;\">RETURN</span></div>[/code:26h1epp1]", "time": "06:46", "topic": "Child dialog defined in .RC then redefine as Popup - SOLVED", "username": "Antonio Linares" } ]
Child dialog defined in .RC then redefine as Popup - SOLVED
[ { "date": "2014-10-23", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n\nIf that is the approach, the procedure uDialog01a() could be much better... ??", "time": "08:31", "topic": "Child dialog defined in .RC then redefine as Popup - SOLVED", "username": "fraxzi" } ]
Child dialog defined in .RC then redefine as Popup - SOLVED
[ { "date": "2018-12-31", "forum": "FiveWin for Harbour/xHarbour", "text": "How to determine, if a dialog is inside a folder(ex)?", "time": "11:06", "topic": "Child of Folder", "username": "byte-one" } ]
Child of Folder
[ { "date": "2018-12-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Günther, try with\n\n? oDlg:oWnd:ClassName()", "time": "16:06", "topic": "Child of Folder", "username": "cnavarro" } ]
Child of Folder
[ { "date": "2018-12-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Thanks, but i have only the result of getactivewindow(). In a dialog with folders normally this gives the handle from the selected one of the dialogs in the folder. But i will check if this handle is a handle from a dialog in a folder.\nAlso a question for a function to get the oWnd- or oDlg-Object from a given (window)handle.", "time": "20:34", "topic": "Child of Folder", "username": "byte-one" } ]
Child of Folder
[ { "date": "2012-10-11", "forum": "Off Topic / Otros temas", "text": "[url:2ybkoh8y]http&#58;//streamfinder&#46;com/internet-radio-search/genre/Chillout[/url:2ybkoh8y]", "time": "12:53", "topic": "Chillout music (perfect for coding :-)", "username": "Antonio Linares" } ]
Chillout music (perfect for coding :-)
[ { "date": "2015-06-16", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\n I have to print somethink like this: English and Chinese text togheter\n\n[img:2jg78h1w]http&#58;//www&#46;marcoboschi&#46;it/public/china&#46;jpg[/img:2jg78h1w]\nHow can I do that?\n\nI usually use a program written in CAVO2.5 and libreries ReportPro 2.10\nBut all my programs are written in fivewin/xHarbour.\nAny hints?\n\nMarco", "time": "12:47", "topic": "Chinese", "username": "MarcoBoschi" } ]
Chinese
[ { "date": "2015-06-16", "forum": "FiveWin for Harbour/xHarbour", "text": "Marco,\n\nPlease review FWH\\samples\\unicode.prg", "time": "13:06", "topic": "Chinese", "username": "Antonio Linares" } ]
Chinese
[ { "date": "2015-06-16", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n I have ad old version and I obtain this\n[img:20ndmaix]http&#58;//www&#46;marcoboschi&#46;it/public/china2&#46;jpg[/img:20ndmaix]", "time": "13:42", "topic": "Chinese", "username": "MarcoBoschi" } ]
Chinese
[ { "date": "2015-06-16", "forum": "FiveWin for Harbour/xHarbour", "text": "For me it worked with Menus, Says on Window and WBrowse.", "time": "14:08", "topic": "Chinese", "username": "nageswaragunupudi" } ]
Chinese
[ { "date": "2015-06-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Your windows should install Chinese fonts .Print English letters and Chinese word can be mixed together .\n\nShuming Wang\n???????? \n Come from Guangzhou City,Guangdong Province", "time": "04:41", "topic": "Chinese", "username": "ShumingWang" } ]
Chinese
[ { "date": "2015-06-17", "forum": "FiveWin for Harbour/xHarbour", "text": "S.W.,\n this is a screenshot uf unicode.exe in my windows 7 pc.\n\n[img:27ubp75v]http&#58;//www&#46;marcoboschi&#46;it/public/china3&#46;jpg[/img:27ubp75v]\n\nI noticed that if unicode.exe lost focus and then takes it back Chinese characters are substituted with ????\n\nWhat do you think by adding a button that prints... will work ?\nAnd what about to store the content of oGet into a dbf field?\n\nMany thanks\n\nMarco", "time": "10:32", "topic": "Chinese", "username": "MarcoBoschi" } ]
Chinese
[ { "date": "2015-06-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Oh!I use Chinese GBK ,or GB2312 Code,Chinese words same as other strings,PRG without any setting ,Windows control panel should choose Chinese language.\n In the past ,FWH not supported Unicode. I have not upgraded FWH into new version.\n \nShuming Wang", "time": "11:15", "topic": "Chinese", "username": "ShumingWang" } ]
Chinese
[ { "date": "2015-06-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Marco,\n\nWith FWH 15.05 build 4 looks like this on Windows 10:\n\n[img:34ox8yiq]https&#58;//bitbucket&#46;org/fivetech/screenshots/downloads/unicode&#46;JPG[/img:34ox8yiq]", "time": "13:05", "topic": "Chinese", "username": "Antonio Linares" } ]
Chinese
[ { "date": "2015-06-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n there is a colleague who modify this program in such a way that it works in the Chinese language?\nI can not understand Whether it is possible\n\nMany Thanks\nMarco\n\n[code=fw:2nn8zryy]<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;\">&#41;</span><br /><br /><span style=\"color: #00C800;\">LOCAL</span> oDlg<br /><span style=\"color: #00C800;\">LOCAL</span> oSay  , cSay := <span style=\"color: #ff0000;\">\"Chinese Text \"</span><br /><span style=\"color: #00C800;\">LOCAL</span> oGet1 , cGet1 := SPACE<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">20</span> <span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #00C800;\">LOCAL</span> oGet2 , cGet2 := SPACE<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #000000;\">20</span> <span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #00C800;\">LOCAL</span> oBut1 , oBut2<br /><br /><span style=\"color: #00C800;\">IF</span> !FILE<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"TESTCHINA.DBF\"</span> <span style=\"color: #000000;\">&#41;</span><br />   DBCREATE<span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"TESTCHINA\"</span> , <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #ff0000;\">\"CINESE1\"</span>, <span style=\"color: #ff0000;\">\"C\"</span>, <span style=\"color: #000000;\">20</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#125;</span> , <span style=\"color: #000000;\">&#123;</span> <span style=\"color: #ff0000;\">\"CINESE2\"</span>, <span style=\"color: #ff0000;\">\"C\"</span>, <span style=\"color: #000000;\">20</span>, <span style=\"color: #000000;\">0</span> <span style=\"color: #000000;\">&#125;</span><span style=\"color: #000000;\">&#125;</span> <span style=\"color: #000000;\">&#41;</span><br /><span style=\"color: #00C800;\">ENDIF</span><br /><br />USE testchina<br /><br />GO BOTTOM<br /><br />cGet1 := field->cinese1<br />cGet2 := field->cinese2<br /><br /><br /><span style=\"color: #0000ff;\">DEFINE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br /><br />@ <span style=\"color: #000000;\">1</span> ,  <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">SAY</span> oSay <span style=\"color: #0000ff;\">PROMPT</span> cSay <span style=\"color: #0000ff;\">OF</span> oDlg<br />@ <span style=\"color: #000000;\">2</span> ,  <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">GET</span> oGet1 <span style=\"color: #0000ff;\">VAR</span> cGet1 <span style=\"color: #0000ff;\">OF</span> oDlg<br />@ <span style=\"color: #000000;\">3</span> ,  <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">GET</span> oGet2 <span style=\"color: #0000ff;\">VAR</span> cGet2 <span style=\"color: #0000ff;\">OF</span> oDlg<br />@ <span style=\"color: #000000;\">3</span> ,  <span style=\"color: #000000;\">1</span> <span style=\"color: #0000ff;\">BUTTON</span> oBut2 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"WRITE\"</span> <span style=\"color: #0000ff;\">ACTION</span> write_dbf<span style=\"color: #000000;\">&#40;</span> cGet1 , cGet2 <span style=\"color: #000000;\">&#41;</span><br />@ <span style=\"color: #000000;\">3</span> , <span style=\"color: #000000;\">10</span> <span style=\"color: #0000ff;\">BUTTON</span> oBut1 <span style=\"color: #0000ff;\">PROMPT</span> <span style=\"color: #ff0000;\">\"PRINT\"</span> <span style=\"color: #0000ff;\">ACTION</span> <span style=\"color: #0000ff;\">MsgInfo</span><span style=\"color: #000000;\">&#40;</span> <span style=\"color: #ff0000;\">\"Print get content\"</span> <span style=\"color: #000000;\">&#41;</span><br /><br /><span style=\"color: #0000ff;\">ACTIVATE</span> <span style=\"color: #0000ff;\">DIALOG</span> oDlg<br />CLOSE DATABASE<br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /><span style=\"color: #00C800;\">FUNCTION</span> WRITE_DBF<span style=\"color: #000000;\">&#40;</span> cGet1 , cGet2 <span style=\"color: #000000;\">&#41;</span><br /><br />APPEND BLANK<br />REPLACE field->cinese1  WITH cGet1<br />REPLACE field->cinese2  WITH cGet2<br /><br /><br /><span style=\"color: #00C800;\">RETURN</span> <span style=\"color: #00C800;\">NIL</span><br /> </div>[/code:2nn8zryy]", "time": "15:26", "topic": "Chinese", "username": "MarcoBoschi" } ]
Chinese
[ { "date": "2015-06-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Marco,\n\nThere are several FWH users from China on these forums that surely will be able to help you.\n\nI am sorry I have no more expertise on this area", "time": "16:02", "topic": "Chinese", "username": "Antonio Linares" } ]
Chinese
[ { "date": "2015-06-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Antonio,\n Thankyou\nMarco", "time": "19:10", "topic": "Chinese", "username": "MarcoBoschi" } ]
Chinese
[ { "date": "2015-06-18", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"MarcoBoschi\":2kh607z8]Hi,\n I have to print somethink like this: English and Chinese text togheter\n\n[img:2kh607z8]http&#58;//www&#46;marcoboschi&#46;it/public/china&#46;jpg[/img:2kh607z8]\nHow can I do that?\n\nI usually use a program written in CAVO2.5 and libreries ReportPro 2.10\nBut all my programs are written in fivewin/xHarbour.\nAny hints?\n\nMarco[/quote:2kh607z8]\n\nFWH not support full Unicode function, not input Chinese word.\nso suggestion\nif you just display chinese and english\ninstall chinese font and set code for chinese font( from dbf and chinese inside )\nif you input chinese word and english\ninstall chinese OS and modify TGet.prg( support chinese two bytes and control key functions )", "time": "05:49", "topic": "Chinese", "username": "richard-service" } ]
Chinese
[ { "date": "2015-06-18", "forum": "FiveWin for Harbour/xHarbour", "text": "Richard,\n many thanks\nI've just wrote you by mail\nMarco", "time": "09:06", "topic": "Chinese", "username": "MarcoBoschi" } ]
Chinese
[ { "date": "2015-06-18", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"MarcoBoschi\":e4h9cnf0]Richard,\n many thanks\nI've just wrote you by mail\nMarco[/quote:e4h9cnf0]\nok. I got it.", "time": "09:10", "topic": "Chinese", "username": "richard-service" } ]
Chinese
[ { "date": "2006-03-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello Everyone, \n\nI have a client in China that needs to be able to type and print English and Chinese characters within the same application; is that possible with FWH? \n\nI appreciate your time and consideration. \n\nSincerely, \nDarrell Ortiz", "time": "12:38", "topic": "Chinese characters", "username": "cdmmaui" } ]
Chinese characters
[ { "date": "2006-03-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello cdmmaui,\n\nYes, FWH can do it.\n\nRegards,\n\nRichard\nFivetech.net Taiwan", "time": "15:14", "topic": "Chinese characters", "username": "Taiwan" } ]
Chinese characters
[ { "date": "2006-03-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello\n\nIf user want to input English and Chinese character, please fix TGet.prg and MGet.prg to support 2 bytes for Chinese.\nOf course, English character will be check itself.\nBut you need to remove WinXP's Themes interface, because FWH's TGet and MGet not support it for Chinese character.\n\nRegards,\n\nRichard\nFivetech.net Taiwan", "time": "15:20", "topic": "Chinese characters", "username": "Taiwan" } ]
Chinese characters
[ { "date": "2006-03-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Richard,\n\nDo you have a sample I can look at?\n\nThank You,", "time": "15:50", "topic": "Chinese characters", "username": "cdmmaui" } ]
Chinese characters
[ { "date": "2006-03-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello\n\nyou can look screen shot.\n\n[url:3phj6q6t]http&#58;//img463&#46;imageshack&#46;us/my&#46;php?image=chineseenglish9lu&#46;jpg[/url:3phj6q6t]\n\nRegards,\n\nRichard", "time": "16:23", "topic": "Chinese characters", "username": "Taiwan" } ]
Chinese characters
[ { "date": "2006-03-21", "forum": "FiveWin for Harbour/xHarbour", "text": "Thank you Richard", "time": "02:35", "topic": "Chinese characters", "username": "cdmmaui" } ]
Chinese characters
[ { "date": "2006-03-21", "forum": "FiveWin for Harbour/xHarbour", "text": "No problems\nShuming Wang\nGuangzhou, Guangdong province, China", "time": "05:42", "topic": "Chinese characters", "username": "ShumingWang" } ]
Chinese characters
[ { "date": "2007-09-17", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Richard and John M S Chiang,\n\nI would appreciate if could send me a copy of you modified tget.prg and and any the files required to get chinese characters to display.\n\nI have tried modifying tget.prg to the John MS Chiang specs but unfortunately to no avail. All I get is a ?? when I paste a chinese character to a get object from Notepad (which displays fine with font: Arial MS Unicode.\n\nWhat am I missing.\n\nThank you.", "time": "14:57", "topic": "Chinese characters", "username": "charles dominic" } ]
Chinese characters
[ { "date": "2012-11-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\n\nI have seen several old posts about using chinese characters in FiveWin, is there already a (good) solution to this one? (for GETting, saving in a DB and printing?)\n\nI'm using FWH2.7.\n\nRegards,\n\nJohn.", "time": "15:29", "topic": "Chinese characters in FWH", "username": "John" } ]
Chinese characters in FWH
[ { "date": "2012-11-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi, John\n\nI think yes, but some problem will be solve it.\nEx. Unicode and WinXP themes.", "time": "17:25", "topic": "Chinese characters in FWH", "username": "richard-service" } ]
Chinese characters in FWH
[ { "date": "2012-11-25", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Richard,\n\nyou mean exclude WinXp manifest? What do you mean with ex unicode?\n\nRegards,\n\nJohn.", "time": "18:08", "topic": "Chinese characters in FWH", "username": "John" } ]
Chinese characters in FWH
[ { "date": "2012-11-26", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"John\":lv37sk0b]Hi Richard,\n\nyou mean exclude WinXp manifest? What do you mean with ex unicode?\n\nRegards,\n\nJohn.[/quote:lv37sk0b]\n\n>>you mean exclude WinXp manifest?\nYes, right.\n\n>>What do you mean with ex unicode?\nsome Chinese characters, we input it became \"?\"", "time": "01:03", "topic": "Chinese characters in FWH", "username": "richard-service" } ]
Chinese characters in FWH
[ { "date": "2012-11-26", "forum": "FiveWin for Harbour/xHarbour", "text": "The cursor shows wrong position. it seems unicode like 3 char length, after input a Chinese word, the cursor jump 3 char , but show right 2 char position.\n Regards !\nShuming Wang", "time": "03:22", "topic": "Chinese characters in FWH", "username": "ShumingWang" } ]
Chinese characters in FWH
[ { "date": "2012-11-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Ni Hao <!-- s:D --><img src=\"{SMILIES_PATH}/icon_biggrin.gif\" alt=\":D\" title=\"Very Happy\" /><!-- s:D --> \n\nso is there a way to bypass that unicode effect?\n\nRegards,\n\nJohn.", "time": "07:13", "topic": "Chinese characters in FWH", "username": "John" } ]
Chinese characters in FWH
[ { "date": "2012-11-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\n\nwe wait Unicode solution from xHarbour or FWH.\nWinXP themes problem, Antonio make TEdit Class. \nBut it's simple, we need enhance more functions same as TGet Class.", "time": "16:24", "topic": "Chinese characters in FWH", "username": "richard-service" } ]
Chinese characters in FWH
[ { "date": "2012-11-26", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\n\nany idea when xHarbour or FWH come with that solution? <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->\n\nRegards,\n\nJohn.", "time": "16:32", "topic": "Chinese characters in FWH", "username": "John" } ]
Chinese characters in FWH
[ { "date": "2012-11-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi,\n\nI think modify/enhance unicode function's source code.\nNow, I think you can use FWH develop Chinese version App. No problem.", "time": "09:13", "topic": "Chinese characters in FWH", "username": "richard-service" } ]
Chinese characters in FWH
[ { "date": "2012-11-27", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Richard,\n\ncan you please tell me how i can do that? Develop a chinese version app? Do you have examples, libraries etc?\n\nremoving the XP manifest actually makes it worse in my app: with XP manifest i am able to at least GET chinese characters in a MEMO field (lost when saving) and without the manifest only ??? appears.\n\nI also came across a very old message from FiveWin.com talking about a ChinGet.zip for FW1.9.2. But that one i cant find anymore.\n\nThanks in advance,\n\nJohn.", "time": "09:29", "topic": "Chinese characters in FWH", "username": "John" } ]
Chinese characters in FWH
[ { "date": "2012-11-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Here, <!-- w --><a class=\"postlink\" href=\"http://www.xtech.com.cn/down/tget.prg\">www.xtech.com.cn/down/tget.prg</a><!-- w --> \nRegards!\n Shuming Wang", "time": "03:15", "topic": "Chinese characters in FWH", "username": "ShumingWang" } ]
Chinese characters in FWH
[ { "date": "2012-11-28", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"ShumingWang\":3eb2gz4k]Here, <!-- m --><a class=\"postlink\" href=\"http://www.xtech.com.cn/down/tget.prg\">http://www.xtech.com.cn/down/tget.prg</a><!-- m --> \nRegards!\n Shuming Wang[/quote:3eb2gz4k]\nHi Wnag,\n\nAny news TMySQL upgrade? \nI lose QQ, have you cell phone number that we can use wechat software.", "time": "04:14", "topic": "Chinese characters in FWH", "username": "richard-service" } ]
Chinese characters in FWH
[ { "date": "2012-11-28", "forum": "FiveWin for Harbour/xHarbour", "text": "Hi Wang Shuming,\n\nthanks for the tGet example. I just add that one to my RMK script or do i have to do more?\n\nThe next step would be saving the data, i dont have to change anything there? (still using DBF and FPT files).\n\nRetrieving data should also be fine? And how about printing?\n\nthanks in advance (sorry to bother everyone so much with it, but i really want my app to be able use chinese characters now! <!-- s:P --><img src=\"{SMILIES_PATH}/icon_razz.gif\" alt=\":P\" title=\"Razz\" /><!-- s:P --> \n\nRegards,\n\nJohn.", "time": "07:25", "topic": "Chinese characters in FWH", "username": "John" } ]
Chinese characters in FWH
[ { "date": "2012-11-28", "forum": "FiveWin for Harbour/xHarbour", "text": "To print Chiense words,To save data to DBF ,they are the same as English chars.\n But tget.prg do not support Unicode either. \nShuming Wang", "time": "10:27", "topic": "Chinese characters in FWH", "username": "ShumingWang" } ]
Chinese characters in FWH
[ { "date": "2012-11-28", "forum": "FiveWin for Harbour/xHarbour", "text": "what do you mean that this tGet doesnt support unicode? i thought this one would make it possible to input chinese characters?\n\nRegards,\n\nJohn.", "time": "13:07", "topic": "Chinese characters in FWH", "username": "John" } ]
Chinese characters in FWH
[ { "date": "2012-11-28", "forum": "FiveWin for Harbour/xHarbour", "text": "i added tget.prg to my RMK file, but it doesnt work. I think i did something wrong, can anyone give a sample how to do this (i.e. override the original tget)?\n\nthanks in advance!\n\nJohn.", "time": "17:22", "topic": "Chinese characters in FWH", "username": "John" } ]
Chinese characters in FWH
[ { "date": "2012-11-29", "forum": "FiveWin for Harbour/xHarbour", "text": "If you can input into office word /excel Chinese word ,Then you can input into FWH/Our modified version Tget Chinese word.\n Here you can download our ERP made with FWH1104+Harbou3.0+Tmysql(include MySQLserver 5.5) <!-- m --><a class=\"postlink\" href=\"http://www.xtech.com.cn/download5/xerp63_setup.exe\">http://www.xtech.com.cn/download5/xerp63_setup.exe</a><!-- m --> ,16M.\n Or you can past your prg codes or make a video file.\n\nShuming Wang", "time": "02:50", "topic": "Chinese characters in FWH", "username": "ShumingWang" } ]
Chinese characters in FWH
[ { "date": "2012-11-29", "forum": "FiveWin for Harbour/xHarbour", "text": "John, did you remember to put tget.obj in your link script too? Only rmk wouldn't be adequate", "time": "03:37", "topic": "Chinese characters in FWH", "username": "hua" } ]
Chinese characters in FWH
[ { "date": "2012-11-29", "forum": "FiveWin for Harbour/xHarbour", "text": "my RMK also contains the link script, but maybe you can show me an example how that would look like? i dont consider myself to be a FWH guru! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->", "time": "07:11", "topic": "Chinese characters in FWH", "username": "John" } ]
Chinese characters in FWH
[ { "date": "2012-11-29", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"ShumingWang\":2bqwjdc2]If you can input into office word /excel Chinese word ,Then you can input into FWH/Our modified version Tget Chinese word.\n Here you can download our ERP made with FWH1104+Harbou3.0+Tmysql(include MySQLserver 5.5) <!-- m --><a class=\"postlink\" href=\"http://www.xtech.com.cn/download5/xerp63_setup.exe\">http://www.xtech.com.cn/download5/xerp63_setup.exe</a><!-- m --> ,16M.\n Or you can past your prg codes or make a video file.\n\nShuming Wang[/quote:2bqwjdc2]\n\nOk, thanks! i have downloaded it and will test it tonight! i hope inside there there are some PRG and RMK/LINK scripts as well, to see how that all fits together! <!-- s:-) --><img src=\"{SMILIES_PATH}/icon_smile.gif\" alt=\":-)\" title=\"Smile\" /><!-- s:-) -->", "time": "07:13", "topic": "Chinese characters in FWH", "username": "John" } ]
Chinese characters in FWH
[ { "date": "2012-12-04", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote=\"ShumingWang\":2mbeh80l]If you can input into office word /excel Chinese word ,Then you can input into FWH/Our modified version Tget Chinese word.\n Here you can download our ERP made with FWH1104+Harbou3.0+Tmysql(include MySQLserver 5.5) <!-- m --><a class=\"postlink\" href=\"http://www.xtech.com.cn/download5/xerp63_setup.exe\">http://www.xtech.com.cn/download5/xerp63_setup.exe</a><!-- m --> ,16M.\n Or you can past your prg codes or make a video file.\n\nShuming Wang[/quote:2mbeh80l]\n\nHi Wang Shuming, i have installed the app and it works well. Now i am curious how your scripts looks like to produce this app, do you have som examples for me?\n\nRegards,\n\nJohn.", "time": "10:15", "topic": "Chinese characters in FWH", "username": "John" } ]
Chinese characters in FWH
[ { "date": "2009-07-06", "forum": "All products support", "text": "Salve,\n\nmi capita che dopo avere usato un programmino che opera su excel, nei task di windows trovo tante volte Excel aperto.\n\nCOme si fa a chiudere excel da questi task ?\n\nA parte che pensavo utilizzando le istruzioni....:\n\noExcel:=TOleauto():New(\"Excel.Application\")\n..\n..\n..\noExcel:Qui()\noExcel:End()\n\nmi si chiudesse anche Excel.\nCi mica magari un comando del tipo: oExcel:Scarica_Excel_dal_Task_di_Windows_?()\n\nGrazie", "time": "12:11", "topic": "Chiusura di EXCEL dai task di WIndows", "username": "Romeo" } ]
Chiusura di EXCEL dai task di WIndows
[ { "date": "2009-07-06", "forum": "All products support", "text": "E' sufficiente oExcel:Quit(). Togli oExcel:End().\n\nEMG", "time": "13:17", "topic": "Chiusura di EXCEL dai task di WIndows", "username": "Enrico Maria Giordano" } ]
Chiusura di EXCEL dai task di WIndows
[ { "date": "2009-07-06", "forum": "All products support", "text": "ok grazie", "time": "14:44", "topic": "Chiusura di EXCEL dai task di WIndows", "username": "Romeo" } ]
Chiusura di EXCEL dai task di WIndows
[ { "date": "2023-08-30", "forum": "FiveWin for Harbour/xHarbour", "text": "I need to make a dessission about my server software.\n\nWindows Server 2022 Standard,16CORE,FI,No Med,No CAL, Multi Language + 1.233,26 €\n\nWindows Server 2022 Essentials,10CORE,FI,No Med, No CAL, Multi Language + 467 €\n\nAnd a 5 pack of CAL = + 230 euro.\n\nI will also forsee a VPN connection.\n\nI have no idea at all about serversoftware, but will contact a firm afther reading a reaction here\n\nThe desktopPC to use is new and has good specs for this purpose.\n\nIt seems that there are more options in server soft, but Dell has these 2 as option on there model.\n\nWe are with 3 users working on 5 to 6 computers in the building. I tested my program with the server option and that is working fine. Before It was a peer to peer situation.\n\nIs this the correct server soft and is the price ok ?\n\nThanks", "time": "16:11", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "Marc Venken" } ]
Choise : Windows server standard 2022 versus essential 2022
[ { "date": "2023-08-30", "forum": "FiveWin for Harbour/xHarbour", "text": "hi,\n\nas i know \"Essential\" are limited to 25 User, 50 Device, 1 x CPU 10 Core , Hyper-V-Host , Hybrid cloud support and remote access\n\n\"Standard\" have 2 x Hyper-V-Host and unlimited CPU / Core\n\nboth does NOT have Storage Replica, Storage Spaces Direct which only \"Datacenter\" have\n\n---\n\nyou do NOT need any extra CAL for \"Essentials\" <!-- s:!: --><img src=\"{SMILIES_PATH}/icon_exclaim.gif\" alt=\":!:\" title=\"Exclamation\" /><!-- s:!: --> \nyou NEED CAL for every User / Device when use \"Standard\" or \"Datacenter\"", "time": "17:17", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "Jimmy" } ]
Choise : Windows server standard 2022 versus essential 2022
[ { "date": "2023-08-30", "forum": "FiveWin for Harbour/xHarbour", "text": "Jimmy,\n\nSo it seems that essential would be enough ? \n\nThe specs you talk about....I don't know what they are for.\n\nHard for me ))))", "time": "20:02", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "Marc Venken" } ]
Choise : Windows server standard 2022 versus essential 2022
[ { "date": "2023-08-31", "forum": "FiveWin for Harbour/xHarbour", "text": "hi Marc,\n\nServer \"Essential\" are are made for small Company up to 25 User\n\nwhat Hardware do you want to use <!-- s:?: --><img src=\"{SMILIES_PATH}/icon_question.gif\" alt=\":?:\" title=\"Question\" /><!-- s:?: --> \n\n---\n\nServer \"Essential\" can use 1 x CPU with max 10 P-Core. NOT E-Core \nso buy a XEON (or AMD) Server CPU, NOT a Desktop i-Core CPU\n\ntip :\norder for Server 2,5 Gbit Network Card and a \"managed\" Switch, NOT a cheap HUB", "time": "07:38", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "Jimmy" } ]
Choise : Windows server standard 2022 versus essential 2022
[ { "date": "2023-08-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Good learning for me, though I confess I could not understand much.", "time": "07:52", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "nageswaragunupudi" } ]
Choise : Windows server standard 2022 versus essential 2022
[ { "date": "2023-08-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Jimmy,\n\nWe are only 3 users and would like to work on 6 pc's\n\nA FWH invoice / Items dbf's related program will be the program to serve. Each user has his own exel, mail, etc. I have no intension\non putting these programs on the server. Just that 1 FWh program. Maybe some more items are put on the server, but that is second option.\nI do want to think of 1 VPN connection from home, so that I can have more time for BBQ and work from there )))\n\nHardware ? I have absolut no idea what is needed as a server system.\n\nCurrent hardware are I5-7 desktop and laptops some with W10 and W7 for my older FW version that I finaly will install on server with up to date version.\n\nThese all can be used as machines to log in into the server and work like RD..\n\nSo maybe you can point me to a good server system, even online ?? If for best performance I need to changes cards or switch, please advice with one. Please point me to a link ?\n\nSorry if I ask much ... but hardware is not my thing\n\nBTW : We have no special speed problems with the program, so we don't need a lamborghini. a mid-classed server would be fine", "time": "08:10", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "Marc Venken" } ]
Choise : Windows server standard 2022 versus essential 2022
[ { "date": "2023-08-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Hello Mark,\nyes, RDP is a very good way.\nBest regards,\nOtto\n\n[url:xeffbb4v]https&#58;//winhotel-space&#46;translate&#46;goog/winhotel_webpage/megamenu&#46;prg?page_id=1518&_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en-US&_x_tr_pto=wapp[/url:xeffbb4v]", "time": "12:04", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "Otto" } ]
Choise : Windows server standard 2022 versus essential 2022
[ { "date": "2023-08-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Windows essential seems not to be for Remote Desktop ???", "time": "12:31", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "Marc Venken" } ]
Choise : Windows server standard 2022 versus essential 2022
[ { "date": "2023-08-31", "forum": "FiveWin for Harbour/xHarbour", "text": "Otto,\n\nOriginaly I bought this laptop for the server purpose. Never get to it because my older kids found that this laptop did a great job as gaming PC ))))\n\nBut still I could use it if you think that it meets the specs like you advice. (of cource with a clean setup and no games. They stopped playing\n\n[url:2p2n1ag5]https&#58;//www&#46;coolblue&#46;be/nl/product/880396/hp-pavilion-gaming-15-dk2038nb-azerty&#46;html#product-specifications[/url:2p2n1ag5]", "time": "16:45", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "Marc Venken" } ]
Choise : Windows server standard 2022 versus essential 2022
[ { "date": "2023-09-01", "forum": "FiveWin for Harbour/xHarbour", "text": "hi Marc,\n\n[quote=\"Marc Venken\":1rgvo5n4]Windows essential seems not to be for Remote Desktop ???[/quote:1rgvo5n4]\nif you want to to use Server 2023 as \"RDS-Host\" you need \"RDS-CALs\" for every Server Version / User\nall Server Version are now \"same\" except \"License\"\n\n---\n\nyou can build you own Server or buy a complete Server / Bundle\nas i say \"Essentials\" Version can be in Bundle as OEM-Version which is much cheaper than Retail Version", "time": "09:53", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "Jimmy" } ]
Choise : Windows server standard 2022 versus essential 2022
[ { "date": "2023-09-01", "forum": "FiveWin for Harbour/xHarbour", "text": "So essential with some RDS-Cals can be used for RDS ?", "time": "11:12", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "Marc Venken" } ]
Choise : Windows server standard 2022 versus essential 2022
[ { "date": "2023-09-01", "forum": "FiveWin for Harbour/xHarbour", "text": "[quote:1fu4fgv7]From microsoft info\n\nGive user accounts remote desktop permission\nIn the default installation of Windows Server Essentials, network users do not have permission to establish a remote connection to computers or other resources on the network.\n\nBefore network users can establish a remote connection to network resources, you must first set up Anywhere Access. After you set up Anywhere Access, users can access files, applications, and computers in your office network from a device in any location with an Internet connection.\n\nThe Set up Anywhere Access Wizard allows you to enable two methods of remote access:\n\nVirtual private network (VPN)\n\nRemote Web Access\n\nWhen you run the wizard, you can also choose to allow Anywhere Access for all current and newly added user accounts.\n\nTo set up Anywhere Access, open the Dashboard Home page, click SETUP, and then click Set up Anywhere Access.\n\nFor more information about Anywhere Access, see Manage Anywhere Access.[/quote:1fu4fgv7]\n\nIf I read this. It seems to confirm it can be done?", "time": "12:43", "topic": "Choise : Windows server standard 2022 versus essential 2022", "username": "Marc Venken" } ]
Choise : Windows server standard 2022 versus essential 2022