Search found 56 matches

by yury
Sat Sep 01, 2007 3:50 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Adding jpeg to a database and browsing them
Replies: 5
Views: 1586

hi Willy,

see this sample in FiveWin.com.br


http://www.fivewin.com.br/exibedicas.asp?id=801


regards
by yury
Fri Aug 31, 2007 2:30 pm
Forum: FiveWin for Harbour/xHarbour
Topic: MetaFile to ClipBoard
Replies: 4
Views: 2100

Hi Antonio, thanks for your suport... Folowing your instructions, i add the method SetMetaFile() on TClipBoard class... By suposition, i created another method, GetMetaFile(): method GetMetaFile() local hMetaFile := 0 if ::Open() hMetaFile = GetClpData( CF_ENHMETAFILE ) ::Close() endif return hMetaF...
by yury
Thu Aug 30, 2007 11:17 am
Forum: FiveWin for Harbour/xHarbour
Topic: MetaFile to ClipBoard
Replies: 4
Views: 2100

MetaFile to ClipBoard

hi everyone,

Is possible copy the content of metafile to clipboard of Windows ?

regards
by yury
Tue Aug 14, 2007 8:25 pm
Forum: FiveWin for Harbour/xHarbour
Topic: lisdir() problem
Replies: 7
Views: 1422

i dont think so...

here in my testes both returns .T. ( directory exists !!! )

Code: Select all

local cValue := GetEnv( "USERPROFILE") 
local cDirec := '\Configurações locais\Application Data'

msginfo(lIsDir(lfn2sfn(upper(cValue+cDirec)))) 
msginfo(lIsDir(cValue+cDirec)) 
regards
by yury
Fri Jul 06, 2007 8:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TMail with html body and attachment
Replies: 5
Views: 1654

Hi Detlef,

I will test your example and post results here...

Thanks you for help and attention

Best Regards
by yury
Fri Jul 06, 2007 5:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TMail with html body and attachment
Replies: 5
Views: 1654

Hi Detlef,

thank you for explanation, very usefull...

do you have any example about message text formated with html tags what works with MS OutLook Express (TMail class invoke OE) ?

best regards and thank you again
by yury
Fri Jul 06, 2007 1:48 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TMail with html body and attachment
Replies: 5
Views: 1654

nothing ????
by yury
Fri Jul 06, 2007 10:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a Report from a ListBox
Replies: 2
Views: 545

hi Ollie,

the message box is empty because your app don't find prev32.dll ...

regards
by yury
Wed Jul 04, 2007 12:58 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TMail with html body and attachment
Replies: 5
Views: 1654

TMail with html body and attachment

hi everyone, I´m using a TMail class to send mails, it´s work fine, but i have one question: when i want send email with html body i do this: cSubject = "Testing Html Body" cNoteText = nil cMsgType = nil cConversationID = nil dDate = Date() cTime = Time() lReceipt = .F. lFromUser = .T. aOr...
by yury
Thu May 31, 2007 8:58 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Embed Icon in EXE
Replies: 7
Views: 1780

hello, in title of window application: if you have a icon file: DEFINE ICON oICON FILENAME "yourIcon.ico" DEFINE WINDOW oWINDOW FROM 1,1 TO 20,70 MDI; COLORS CLR_BLACK,CLR_WHITE; MENU BUILDMENU() ; ICON oICON ; TITLE "YourTitleAplication" if you have a icon in resource or dll fil...
by yury
Thu May 24, 2007 12:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Duvida sobre os #defines
Replies: 8
Views: 2358

olá, pelo q entendi vc criou um define no FiveWin.ch e depois está querendo alterar o valor deste define via código em tempo de execução, de acordo com as preferências do usuário. É isso, não é ? bem se for isso, pelo que eu entendo os defines devem ser utilizados para valores CONSTANTES e não VARIÁ...