Posted July 5th, 2010 by Andrew Popoff
I’ve decided that the customers of xXPPopup, xXPFrame and xReportPreview is merit to get the 20% discount to CFC Library. If you have bought this products you can send me the email and I will send you the promo code at clarionshop.com.
Tags: CFC Library | No Comments »
Posted July 5th, 2010 by Andrew Popoff
Evgeny Stefanenko decided to revive Seal Soft company from oblivion. Now he is a single. First off all he updated the site. Now he is involved in updating each product. Step by step. I know that some of the product will be free.
Maybe I can get back to Seal Soft.
Tags: SealSoft | No Comments »
Posted July 5th, 2010 by Andrew Popoff
I’ve just add the About page. Welcome!
Tags: about | No Comments »
Posted June 5th, 2010 by Andrew Popoff
Is it time to start to work with it?
No Comments »
Posted May 29th, 2010 by Andrew Popoff
Today I was at the funeral of Alexander Ivanovsky.
We worked together in a large trading company a few years. For some time I worked in SealSoft.
… Rest In Peace
Tags: Alexander Ivanovsky | No Comments »
Posted May 19th, 2010 by Andrew Popoff
One man said in our mail list that we can easy manipulate with MS Excel using MS SQL Server.
EXEC sp_addlinkedserver EXCEL,
'Jet 4.0',
'Microsoft.Jet.OLEDB.4.0',
'd:\MyWorkbook.xls',
NULL,
'Excel 5.0;'
GO
SELECT * FROM EXCEL...[Sheet1$]
GO
I have not check it but it looks pretty.
Tags: MS Excel, MS SQL Server, T-SQL | No Comments »
Posted May 13th, 2010 by Andrew Popoff
Actually I solved the problem what I am written about at the below message. But this bug appears only when we using the MAV. That’s why I think that no one needs this update.
Tags: CFC Library | No Comments »
Posted May 11th, 2010 by Andrew Popoff
Download here.
I did not publish any messages for several months. Now I am developing a program for trade. We are using MS SQL 2008 and Clarion 6. We are using CFC Library as well
It’s a good test. Some days ago we found the bug. It happens when we using the timer and CFC popup menu. I think that I will update the library when I find the decision. See you
Tags: now | No Comments »
Posted January 1st, 2010 by Andrew Popoff
I am so busy that I do not have some much time to write this post
Happy New Year! I hope that this year will be better than previous.

No Comments »
Posted November 5th, 2009 by Andrew Popoff
Some years ago I decided that I will never engage programming for a web. I tried to understand Perl but I did not like it.
The last week I developed a web page using PHP. It was neccessary
And now everything is easy. Maybe PHP is easy language or maybe I am ready for a web. Of course it was the small page. But now I am not scared the web.
Tags: PHP | No Comments »
Posted October 30th, 2009 by Andrew Popoff
Today I have finished with CFC Tray Class. I have tested the class on the different Windows versions. Of course, I have tested the the class with CFC Menu Class. Also I’ve made some examples. I am do not ready to upload the class today. But I have made some screenshots and video about the tray animation. I have extracted the icons from TheBat! and made animation on the same manner
Download the video: Tray Animation

Popup menu on the tray

Windows 7 balloon's icon
Tags: CFC Library, tray | 4 Comments »
Posted October 29th, 2009 by Andrew Popoff
Clarion 6.3.9058
I have a clarion window with two buttons. Each button have an ID. As I understand this ID’s starts from 16385 (4001H). You can see this ID’s using some Spy. Thus we have a buttons with ID 16385 and 16386.

I send the message WM_COMMAND for ID 16385 and the action is executed on the button 1.
I send the message WM_COMMAND for ID 16386 and the action is executed on the button 2.
I send the message WM_COMMAND for ID 16387 and no action is executed.
!!!!!
I send the message WM_COMMAND for ID 40000 and the action is executed on the button that has a focus!
!!!!!
I send the message WM_COMMAND for ID 60000 and no action is executed.
Why this happens?
I think that some condition exists. And this condition executes the action on the button with focus when the window receives WM_COMMAND for not existing control. What is the condition?
The test code:
PROGRAM
MAP
MODULE('WinAPI')
test_SendMessage(ULONG hWnd,ULONG inMsg,ULONG wParam,LONG
lParam),LONG,PASCAL,RAW,NAME('SendMessageA'),PROC
END
END
WM_COMMAND EQUATE(0111h)
Window WINDOW('Caption'),AT(,,274,83),FONT('MS Sans
Serif',8,,FONT:regular),TIMER(1000),SYSTEM,GRAY
BUTTON('Button 1'),AT(46,18,98,46),USE(?Button1)
BUTTON('SendMessage'),AT(186,26,66,26),USE(?Button2)
END
CODE
OPEN(WINDOW)
ACCEPT
IF ACCEPTED() = ?Button1
MESSAGE('Button1 Action')
END
IF ACCEPTED() = ?Button2
MESSAGE('Button2 Action')
!test_SendMessage(0{Prop:Handle},WM_COMMAND,16385,0) ! 1. it
works despite of lParam
!test_SendMessage(0{Prop:Handle},WM_COMMAND,16385,?Button1{Prop:Handle})
! 2. it works
!test_SendMessage(0{Prop:Handle},WM_COMMAND,16387,0) ! 3. it
not works - OK
END
IF EVENT() = EVENT:Timer
!0{Prop:Timer} = 0 ! stop the timer
test_SendMessage(0{Prop:Handle},WM_COMMAND,40000,0) ! 4. it
runs control with a focus
END
END
Tags: bug | No Comments »
Posted October 28th, 2009 by Andrew Popoff
I have spent some days to write the tray class. My old 3rdParty product xXPPopup contains the tray class. I have decided that CFC Library should contain the same class. Of course much time has passed, so I rewrote the class completely.
Today, I have installed the Windows 7 specially to test the tray class. I do not use Windows Vista. But now I think that Windows 7 deserves attention. The new class contains a method that allows to show a ballon tooltip with a specified icon! That is the really cool feature
I think that I will test the class next week. I will write the documentation also. I will upload the class after that. Of course, the class will be included in CFC Library.
Tags: CFC Library, tray | No Comments »
Posted October 21st, 2009 by Andrew Popoff
Wow!
faq.clarionmag.com
Tags: Clarion Magazine | No Comments »
Posted October 20th, 2009 by Andrew Popoff
Today I have wrote the documentation for the class CFC_WndProc.
It is the class for subclassing. It was written some years ago. I use it everywhere on this day. The class included in CFC library of course. You can download the class, documentation (html) and examples here.
Tags: CFC Library, subclassing | No Comments »
Pages:
1
2
3
4
5
6
7
8
9
10
...113
114
115
Next