Search found 98 matches

by Skipsy
Mon Nov 09, 2015 5:57 pm
Forum: Coding Questions
Topic: Gethostbyname...
Replies: 3
Views: 1028

Re: Gethostbyname...

GREAT !!
(I just have to understand now).

Thank you.
WW
by Skipsy
Mon Nov 09, 2015 2:42 pm
Forum: Coding Questions
Topic: Gethostbyname...
Replies: 3
Views: 1028

Gethostbyname...

Hi all,

Iam using GetHostByname_() to resolve dns PC name to xxx.xxx.xxx.xxx format IP.
Works fine but I have read Micro$oft notice saying that this function is deprecated (!)
They suggest to use GetAddrInfo()... Why not, but this function is unknown by the compiler (v4.51)

Any suggestion ...
by Skipsy
Thu May 24, 2012 10:14 am
Forum: Applications - Feedback and Discussion
Topic: Fireworks
Replies: 14
Views: 5812

Re: Fireworks

Very nice !!
Faster than the 1st version.
WW
by Skipsy
Thu May 24, 2012 9:09 am
Forum: Applications - Feedback and Discussion
Topic: network device supervision...
Replies: 1
Views: 1734

network device supervision...

Hello,

As I was irritate to not find any small, simple and free app that could send alert when an IP
device does not responding, I wrote this one.

No need to install. Just fill the list of hosts or IPs you need to check, set delay between
scans and alert options.

http://www.mediafire.com/file ...
by Skipsy
Sat May 19, 2012 8:54 am
Forum: Coding Questions
Topic: graphics into the exe file...
Replies: 2
Views: 922

Re: graphics into the exe file...

Sounds good,
thks
WW
by Skipsy
Sat May 19, 2012 8:21 am
Forum: Coding Questions
Topic: graphics into the exe file...
Replies: 2
Views: 922

graphics into the exe file...

Hi all,

Does anyone know if there is a way to add graphics, sounds etc into the EXE file?
I am writing a very small app with a couple of color buttons and sounds and I'd
like to get a standalone EXE file, not a folder including the exe+ jpg + wav files.

Found nothing yet with the forum search ...
by Skipsy
Thu Sep 11, 2008 4:52 pm
Forum: Coding Questions
Topic: SetDefaultPrinter library...
Replies: 2
Views: 1604

Well, I am not sure it's a driver, the goal is not to add a nex printer, just
to define a nex one as default in the existing list.

Iam not sur to understand that code so Iam trying tomorrow.

I was also working on another way :
rundll32 printui.dll,PrintUIEntry /y /n "printer"
but it doesn't work ...
by Skipsy
Thu Sep 11, 2008 8:30 am
Forum: Coding Questions
Topic: SetDefaultPrinter library...
Replies: 2
Views: 1604

SetDefaultPrinter library...

Hello all,

Could someone explain how to use Windows SetDefaultPrint function with
PB ???
http://msdn.microsoft.com/en-us/library/ms535468(VS.85).aspx

I tried :
SetDefaultPrinter_ ("my_printer")
but the compiler returns an error.

By the way... Is there any way to use this function ???

Thks a lot ...
by Skipsy
Mon Nov 20, 2006 2:45 pm
Forum: Coding Questions
Topic: Add item in system menu...
Replies: 5
Views: 1938

Hum... I did a search in the forum and found nothing. Probably not with
the correct keywords.

I am going to work with thes info.

Thks a lot.
WW
by Skipsy
Mon Nov 20, 2006 1:00 pm
Forum: Coding Questions
Topic: Add item in system menu...
Replies: 5
Views: 1938

Add item in system menu...

Hi all,

I am looking for informations explaining how to add an item in a window
system menu.
I guess I have to manage this with a DLL but... what else... :idea:

If anybody can help, thks in advance.

Regards,
WW
by Skipsy
Mon Aug 21, 2006 12:10 pm
Forum: Coding Questions
Topic: ExamineKeayboard() and compiler...
Replies: 15
Views: 3111

I am using the keyboard to stop the program at a specific point... (I know I
can also use the degugger for this).

I was just wondering why the debugger doesn't like this command with
OpenWindow().

Iam going to use GetAsyncKeyState_() and GetKeyState_().

Thks for your replies.
WW
by Skipsy
Mon Aug 21, 2006 10:27 am
Forum: Coding Questions
Topic: ExamineKeayboard() and compiler...
Replies: 15
Views: 3111

Safe ?
Well, this is just a short part of code. The goal was to show that
ExamineKeyboard() works fine WITHOUT OpenScreen() or OpenWindowedScreen. But the debugger "crashes". This means that
it is not possible to use the debugger.
:(
by Skipsy
Mon Aug 21, 2006 8:03 am
Forum: Coding Questions
Topic: ExamineKeayboard() and compiler...
Replies: 15
Views: 3111

Hi,

Here is a code that works fine but debugging is not possible :
OpenWindow(1, 100, 100, 600, 600, "Test", #PB_Window_SystemMenu|#PB_Window_TitleBar)
If InitMouse() = 0 Or InitKeyboard() = 0
MessageRequester("Erreur", "Prob DirectX", 0)
End
EndIf

Repeat
ExamineKeyboard()
Until ...
by Skipsy
Sun Aug 20, 2006 5:29 pm
Forum: Coding Questions
Topic: ExamineKeayboard() and compiler...
Replies: 15
Views: 3111

Well... It sounds "logic" but in this case I don't understand why the
keyboeards and mouse commands work perfectly... Until I use the debugger (?)

Still strange :shock:
by Skipsy
Sun Aug 20, 2006 4:58 pm
Forum: Coding Questions
Topic: ExamineKeayboard() and compiler...
Replies: 15
Views: 3111

ExamineKeayboard() and compiler...

Hi folks,

I have a strange problem : When I run the debugger I get the message :
"OpenScreen() or OpenWindowedScreen must be called before use the keyboardcommands."
I have the same kind of message when I try the command 'ExamineMouse'.

I am using the command "OpenWindow()" and the program runs ...