Search found 1193 matches

by skiman
Tue Sep 25, 2012 8:53 am
Forum: eXpress++ Support
Topic: Operating System Name
Replies: 6
Views: 10704

Re: Operating System Name

Hi Regan,

OS() is working here:
Operating system : Windows 7 06.01 Build 07601 Service Pack 1
is the result of:
? EHS_OS_VERSION , Os() in my errorsys.prg.
by skiman
Thu Sep 20, 2012 9:13 am
Forum: eXpress++ Support
Topic: synchronize(0)
Replies: 0
Views: 5081

synchronize(0)

Hi, It seems as the synchronize(0) isn't working in the action of a pushbutton. This makes no sense, this is the action of my pushbutton. @ 230,0 DCPUSHBUTTONXP notabstop ; SIZE 76, 35 ; CAPTION 'F6' ; BITMAP ABO_PRINT1N ; ALIGN 4 ; OFFSET 3 ; SCALE 1 CONFIG oConfig ; PARENT oStatRight ; ACCELKEY xb...
by skiman
Mon Sep 17, 2012 11:59 pm
Forum: eXpress++ Support
Topic: DcBrowseCol TIPBLOCK <-> GetTooltip
Replies: 6
Views: 8732

Re: DcBrowseCol TIPBLOCK <-> GetTooltip

Hi Roger, I used a subclass because I needed a variable to hold the tooltip. Since you can use @ x,y dcsay "Caption" tooltip 'This is my tooltip' ... There is already a variabele that holds the tooltip? I'm using the following for my translations. Belgium is a little country, but we have 3 official ...
by skiman
Mon Sep 17, 2012 11:48 pm
Forum: eXpress++ Support
Topic: DcBrowseCol TIPBLOCK <-> GetTooltip
Replies: 6
Views: 8732

Re: DcBrowseCol TIPBLOCK <-> GetTooltip

Hi Roger,

Thanks for this interesting sample. I never use the DCUSEREVENT. I have to look closer to this.
by skiman
Sun Sep 16, 2012 11:34 pm
Forum: eXpress++ Support
Topic: DcBrowseCol TIPBLOCK <-> GetTooltip
Replies: 6
Views: 8732

Re: DcBrowseCol TIPBLOCK <-> GetTooltip

Hi Roger, I'm confused about your solution. Why should you use subclassing in this case? FUNCTION GetTooltip( nWhich) LOCAL cTooltip :="" DEFAULT nWhich := 0 USE text NEW INDEX text VIA 'FOXCDX' TEXT->(OrdSetFocus('NUMBER')) IF TEXT->(dbSeek(nWhich)) cTooltip := Trim(TEXT->tooltip) ENDIF close TEXT ...
by skiman
Sat Sep 15, 2012 2:13 am
Forum: eXpress++ Support
Topic: DcBrowseCol TIPBLOCK <-> GetTooltip
Replies: 6
Views: 8732

DcBrowseCol TIPBLOCK <-> GetTooltip

Hi Roger, With TIPBLOCK the tooltip is in the same thread, this way the open aliases can be used. It seems as GETTOOLTIP is in another thread, so the open aliases can't be used. In my application I have a GET for a customer name. I wanted to use the GETTOOLTIP to show the customer address and phone ...
by skiman
Tue Sep 04, 2012 11:08 am
Forum: eXpress++ Support
Topic: Tooltips not appearing
Replies: 6
Views: 9732

Re: Tooltips not appearing

Hi Regan,

I was wondering if the same happens in my application. I'm using dcpushbuttonXP and the tooltip is always showing. As soon as the cursor in one pixel in the button area, the tooltip appears.

Maybe you are using the standard pushbutton?
by skiman
Wed Aug 29, 2012 2:05 am
Forum: Xbase++ Support
Topic: Expiry date Xbase++ Devcon version
Replies: 2
Views: 7373

Expiry date Xbase++ Devcon version

HI,

The devcon version will expire on 1 September. I'm wondering if anyone saw an announcement about a new version?
by skiman
Wed Aug 29, 2012 2:01 am
Forum: eXpress++ Support
Topic: SMS Texting API
Replies: 12
Views: 25978

Re: SMS Texting API

Hi Roger,

You can send SMS messages with Skype. If you are interested in this, I have some code for it. You also have to buy credits for it.
by skiman
Sat Aug 25, 2012 12:25 am
Forum: eXpress++ Support
Topic: Copying of records of open databases in style with pseudonym
Replies: 4
Views: 8950

Re: Copying of records of open databases in style with pseud

Hi, You could use the dc_gather/dc_scatter but this wouldn't speed it up. I'm wondering if you can use ABS as aliasname, because ABS() is an existing function! This is probably the cause of your syntax errors at compile time. Absx->(DBGOTOP()) nFields := absx->(fcount()) // fcount() is a slow functi...