Search found 5 matches

by Padde
Tue May 08, 2007 10:17 pm
Forum: Coding Questions
Topic: Need help with HTTPS authentication/login
Replies: 8
Views: 2250

https://login:pw@lms.hfk.no should do the trick

greets padde
by Padde
Tue Apr 24, 2007 12:43 pm
Forum: Announcement
Topic: CustomButtons
Replies: 55
Views: 18912

Are there any plans to support PNG alphachannel transparency
like DrawAlphaImage does? In my current project i frequently
use your custombuttons with different kind of shapes and especially
not rectangular ones looks crappy with single color transparency.
Almost all image tools like Adobe Photoshop ...
by Padde
Wed Apr 11, 2007 6:58 pm
Forum: Applications - Feedback and Discussion
Topic: PBOSL - A OpenSource Library-Collection for PureBasic
Replies: 233
Views: 407927

This one fails in all cases.. MSXML3_Load and MSXML3_LoadXML both throw
an invalid memory access error
by Padde
Wed Apr 11, 2007 6:02 pm
Forum: Applications - Feedback and Discussion
Topic: PBOSL - A OpenSource Library-Collection for PureBasic
Replies: 233
Views: 407927

Both procedures didn't work.. but i could fix at least
the MSXML3_Uni2Ansi procedure.

This one do the job well

Procedure.s MSXML3_Uni2Ansi(unicodestr.l)
; lenA = WideCharToMultiByte_(#CP_ACP, 0, unicodestr, -1, 0, 0, 0, 0);
; ansistr.s = Space(lenA)
; If (lenA > 0)
; WideCharToMultiByte_(#CP ...
by Padde
Wed Apr 11, 2007 3:30 am
Forum: Applications - Feedback and Discussion
Topic: PBOSL - A OpenSource Library-Collection for PureBasic
Replies: 233
Views: 407927

I found a bug or lets say an unwanted limitation in the MSXML3 Lib.

It occurs while trying to load an XML document with the MSXML_LoadXML
procedure with large strings (somewhere between 16000 and 17000 bytes).
MSXML_LoadXML simply fail to load and return a 0.
Can't remember the exact problematic ...