Page 1 of 1

Can I change my IP address with Fivewin/Harbour?

Posted: Sat Jul 16, 2016 3:07 am
by kim yong woo
Dear Members,

Can I change my IP address with FiveWin/Harbours?

I am using Internet by ISP company.

If possible, please let me have some sample or link on IP Change.

Thanks.

Re: Can I change my IP address with Fivewin/Harbour?

Posted: Sat Jul 16, 2016 4:07 am
by anserkk

Code: Select all

cAdapterType:="Local Area Connection"
cIP:="192.168.0.200"
cSubNet:="255.255.255.0"
cGateWay:="192.168.0.1"

oShell = CreateObject("Wscript.Shell")
oShell:Run ( 'netsh interface ipv4 set address name="'+cAdapterType+'" source=static address='+cIP+' mask='+cSubNet+' gateway='+cGateWay,0,.T. )
oShell:Run ( 'netsh interface ipv4 set dns name = "'+cAdapterType+'" source = static addr ='+cDns1,0,.T. )
Regards

Anser

Re: Can I change my IP address with Fivewin/Harbour?

Posted: Sat Jul 23, 2016 2:06 am
by kim yong woo
Thanks so much Mr.anserkk!

I was in business travel, and found your answer today...