Search found 591 matches: draw

Return to advanced search

Re: problem in Mdi

... but then I have this https://i.postimg.cc/YS7YM6rW/f.png and then an hourglass that spins endlessly wich libs I must link can you draw on this image with an arrow please (I use Harbour) https://i.postimg.cc/dt7xyY89/jj.png
by Silvio.Falconi
Wed Jan 18, 2023 8:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem in Mdi
Replies: 10
Views: 598

Re: chatGPT writes and executes Harbour code !!!

asked : Can you show me the code of a program written in C++ language to draw a christmas tree in bmp format SomeOne can try this ? :D :D :D :D ?#include <iostream>#include <fstream>#include <cstdint>using namespace std;// Definizione della ...
by Silvio.Falconi
Wed Dec 14, 2022 10:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: chatGPT writes and executes Harbour code !!!
Replies: 35
Views: 2822

Re: cyclometric circle

... you going to put a 'personel touch' and change the number with you personel algoritm. I hope you succeed !! In Belgium, we have only 45 numbers to draw... this is a statistical issue, I also have other procedures that calculate delays, frequencies, forecasts, figures, classes and other procedures. ...
by Silvio.Falconi
Wed Dec 07, 2022 8:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 3085

Re: cyclometric circle

... you going to put a 'personel touch' and change the number with you personel algoritm. I hope you succeed !! In Belgium, we have only 45 numbers to draw...
by Marc Venken
Tue Dec 06, 2022 2:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 3085

Re: updating an archive

... the date to the system and put November 18, 2022, I have always saved the last record on November 12 in the archive and I know that the next draw after November 12 was November 15 and November 17. Well changing the date of the system I have the same message with your test Probé tu ejemplo ...
by Silvio.Falconi
Tue Nov 15, 2022 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: updating an archive
Replies: 9
Views: 615

Re: updating an archive

... I have as reference the last record of the archive which has the date 12.11.2022 which is a Saturday Today is 15.11.2022 and the last valid draw before today was 12.11.2022 I have as a reference that the extractions take place on Tuesdays, Thursdays and Saturdays today which is Tuesday 11.15.2022 ...
by Silvio.Falconi
Tue Nov 15, 2022 10:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: updating an archive
Replies: 9
Views: 615

Re: updating an archive

... not DTOS() which give you "more" Information you can ad "more" to DTOS() like Postcode of City to compare (use Number) lottery drawings in Italy are drawn every week and precisely on Tuesdays, Thursdays and Saturdays when the application is opened, the procedure must notify ...
by Silvio.Falconi
Mon Nov 14, 2022 5:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: updating an archive
Replies: 9
Views: 615

Re: FWH 21.06

Thanks all for the information on how to fix the link issue on my FWH 21.06, and now am seeing a problem with the line draw features of the print, the lines have bulked up quite a bit, like 4 to 5 times larger than they look in the older version. Anybody else seen this phenonium, ...
by byron.hopp
Wed Oct 26, 2022 5:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 21.06
Replies: 4
Views: 330

Re: Draw a bitmap

If I understood the question correctly.. I do everything on one monitor. Its resolution is 1920x1080, scale 125%. I open the FW window and expand it to full screen. In this case, oWnd:nWidth has the value 1536 (height is not important). I take a full screenshot and get a bitmap size of 1920x1080. Th...
by Natter
Thu Oct 06, 2022 6:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Draw a bitmap
Replies: 6
Views: 450

Re: Draw a bitmap

Are you trying to take a screen shot from a 1980x1024 monitor and display full screen on a 1536 monitor?
Can you please let me know what is width and height of the 1536 monitor?
by nageswaragunupudi
Thu Oct 06, 2022 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Draw a bitmap
Replies: 6
Views: 450

Re: Draw a bitmap

Dear Natter,

Have you tested all the nResizeModes that Mr. Rao has explained you ?
by Antonio Linares
Thu Oct 06, 2022 3:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Draw a bitmap
Replies: 6
Views: 450

Re: Draw a bitmap

Thanks ! I would strongly suggest you run the above small sample, replacing the value of "nResizeMode" with all values I suggested. I tried all the modes. Everything works. However, it does not look very nice. After all, to insert a 1920-width bitmap into a 1536-width window, the drawimage...
by Natter
Thu Oct 06, 2022 8:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Draw a bitmap
Replies: 6
Views: 450

Re: Draw a bitmap

... ACTIVATE DIALOG oLay  ON PAINT eval(oLay:bPnt) Everything works fine if the Scale is 100%. If, for example, Scale is 125%, then the drawn bitmap is distorted. What can be done ? No need for any such complex program. No need to resize first and then draw the image. Method DrawImage(...) ...
by nageswaragunupudi
Thu Oct 06, 2022 5:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Draw a bitmap
Replies: 6
Views: 450

Re: Draw a bitmap

hi Natter, use a Manifest with  <application xmlns="urn:schemas-microsoft-com:asm.v3">       <windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">           <dpiAware>true</dpiAware>       </windowsSettings>  </applicatio...
by Jimmy
Thu Oct 06, 2022 12:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Draw a bitmap
Replies: 6
Views: 450

Draw a bitmap

Hi, The monitor resolution is 1920x1080. I need to put a bitmap on the window (the window is expanded to full screen). hBmp - bitmap 1920x1080  hCropBmp:=FW_TransformBitmap(hBmp, {1, 1, oWnd:nHeight, oWnd:nWidth})  bPnt:=&('{||oLay:DrawImage('+ltrim(str(hC...
by Natter
Wed Oct 05, 2022 7:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Draw a bitmap
Replies: 6
Views: 450
PreviousNext

Return to advanced search