Search found 401 matches

by MdaSolution
Tue Jan 19, 2010 8:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Show all bmps
Replies: 9
Views: 1414

Re: Show all bmps

I try with the first sample #include "FiveWin.Ch" #include "xbrowse.ch" function main()    local aDir := Directory( 'C:\FWH\bitmaps\*.bmp' )    local abmp    local n, r, c    local oWnd, oBrw, oBar    aBmp  := Array( Int( Len( aDir ) / 5 ) + 1, 5 )    r := 1    c := 1    for n :=...
by MdaSolution
Tue Jan 19, 2010 7:59 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Show all bmps
Replies: 9
Views: 1414

Re: Show all bmps

Sorry Mr Rao
I forget the slash "\" now run ok on c:\fwh\bitmaps\ thank you so much

I tried with other folders

I have a folder on the folder of my application called ".\pat\ "
I isert it but it not run
by MdaSolution
Tue Jan 19, 2010 5:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Show all bmps
Replies: 9
Views: 1414

Re: Show all bmps

Mr Rao,

Itry the test number 1 and number two

they are compiled but I cannot see the bitmaps

I tried to insert my folder of Images ".\images\*.bmp" and I cannot see any bmps

there is something of wrong or I not understand How make it
by MdaSolution
Tue Jan 19, 2010 11:29 am
Forum: FiveWin for Harbour/xHarbour
Topic: Show all bmps
Replies: 9
Views: 1414

Show all bmps

Can I show all bmp are in a folder into a Panel ? sample nMargenLeft :=200 DEFINE WINDOW oWndChild MDICHILD of oWnd; TITLE "New Test" ; VSCROLL oPanel := TPanel():New( 0, 0, 1000, nMargenLeft, oWndChild ) oPanel:SetColor(0,RGB(143,172,230)) oWndChild:oLeft:= oPanel -> Show all bitmaps aDir...
by MdaSolution
Tue Jan 19, 2010 11:00 am
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Limit ---- RESOLVED!!!
Replies: 12
Views: 1801

Ribbon Limit ---- RESOLVED!!!

I want move a bitmap with ldrag procedure into a Main ownd but I want not move over the ribbonbar

How I can make it ?

thanks
by MdaSolution
Tue Jan 19, 2010 7:43 am
Forum: FiveWin para Harbour/xHarbour
Topic: New Preview
Replies: 2
Views: 552

Re: New Preview

HB_FUNC( CREATECOMPATIBLEBITMAP )
{
hb_retnl( (LONG) CreateCompatibleBitmap( ( HDC ) hb_parnl( 1 ), hb_parni( 2 ), hb_parni( 3 ) ));
}
by MdaSolution
Mon Jan 18, 2010 4:50 pm
Forum: FiveWin for Harbour/xHarbour
Topic: drag and drop
Replies: 0
Views: 204

drag and drop

I try to move a bitmap (ldrag)
I can move the control within certain limits, inside a 'specific area and not let it get out of this?
HowI can make and control it ?
by MdaSolution
Mon Jan 18, 2010 9:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: Reports and Printer
Replies: 2
Views: 413

Reports and Printer

Can we call the measures of our printer often call an oprn obj ?

for sample if I installed on my printer A4 format it must return 1240 and 912 or 912,1240 if it is landscape or Portrait

exist a func to have these measure ?
by MdaSolution
Sun Jan 17, 2010 10:44 pm
Forum: FiveWin for Harbour/xHarbour
Topic: refill a bitmap
Replies: 2
Views: 487

Re: refill a bitmap

sorry But I found the function FloodFill

I think it can be done calculating the coors the bitmaps

FloodFill(hCDC, x,y , CLR_BLACK, nColor)

but I not Know How Found the coors of the bitmap
by MdaSolution
Sun Jan 17, 2010 9:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: and XPM files ?
Replies: 2
Views: 378

Re: and XPM files ?

THANKS BUT i THINKED i USE PNG
by MdaSolution
Sun Jan 17, 2010 8:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: refill a bitmap
Replies: 2
Views: 487

refill a bitmap

If I have a bitmap showed on a dialog

sample
Image


can I refill only the black arrow with a different color ( RED, BLU,YELLOW) ?

I wish that the arrow must be refilled by end user with the mouse

How I can make this ?
by MdaSolution
Sun Jan 17, 2010 5:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: png files on bmp
Replies: 2
Views: 422

Re: png files on bmp

I must insert and show symbols on my class Tsection YOU can see on a old topic of this week I need this class to show section of images and Now I must insert on each images symbols : I wish have png files this in buttonbar DEFINE BUTTON OF oBar Resource "btn22" tooltip "New symbol&quo...
by MdaSolution
Sun Jan 17, 2010 5:40 pm
Forum: FiveWin for Harbour/xHarbour
Topic: and XPM files ?
Replies: 2
Views: 378

and XPM files ?

Can we open and show XPM graphics files ?
by MdaSolution
Sun Jan 17, 2010 4:40 pm
Forum: FiveWin for Harbour/xHarbour
Topic: png files on bmp
Replies: 2
Views: 422

png files on bmp

I must insert png transparent on a big bmp

can have a sample please
by MdaSolution
Sun Jan 17, 2010 1:58 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New class on development
Replies: 6
Views: 1301

Re: New class on development

Now run ok I can add a new eitem, a new row from the method ADDItem() I need also the possibility to erase a row ( an Item) or insert an Ite between other two items How I can make it ? this is the last release /////////////////////////////////////////////////////////////////// CLASS TSections FROM T...