Search found 18 matches

by Stefou
Thu May 09, 2019 4:32 am
Forum: Coding Questions
Topic: Bug or Not : AddWindowTimer + EventWindow()
Replies: 1
Views: 872

Bug or Not : AddWindowTimer + EventWindow()

Hello everybody! 8)

I hope everything is fine for you and I thank you for reading me.

Here is a first code that works correctly:
- if I click on window 0, I have events on window 0
- if I click on window 1, I have events on the window 1

If OpenWindow(0, 0, 0, 300, 600, "fenetre 0", #PB_Window ...
by Stefou
Tue Jan 02, 2018 12:55 pm
Forum: Off Topic
Topic: [Resolved] I'm looking for a way to have no false positives
Replies: 9
Views: 3514

Re: I'm looking for a way to have no false positives

:? Oups :?
After my rechearch, I have may be some virus in my computer.

With the new version of Purebasic, and don't use JaPbe, it stay just one : "Sophos ML -> heuristic" and not in all software !

Then I'm very happy, I will be able to continue with PureBasic :D :D :D :D

Thank you every body
by Stefou
Tue Jan 02, 2018 9:04 am
Forum: Off Topic
Topic: [Resolved] I'm looking for a way to have no false positives
Replies: 9
Views: 3514

Re: I'm looking for a way to have no false positives

Thank you

@wombats : too many false for the moment

@Dude: yes, i have already read this one

@HanPBF: With include version info i have just one false virusby "Cylance : Unsafe", it's very good.

I will try UPX
by Stefou
Tue Jan 02, 2018 8:27 am
Forum: Off Topic
Topic: [Resolved] I'm looking for a way to have no false positives
Replies: 9
Views: 3514

[Resolved] I'm looking for a way to have no false positives

Hello everybody

I work few years to make some software for teaching. And nom it's ready to sale :D
In another way i begin to work for business and make software.
I'm very happy to use PureBasic....

But the anti-virus do false positives!

I can't sale software with virus even this is false ...
by Stefou
Sat Sep 02, 2017 6:50 am
Forum: Coding Questions
Topic: Hook doesn't work with 5.6
Replies: 3
Views: 1772

Re: Hook doesn't work with 5.6

Thank you and sorry to had post in Bug.

Have a nice day
by Stefou
Fri Sep 01, 2017 6:48 am
Forum: Coding Questions
Topic: Hook doesn't work with 5.6
Replies: 3
Views: 1772

Hook doesn't work with 5.6

Hello
This code is good with PB 5 but not with PB5.6...maybe a bug ...???? :?

Thank you to have a look :)

Program:
OpenWindow(0,0,0,300,200,"Test_Hook");,#PB_Window_Invisible)

hDLL = OpenLibrary(0, "hook_detection_pc.dll")
Debug hDLL
hmyHookHookKeyboard = SetWindowsHookEx_(#WH_KEYBOARD ...
by Stefou
Tue Jan 12, 2016 4:36 pm
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 734835

Re: PureBasic Interface to OpenCV

Thank you AAT :D

It' exactly what i wan't to do! :D

I'm happy :D
by Stefou
Tue Jan 12, 2016 7:05 am
Forum: Announcement
Topic: PureBasic Interface to OpenCV
Replies: 885
Views: 734835

Re: PureBasic Interface to OpenCV

Hello JHPJHP

Thank you for all of that. It's help me so much to access to my camera stream. :D

I need to work on image with purebasic command.

I find to save image on HD but i'd like to work in memory.

Something like that :
*image = cvQueryFrame(*capture)
CatchImage(0, *image)

I'm not good ...
by Stefou
Tue May 15, 2012 9:41 am
Forum: Coding Questions
Topic: Key Alt and MouseMove in CanvasGadget
Replies: 4
Views: 1949

Re: Key Alt and MouseMove in CanvasGadget

Code: Select all

removing the #PB_Window_SystemMenu flag from the window eliminates this behaviour
Yes It's true ! But there is no probleme with the Ctrl or Shift key, then i think it's a bug.
by Stefou
Tue May 15, 2012 8:44 am
Forum: Coding Questions
Topic: Key Alt and MouseMove in CanvasGadget
Replies: 4
Views: 1949

Key Alt and MouseMove in CanvasGadget

Hi evrebody !!! 8)

I just find the CanvasGadget(), it's very nice ! Thank you to Fred and The Team, i'm begin my 100 program this week !!!

In CanvasGadget when you listing the #PB_EventType_MouseMove, the event stop when you push the Alt key down and up.
And the event restart when you push Alt ...
by Stefou
Fri Jun 20, 2008 8:04 am
Forum: Coding Questions
Topic: Read/Write Exif dates
Replies: 22
Views: 16951

Thank you for this code !

With it, i make one i need. For rotation of my pictures.
return 0 if there is can not get exif
return 1 for ok
return 6 for rotation right 90
return 8 for rotation left 90


Procedure GetRotationExif(jpg$)
If OpenFile(0, jpg$)
;--> Byte 0 of EXIF begins after JPEG ...
by Stefou
Mon Jun 09, 2008 2:48 pm
Forum: Coding Questions
Topic: open ExplorerTreeGadget in a directory ?
Replies: 0
Views: 652

open ExplorerTreeGadget in a directory ?

Hello everybody :?
I need one ExplorerTreeGadget open in a directory.
The same as we do that :

Code: Select all

RunProgram(  "C:\WINNT\explorer.exe"   ,  "/n,/e,/root,c:\Program Files\"   ,  ""   ,#PB_Program_Wait) 
Thank you for your answer
by Stefou
Fri May 30, 2008 1:08 pm
Forum: Coding Questions
Topic: [resolve]Webgadget : insert picture ?
Replies: 11
Views: 3157

Then, after some hours of work, i give you my WebEditor.
New and Open doesn't work yet, becaus i don't use it.

Thank you for every one i catch them code ! 8)

The icone is here : http://perso.ecligne.net/icone.zip

;{- html constante

; WG library. By Fr34k and Zapman.
;
; Some of the followings ...
by Stefou
Thu May 29, 2008 7:23 pm
Forum: Coding Questions
Topic: [resolve]Webgadget : insert picture ?
Replies: 11
Views: 3157

On the french forum, nico post the solution !


BSTR is not Unicode !
A BSTR is a string unicode with one octet for the lenght of the string.

We must use this

Procedure StringToBStr (string$) ; By Zapman Inspired by Fr34k
Protected Unicode$ = Space(Len(String$)* 2 + 2)
Protected bstr_string.l ...
by Stefou
Thu May 29, 2008 3:05 pm
Forum: Coding Questions
Topic: [resolve]Webgadget : insert picture ?
Replies: 11
Views: 3157

i mean PB 4.20 (same as PB 4.2) Wink
It was what i think !

Code: Select all

did you check the image-path? 
Yes


I'm going to do a break... :roll:

I don't understand....and that make me mad :evil:

In any way, thank you for your answer.