I have updated the download address.infratec wrote:Hi,
I just want to download your code, but I get a warning from my browser that this site is not good to visit.
So I stopped my attempt.
Can you upload it to an other site?
Bernd
Search found 4 matches
- Sat Mar 05, 2016 6:05 pm
- Forum: Coding Questions
- Topic: skinsharp Static library usage
- Replies: 5
- Views: 1695
Re: skinsharp Static library usage
- Sat Mar 05, 2016 6:04 pm
- Forum: Coding Questions
- Topic: skinsharp Static library usage
- Replies: 5
- Views: 1695
Re: skinsharp Static library usage
I have updated the download address.falsam wrote:This site is not secure and the file contains SkinH_VB6.dll.
http://home.mcafee.com/virusinfo/virusp ... 42188#none
Click Virus characteristics and Other Common Detection Aliases.
- Sat Mar 05, 2016 4:23 pm
- Forum: Coding Questions
- Topic: skinsharp Static library usage
- Replies: 5
- Views: 1695
skinsharp Static library usage
I'm from China
I have 2 questions, ask for the answer.
1:questions
#WM_SHOWWINDOW How to use in PUB
(event=#WM_SHOWWINDOW)?
2:questions
skinsharp Static library usage
I always fail without a clue.
I have attached source code and Library
download :
http://pan.baidu.com/s/1i4shFW5 ...
I have 2 questions, ask for the answer.
1:questions
#WM_SHOWWINDOW How to use in PUB
(event=#WM_SHOWWINDOW)?
2:questions
skinsharp Static library usage
I always fail without a clue.
I have attached source code and Library
download :
http://pan.baidu.com/s/1i4shFW5 ...
- Thu Mar 03, 2016 12:26 pm
- Forum: Feature Requests and Wishlists
- Topic: ADD CLASS
- Replies: 8
- Views: 3105
ADD CLASS
;- Klassen
Class GetFrameRate
FPS.l
lFPS.l
sFPS.l
Public Method Get()
This\FPS + 1
If ElapsedMilliseconds() - This\lFPS >= 1000
This\sFPS = This\FPS
This\FPS = 0
This\lFPS = ElapsedMilliseconds()
EndIf
MethodReturn This\sFPS
EndMethod
EndClass
Class ScreenSize
Public Width.l ...