Search found 457 matches

by bbanelli
Tue Jun 13, 2017 1:51 pm
Forum: Coding Questions
Topic: FirmwareTableProviderSignature and DWORD value ...
Replies: 9
Views: 3523

Re: FirmwareTableProviderSignature and DWORD value ...

Sorry to bring up this old thread up, but what's the proper way to parse data from pmem?

http://www.codeguru.com/cpp/misc/misc/s ... tified.htm - this seems to be completely different approach.

Thanks in advance for any insight on this one!

Bruno
by bbanelli
Wed May 24, 2017 9:26 pm
Forum: Coding Questions
Topic: COMMUNICATE WITH REST SERVER
Replies: 0
Views: 1096

Re: COMMUNICATE WITH REST SERVER

http://forums.purebasic.com/english/vie ... 13&t=66521 or similar posts - CURL is your friend, you can do everything you require through it.
by bbanelli
Thu Mar 09, 2017 10:47 pm
Forum: Applications - Feedback and Discussion
Topic: ColorCoder Pro - Now in the windows store!
Replies: 10
Views: 5233

Re: ColorCoder Pro - Now in the windows store!

For those interested, here's where to start: - Register as a microsoft developer (this costs a few bucks) /snip - Twiddle your thumbs and wait for 2-5 days for an email reply from someone representing Microsoft, make sure to check your spam box. Hi aszid, this is very interesting information, would...
by bbanelli
Mon Feb 20, 2017 2:07 pm
Forum: Feature Requests and Wishlists
Topic: PB support for Arduino and Raspberry Pi
Replies: 2
Views: 2049

Re: PB support for Arduino and Raspberry Pi

http://forum.purebasic.com/english/viewtopic.php?p=460442 I've even made PB compiler running on 86duino and linking some external libs. As you can see, there have been plenty similar ideas, but there's so much to do with PB and SB that I doubt such considerations are to be taken plausible in any for...
by bbanelli
Sun Feb 05, 2017 10:58 pm
Forum: Bugs - IDE
Topic: [PB5.6b2] Thread debugging/variable view - IMA's, IDE crash
Replies: 0
Views: 1468

[PB5.6b2] Thread debugging/variable view - IMA's, IDE crash

Greetings, please check the video - I don't even get it why this happens, let alone why sometimes program crashes, and sometimes even whole PB IDE disappears or gets killed, leaving only debugged program hanging in Process Explorer. While leaving debugger out of it, program runs fine (even with POST...
by bbanelli
Tue Jan 24, 2017 5:53 pm
Forum: General Discussion
Topic: Windows MDI depricated in 2017?
Replies: 2
Views: 1615

Re: Windows MDI depricated in 2017?

my thoughts - 1) its deprecated since 15+yrs ago so i wouldnt personally like dealing with the 'different' behavior on Win10 etc - http://stackoverflow.com/questions/31959800/mdi-window-title-in-windows-10 and 2) its Windows only :( might make it really tricky if you want the possibility to expand ...
by bbanelli
Tue Jan 24, 2017 1:17 pm
Forum: General Discussion
Topic: Windows MDI depricated in 2017?
Replies: 2
Views: 1615

Windows MDI depricated in 2017?

Greetings to all, is there any particular reason why one would not user MDI interface in PB (that is, Windows'es Multiple Document Interface (MDI))? I have an application (business software) that I am about to start building and this concept seems perfect, but I can't shake the feeling that somewher...
by bbanelli
Tue Jan 17, 2017 10:33 am
Forum: Coding Questions
Topic: concatenate string and map.. [Solved]
Replies: 38
Views: 7017

Re: concatenate string and map.. [Solved]

I edited my post, i swaped between number of slots and number of lines in the slots. That leads to an error concerning performance. It's been fixed. https://i37.servimg.com/u/f37/18/23/59/70/sans_t12.jpg http://i.imgur.com/ih7iUZo.png (same CPU as above). It doesn't seem to crash randomly like befo...
by bbanelli
Tue Jan 17, 2017 10:30 am
Forum: Coding Questions
Topic: Getting information of firewall status
Replies: 2
Views: 1461

Re: Getting information of firewall status

I'm looking for a solution to get information of the firewall. There is a cmd command netsh advfirewall show currentprofile state But the answer is in the language of the computer, and i want to make a software that will run on all languages. Any ideas how to fix this problem? The best will be an a...
by bbanelli
Mon Jan 16, 2017 10:07 am
Forum: Coding Questions
Topic: concatenate string and map.. [Solved]
Replies: 38
Views: 7017

Re: concatenate string and map.. [Solved]

Hi Fig,

on which CPU do you run your tests?

Image

Xeon E3-1231 v3, Windows 7 x64.
by bbanelli
Thu Jan 12, 2017 10:56 pm
Forum: Announcement
Topic: Windows Services & Other Stuff
Replies: 197
Views: 131931

Re: Services, Stuff, and Shellhook

Hi JHPJHP,

your Dropbox reports 429 generating too much traffic. :( Do you have alternative repository, GitHub or something similar?
by bbanelli
Mon Jan 09, 2017 2:10 pm
Forum: Coding Questions
Topic: StartVectorDrawing and Threads
Replies: 4
Views: 1123

Re: StartVectorDrawing and Threads

You probably have to do it via PostEvent(), since canvas is GUI related...
by bbanelli
Sun Jan 08, 2017 11:22 pm
Forum: Coding Questions
Topic: Client/server (network) component in PB - how to scale?
Replies: 4
Views: 1403

Re: Client/server (network) component in PB - how to scale?

Hi Mistrel, I (sort of :)) figure that out, but I'm just wandering if that issue is "code aware" (in sense I have to raise threads and event loops for each connection) or I merely enable threaded mode in complier and that is somehow magically done for me (which I doubt, but I guess one can...
by bbanelli
Sun Jan 08, 2017 10:15 pm
Forum: Coding Questions
Topic: Client/server (network) component in PB - how to scale?
Replies: 4
Views: 1403

Client/server (network) component in PB - how to scale?

Greetings to all, how is it possible to ensure scalability of server written in PB? Do I achieve that by enabling threaded mode and other is taken care of, or another approach is needed? Using PB's manual example , and omitting Quit = 1 part, how should one take care of multiple simultaneous connect...
by bbanelli
Tue Dec 27, 2016 12:34 pm
Forum: Coding Questions
Topic: Structure with dynamic items not allowed in StructureUnion
Replies: 1
Views: 1054

Structure with dynamic items not allowed in StructureUnion

Greetings to all and merry Christmas! I'd like to import GetLogicalProcessorInformationEx() function which requires SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX structure (union) that has structures in union that are arrays, for example PROCESSOR_RELATIONSHIP http://i.imgur.com/zm3zkVr.png What are my op...