xBase Command Interpreter

Topic Specific Tutorials and Tips.

Moderator: Rathinagiri

User avatar
esgici
Posts: 4543
Joined: Wed Jul 30, 2008 9:17 pm
DBs Used: DBF
Location: iskenderun / Turkiye
Contact:

Re: xBase Command Interpreter

Post by esgici »

Rathinagiri wrote:Wow. It is a very nice work. Great achievement. Thanks a lot for sharing MeneAle.
+1

Viva HMG :D
Viva INTERNATIONAL HMG :D
User avatar
meneale
Posts: 51
Joined: Sat Jan 12, 2013 2:05 am
Location: Campinas -SP, Brasil

Re: xBase Command Interpreter

Post by meneale »

Thanks :D

.facp samples:
youip.facp // Get your IP from http://www.ip-adress.com" onclick="window.open(this.href);return false;" onclick="window.open(this.href);return false;

Code: Select all

var('oHttp')
var('x')
oHttp:=TipClientHttp():New("http://www.ip-adress.com/")
oHttp:Open()
x:=oHttp:ReadAll()
x:=substr(x,at("Your IP address is: ",x)+20)
x:=substr(x,0,at("<",x)-1)
msgbox(x)
To Execute it:
load_fromfile('yourip.facp')
Or Drag and Drop

chrome.facp // Turns Google Chrome or Opera into half transparent

Code: Select all

echo('Turns Google Chrome or Opera into half transparent')
var('hWndChr',findwindow('Chrome_WidgetWin_1',nil))
SetWindowTransparent (getparent(hWndChr), 128)
To Execute it:
load_fromfile('chrome.facp')
Or Drag and Drop
AMD Phenom II X6 1090T 3.2GHz (OverClock 3.9GHz) | Windows 8.1 Pro 64-bit
4GB DDR3 | GTX 550 Ti 1GB | MSI 880GMA-E35
User avatar
srvet_claudio
Posts: 2193
Joined: Thu Feb 25, 2010 8:43 pm
Location: Uruguay
Contact:

Re: xBase Command Interpreter

Post by srvet_claudio »

Rathinagiri wrote:Wow. It is a very nice work. Great achievement. Thanks a lot for sharing MeneAle.
+1
Best regards.
Dr. Claudio Soto
(from Uruguay)
http://srvet.blogspot.com
Post Reply