Search found 225 matches: inserting

Return to advanced search

Re: FwDArrow() NOT SHOW THE ARROW

I try also to simulate the btn of the combobox https://i.postimg.cc/50FbS72h/ghghg.png inserting activate dialog ....on init aGet[2]:oBtn:nWidth:= 20 , ; aGet[2]:oBtn:nLeft:=aget[2]:nWidth-20 but the button not is as the button of the combo as you can see the ...
by Silvio.Falconi
Sat Dec 21, 2019 11:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FwDArrow() NOT SHOW THE ARROW
Replies: 3
Views: 604

Inserting a page into mod harbour Genesis sample

Inserting a page with Material Design Blocks into mod harbour – GENESIS sample

Image




Image
by Otto
Sun Dec 08, 2019 4:14 pm
 
Forum: mod_harbour
Topic: Inserting a page into mod harbour Genesis sample
Replies: 0
Views: 318

Re: Inserting an icon on a button

We can use any filename as bitmap file. FWH will extract the icon and display it as bitmap of the button. #include "fivewin.ch"function Main()   local oDlg, oFont, aSave   local aFile := { "c:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\AcroRD32.Exe", ;       ...
by nageswaragunupudi
Fri Dec 06, 2019 1:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting an icon on a button
Replies: 5
Views: 761

Re: Inserting an icon on a button

Thanks Cristobal, everything works !
by Natter
Fri Dec 06, 2019 11:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting an icon on a button
Replies: 5
Views: 761

Re: Inserting an icon on a button

Try with

Code: Select all  Expand view


@ 50, 180 BTNBMP oBtn2 ;
OF oDlg FLAT ;
SIZE 64, 64 ;
PIXEL ;
RESOURCE 0xE10B ;
ACTION ( nam:=cGetFile(), oBtn3:LoadBitmap( nam ), oBtn3:Refresh() ) ; // update of oBtn3
COLOR CLR_WHITE, 12088150

 
by cnavarro
Fri Dec 06, 2019 11:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting an icon on a button
Replies: 5
Views: 761

Re: Inserting an icon on a button

I didn't understand - BmpFromIcon(EXTRACTASSICON returns a bimap handle. I can't use :LoadBitmap method to enter handle
by Natter
Fri Dec 06, 2019 10:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting an icon on a button
Replies: 5
Views: 761

Re: Inserting an icon on a button

Buttonaction of oBtn2 changes the bitmap < setup1.bmp > of oBtn3 to < setup2.bmp > @ 50, 180 BTNBMP oBtn2 ; OF oDlg FLAT ; SIZE 64, 64 ; PIXEL ; RESOURCE 0xE10B ; ACTION ( oBtn3:LoadBitmap( 'SETUP2.bmp' ), oBtn3:Refresh() ) ; // update of oBtn3 COLOR CLR_WHITE, 12088150 There is a TButto...
by ukoenig
Fri Dec 06, 2019 10:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting an icon on a button
Replies: 5
Views: 761

Show a Clock with mod_harbour

... with the possibility of showing the current date and time (which is automatically refreshed) and with the possibility of inserting an employee or just a 6-digit code, and insert two buttons as shown in the figure to determine entry and exit ? then the procedure should ...
by Silvio.Falconi
Fri Dec 06, 2019 9:13 am
 
Forum: mod_harbour
Topic: Show a Clock with mod_harbour
Replies: 2
Views: 521

Inserting an icon on a button

Hi,

There is a TButtonBmp button. I select a file via cGetFile and get the icon associated with the type of this file

nam:=cGetFile()
aa:=0
img:=BmpFromIcon(EXTRACTASSICON( 0, nam, @aa))

Now I need to insert this icon into the button. How can I do that ?
by Natter
Fri Dec 06, 2019 7:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting an icon on a button
Replies: 5
Views: 761

Re: FW_AdoImportFromDBF error

... fields that contained dates, tried again and now it worked, so it obvoiusly has something to do with the way my SQl server handles the dates. When inserting dates using sql sentences I use the following: cCadsql0:="insert into table (fecha1,fecha2) values ('23/09/2019','12/12/2019')"  ...
by mariordz
Thu Dec 05, 2019 9:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_AdoImportFromDBF error
Replies: 14
Views: 2311

Re: Menu item Image strange

now I resolved inserting another color

Image

not ask me why :) but it run ok now
by Silvio.Falconi
Tue Oct 29, 2019 12:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Menu item Image strange
Replies: 3
Views: 481

Re: Add element near scrollbar

... combobox in column 0 of the msgbar, or define an item with the width you consider and insert your combobox in that item. The same can be done by inserting your scrollbar in a second item. Note that you probably have to program the behavior of the scrollbar control and resize this control   ...
by cnavarro
Fri Sep 20, 2019 2:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Add element near scrollbar
Replies: 1
Views: 376

Re: New TprogressWheel

... but the idea came from an example created many years ago by Nagewarao to make statistical graphs. Antonino Perrcone has modified the class by inserting the gradient and the image type texture maybe I copied some scripts from the Delphi class, but the implementation came before I saw that class ...
by Silvio.Falconi
Tue Sep 10, 2019 5:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New TprogressWheel
Replies: 72
Views: 9539

Re: mod harbour WYSIWYG editor read/save from DBF memo

... Next I have to implement user identification. I you face problems please let me know. Thank you for your help. Inserting of pictures is limited to 2 MB. Some code inside is from 1993 from my first WINHOTEL version in FIVEWIN. :D I think it is time that all of ...
by Otto
Mon Aug 26, 2019 6:29 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: mod harbour WYSIWYG editor read/save from DBF memo
Replies: 2
Views: 622

Re: mod harbour WYSIWYG editor read/save from DBF memo

... Next I have to implement user identification. I you face problems please let me know. Thank you for your help. Inserting of pictures is limited to 2 MB. Some code inside is from 1993 from my first WINHOTEL version in FIVEWIN. :D I think it is time that all of ...
by Otto
Sun Aug 25, 2019 9:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: mod harbour WYSIWYG editor read/save from DBF memo
Replies: 3
Views: 701
PreviousNext

Return to advanced search