Search found 5 matches

by psc
Fri Sep 30, 2016 4:37 pm
Forum: eXpress++ Support
Topic: Test bitmap for pixels
Replies: 8
Views: 15950

Re: Test bitmap for pixels

What are you trying to hide ? For the progress bar, just uncomment oScrn , //oScrn := DC_WaitOn() and //dc_impl(oScrn) To not show the memoedit, you can do this: instead of DCREAD GUI FIT OPTIONS GetOptions EVAL {|| dc_guimemoedit(testpixel(hDC1,aPixel,oStatic1,oSay))} PARENT @oDlg use this DCREAD G...
by psc
Fri Sep 30, 2016 10:41 am
Forum: Xbase++ Support
Topic: Is there any way to check whether I'm connected via WLAN?
Replies: 1
Views: 10873

Re: Is there any way to check whether I'm connected via WLAN

If you have the actual name of the interface ( you can get this from the "description" field when running ipconfig /all at the command prompt ), you can try this: Make sure you stick this at the top somewhere #pragma library( "ascom10.lib" ) PROCEDURE Main local oWMI local oCol local bCol local cSta...
by psc
Fri Sep 30, 2016 8:49 am
Forum: eXpress++ Support
Topic: get and codeblock
Replies: 3
Views: 9811

Re: get and codeblock

This might have to do with the reference to the sub-array getting clobbered ( I think ). Try this for fhein: function fhein(arr,aGetlist) local aFoo aFoo := arr[1] asize( arr , 0) aadd( arr , aFoo ) asize( aFoo , 0 ) aadd(aFoo,"Hein") aadd(aFoo,"Mück") dc_getrefresh(aGetlist) return .t. This populat...
by psc
Thu Sep 29, 2016 1:44 pm
Forum: Xbase++ Support
Topic: CPU ID
Replies: 4
Views: 15818

Re: CPU ID

If you're looking for the processor serial number, I think that was only available on Pentium III's, and is no longer available in modern Intel CPU's. The ProcessorID field in Auge_Ohr's excellent program is actually the processor feature set. ProcessorId Data type: string Access type: Read-only Qua...
by psc
Thu Sep 29, 2016 12:04 pm
Forum: Xbase++ Support
Topic: 64 bit DLLs and ActiveXs
Replies: 2
Views: 11533

Re: 64 bit DLLs and ActiveXs

For loading ActoveX controls, you need CreateObject(), not DllLoad().
In general, you use 64-bit controls with 64-bit apps, and 32-bit controls with 32-bit apps, and since xBase++ currently generates 32-bit apps...

psc