Search found 28 matches

by Marc
Tue Jan 22, 2013 10:49 pm
Forum: Announcement
Topic: PureBasic 5.10 beta 4
Replies: 20
Views: 9782

Re: PureBasic 5.10 beta 4

Nice and good added to PB.

Thanks a lot Fred

Marc VITRY
by Marc
Tue May 27, 2008 10:22 pm
Forum: Coding Questions
Topic: 4.20 AllocateMemory and invalid memory access
Replies: 1
Views: 929

4.20 AllocateMemory and invalid memory access

I'm working on a IDE project using Scintilla
The following code report very often a Invalid Memory Access on the AllocateMemory function.
I also noticed:
- Same with 4.10
- No problem without the debugger

Any suggestion ?


ProcedureDLL SciLexer_LoadFile(SciGadget.l, MyFile.s) ; Load the file ...
by Marc
Mon Jan 07, 2008 10:41 pm
Forum: Announcement
Topic: Using event handlers - (EasyVENT version 3.2)
Replies: 120
Views: 73653

MouseDown detection on ExplorerCombo gadget

I try to detect a MouseDown event on a ExplorerCombo gadget without succes.

The only event returned by EasyVent is #OnSetCursor.

I'm needing help for my project

Regard
by Marc
Thu Apr 12, 2007 11:19 am
Forum: General Discussion
Topic: PureHelpMaker and Purelib (Installer)
Replies: 1
Views: 2877

PureHelpMaker and Purelib (Installer)

Hi all,


I know it's not a bug...

At my office the AV is Norton and I get a Bloodhound.Overpacked message with PureHelpMaker.exe and PureLib.exe.

I think that it's because the exe files are compressed with a special tool.

My simple question:

Is it possible to get the two applications without ...
by Marc
Tue Jan 23, 2007 11:47 pm
Forum: Coding Questions
Topic: Unicode not working with mvcom ?
Replies: 1
Views: 989

Hi,

Sorry, but MVCOM is not an UNICODE lib.
As soon as I'll get free time, I'll try to modify it. But before I have to understand how to do it.

Regards
by Marc
Mon Dec 18, 2006 4:43 pm
Forum: Announcement
Topic: PureBasic 4.02 for Windows
Replies: 40
Views: 17320

Also many thanks to all PB team
by Marc
Mon Dec 18, 2006 4:38 pm
Forum: Announcement
Topic: PureBasic 4.02 for Windows
Replies: 40
Views: 17320

Avec tous nos remerciements Fred...

Joyeux Noel
by Marc
Wed Nov 01, 2006 11:24 pm
Forum: Tricks 'n' Tips
Topic: Send and receive Data from the serial ComPort , no lib
Replies: 15
Views: 12616

You may also need the Communication Specification (Protocol) of the Register.

Regards
by Marc
Wed Nov 01, 2006 10:55 am
Forum: Tricks 'n' Tips
Topic: Send and receive Data from the serial ComPort , no lib
Replies: 15
Views: 12616

If you need some help, please contact me...

Regards
by Marc
Thu Sep 07, 2006 10:34 pm
Forum: Coding Questions
Topic: RS232 communication
Replies: 13
Views: 4679

Please send your sample code...

May be you can test the inputbuffer in the event loop and if data are available, process the job...

Marc
by Marc
Thu Aug 10, 2006 9:32 pm
Forum: Coding Questions
Topic: serial port
Replies: 2
Views: 1331

These are two prodedures to send and to receive any file type.
Of course, MVCOM is used.
Please try...





Procedure ComReceiveFile(DirPath.s)

ChunkSize.l = 512
DataSize.l = 0
Stx.b = 2
Bot.b = 1
Eot.b = 4
Etx.b = 4

CarData.b = 0

FileName.s = ""
NbData.l = 0
Chaine.s = ""
Status.l ...
by Marc
Wed Mar 22, 2006 12:29 am
Forum: Announcement
Topic: MVCOM - The communication Library
Replies: 7
Views: 4902

MVCOM - The communication Library

I'm happy to confirm that MVCOM is V4 compatible .

As we'll have to modify our sources code with the new PB V4, I decided to add some functions and to get read and write functions more simple. I mean one function to read and one to write.

The following changes:

Added Functions:

ComSetTimeouts ...
by Marc
Sat Nov 26, 2005 1:56 am
Forum: Coding Questions
Topic: Simple comm port program
Replies: 11
Views: 3904

Hi Leodh

I made some modification to your source code.

Note1: It better to specify a receive buffer > 0 when opened the com port

Note2: As PB string is null terminated you can't use string to send an ascci 0 character. So it better to use ComSendByte function.

Note 3: Please download the last ...
by Marc
Thu Sep 01, 2005 12:15 am
Forum: Tricks 'n' Tips
Topic: Using IcpmSendEcho API function with PB 3.94
Replies: 1
Views: 1534

Using IcpmSendEcho API function with PB 3.94

Code updated For 5.20+

Following my post in bug section please find how to use the IcmpSendEcho function with PB 3.94 according with MSDN specification about the ReplyBuffer.
See: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/iphlp/iphlp/icmpsendecho.asp.

I hope this is a ...
by Marc
Fri Jul 15, 2005 9:01 pm
Forum: Tricks 'n' Tips
Topic: MVCOM, help!
Replies: 7
Views: 3549

Message to Richard L

In your code you have to initialise k$ to a space charracter before calling ComInput function (See the sample in the help file)

k$ = " "

As it's the result buffer and must be initialise

Regards