Search found 64 matches

by callroot
Sun Apr 09, 2017 8:27 am
Forum: General Discussion
Topic: Super skin Static librar release,But there are some problems
Replies: 8
Views: 4213

Re: Super skin Static librar release,But there are some prob

Josh wrote:Second problem, you use to many styles in your request :mrgreen:
Pellesc normal but PUREBASIC can not be used normally
by callroot
Sun Apr 09, 2017 8:24 am
Forum: General Discussion
Topic: Super skin Static librar release,But there are some problems
Replies: 8
Views: 4213

Re: Super skin Static librar release,But there are some prob

Michael Vogel wrote:First problem, you create a rar file and call it a zip...
Yes upload requirements must be ZIP so changed the name
by callroot
Sun Apr 09, 2017 12:57 am
Forum: General Discussion
Topic: Super skin Static librar release,But there are some problems
Replies: 8
Views: 4213

Re: Super skin Static librar release,But there are some prob

Online waiting, no friends can solve it
by callroot
Sat Apr 08, 2017 1:25 pm
Forum: General Discussion
Topic: Super skin Static librar release,But there are some problems
Replies: 8
Views: 4213

Super skin Static librar release,But there are some problems

I'll upload a few pictures This is a beautiful skin library I use Pellesc to call the static library is normal http://i2.muimg.com/590787/bcf63e7d545ff797.jpg But PUB call can not, the reason can not find http://i4.buimg.com/590787/a8551aeb892e1c69.jpg There are no technical high friends, can solve...
by callroot
Sun Jan 01, 2017 5:10 pm
Forum: General Discussion
Topic: _IP_ADAPTER_ADDRESSES ????
Replies: 1
Views: 16074

_IP_ADAPTER_ADDRESSES ????

How to translate to PUREBASIC typedef struct _IP_ADAPTER_ADDRESSES { union { ULONGLONG Alignment; struct { ULONG Length; DWORD IfIndex; }; }; struct _IP_ADAPTER_ADDRESSES *Next; PCHAR AdapterName; PIP_ADAPTER_UNICAST_ADDRESS FirstUnicastAddress; PIP_ADAPTER_ANYCAST_ADDRESS FirstAnycastAddress; PIP_...
by callroot
Sat Dec 03, 2016 5:31 am
Forum: General Discussion
Topic: GET ADSL IP
Replies: 5
Views: 2569

Re: GET ADSL IP

DarkDragon wrote:https://msdn.microsoft.com/de-de/librar ... s.85).aspx
ERROR_INVALID_SIZE: The dwSize member of the structure pointed to by lpprojection specifies an invalid size.

thank you
by callroot
Sat Dec 03, 2016 5:30 am
Forum: General Discussion
Topic: GET ADSL IP
Replies: 5
Views: 2569

Re: GET ADSL IP

Try it like this for fun: Import "Rasapi32.lib" RasEnumConnectionsA(*buffer, *pointer1, *pointer2) EndImport #RAS_MaxEntryName = 256 #RAS_MaxDeviceName = 128 #Ras_MaxDeviceType = 16 Structure RASCONN dwSize.l hRasConn.l szEntryName.b[#RAS_MaxEntryName+1] szDeviceType.b[#Ras_MaxDeviceType+...
by callroot
Fri Dec 02, 2016 8:13 am
Forum: General Discussion
Topic: GET ADSL IP
Replies: 5
Views: 2569

GET ADSL IP

Structure RASCONN dwSize.l hRasConn.l szEntryName.b[256+1] szDeviceType.b[16+1] szDeviceName.b[128+1] EndStructure Structure RASCONNSTATUS dwSize.l RasConnState.l dwError.l szDeviceType.b[16+1] szDeviceName.b[128+1] EndStructure Structure RASDIALPARAMS dwSize.l szEntryName.b[256 + 1] szPhoneNumber....
by callroot
Thu Dec 01, 2016 11:02 pm
Forum: General Discussion
Topic: Structure of translation
Replies: 0
Views: 1259

Structure of translation

typedef struct _RASPPPIP { DWORD dwSize; DWORD dwError; TCHAR szIpAddress[RAS_MaxIpAddress + 1]; #ifndef WINNT35COMPATIBLE TCHAR szServerIpAddress[RAS_MaxIpAddress + 1]; #endif #if (WINVER >= 0x500) DWORD dwOptions; DWORD dwServerOptions; #endif } RASPPPIP; In addition to an example RasGetProjectio...
by callroot
Wed Nov 02, 2016 6:46 pm
Forum: General Discussion
Topic: RunProgram input
Replies: 1
Views: 1565

RunProgram input

OpenConsole () Use RunProgram to call the FTP input "hnysc.com open" and then enter the account and password If OpenConsole() ConsoleTitle("1111111111111111") pc=RunProgram("FTP" ,"open hnysc.com", "",#PB_Program_Open) Input() EndIf Did not find exam...
by callroot
Wed Nov 02, 2016 6:41 pm
Forum: Bugs - Windows
Topic: FTP BUG
Replies: 8
Views: 3371

Re: FTP BUG

also the entry functions dont use the same entry InitNetwork() If OpenFTP(0, "hnysc.com", "ly178485178", "110b9b81e22dfc") If ExamineFTPDirectory(0) While NextFTPDirectoryEntry(0) Debug FTPDirectoryEntryRaw(0) Debug FTPDirectoryEntryName(0) Wend EndIf EndIf 01-26-16 02...
by callroot
Wed Nov 02, 2016 1:35 pm
Forum: Bugs - Windows
Topic: FTP BUG
Replies: 8
Views: 3371

FTP BUG

Code: Select all


InitNetwork()
If OpenFTP(0, "hnysc.com", "ly178485178", "110b9b81e22dfc")
 If ExamineFTPDirectory(0)
 While NextFTPDirectoryEntry(0)
 Debug FTPDirectoryEntryRaw(0)
 Wend
 EndIf
EndIf

Display is not complete, the output error
by callroot
Fri Oct 14, 2016 1:07 am
Forum: Coding Questions
Topic: Urgent need to have a strong technical person to answer it
Replies: 2
Views: 1441

Re: Urgent need to have a strong technical person to answer

Is there a way of thinking, how to achieve sock5 can do?
by callroot
Thu Oct 13, 2016 2:18 pm
Forum: Coding Questions
Topic: Urgent need to have a strong technical person to answer it
Replies: 2
Views: 1441

Urgent need to have a strong technical person to answer it

How to use IP proxy to send mail??????? ; process to test new email capabilities in PB 5.40 ;**************************************************************************************** ; send out the page to the secure server ;***************************************************************************...