Search found 142 matches

by Frank Demont
Tue Feb 20, 2007 12:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with ZIP
Replies: 15
Views: 4493

I think xhbzip.dll must be available , but also xhbzip.lib and xhbzipdll.lib must be linked in.

Frank
by Frank Demont
Mon Feb 19, 2007 11:16 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problems with sending emails - some questions
Replies: 15
Views: 5918

1. Outlook always asks for permition to send an email through Outlook. How can I prevent asking this question (sometimes more than once) ? Maybe you find an answer in : c:\program Files\Microsoft Office\OFFICE11\1043\VBAOL11.chm 2. What if an email isn't send after all ? (I mean : isn't excepted by ...
by Frank Demont
Mon Feb 19, 2007 9:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: Invoking "Word.Application" wityh ole
Replies: 7
Views: 2057

Antonio, The client asked me to avoid the msginfo , but also when i add your code , this seems not to be possible Now , i see very shortly the meginfo , and then is word activated. Without the msginfo , i can return to the program without closing word , this gives problems in the next time the shell...
by Frank Demont
Mon Feb 19, 2007 9:03 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problems with sending emails - some questions
Replies: 15
Views: 5918

I use this code (based on a contribution from enrico) Frank PROC SendOLMail( aTo, c_Msg, c_Subject, a_Files , c_HTML ) ************************************************************************************************** LOCAL oOutlook, oMail , el TRY oOutlook := GetActiveObject( "Outlook.Applicat...
by Frank Demont
Sun Feb 18, 2007 9:00 am
Forum: FiveWin for Harbour/xHarbour
Topic: command-line arguments
Replies: 3
Views: 809

Code: Select all

#include "FiveWin.Ch"
FUNCTION MAIN(...)
*************
LOCAL Arr := Hb_Aparams()
AEVAL(Arr,{|j|msginfo(j)})
RETURN
by Frank Demont
Sat Feb 17, 2007 5:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Invoking "Word.Application" wityh ole
Replies: 7
Views: 2057

Enrico, yes , i know , i use this at the moment. Only , i have problems , probably because i am working in MDI envirronnement , and it is not clear when word.exe receive focus , it can also be later in the program. Not closing the text editor give also problems. So , i tryed to use ole , hoping to a...
by Frank Demont
Sat Feb 17, 2007 11:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: Invoking "Word.Application" wityh ole
Replies: 7
Views: 2057

Invoking "Word.Application" wityh ole

Hello,

I am trying to make a very simple aplication :

Open a RTF-file with word.exe
The user can edit this file and MUST save or end word

First i downloaded tWord.zip from patrick's site . I can compile , but i can not make a working sample as described.

Any example is welcome

Frank
by Frank Demont
Fri Feb 16, 2007 1:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Strange dialog problem
Replies: 15
Views: 4525

Jeff

Have you checked the dimensions from the control's ?

What if you change the ordering from the controls ?

Frank
by Frank Demont
Mon Feb 12, 2007 4:45 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Error "Cannot create dialog box" after migrating t
Replies: 12
Views: 4678

Michel ,

Try to avoid borland controls , so as 'BORSHADE'

Frank
by Frank Demont
Fri Feb 09, 2007 9:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: Printing horizontal and vertical text
Replies: 3
Views: 1039

Antonio , Ruben Thanks , with nescapement 900 or -900 it works , not with 360 # include "fivewin.ch" FUNCTION MAIN LOCAL oPrn , cTitle := "merging horizontal and vertical text" LOCAL Font , oFntV PRINT oPrn NAME cTitle PREVIEW MODAL DEFINE FONT oFntV NAME "Arial" SIZE 0...
by Frank Demont
Fri Feb 09, 2007 8:02 am
Forum: FiveWin for Harbour/xHarbour
Topic: Printing horizontal and vertical text
Replies: 3
Views: 1039

Printing horizontal and vertical text

Hello,

I have to print horizontal and vertical text on the same page.

Is it possible ?

Frank
by Frank Demont
Wed Jan 31, 2007 1:52 pm
Forum: FiveWin for Harbour/xHarbour
Topic: bitmaps on xbrowse field
Replies: 8
Views: 1459

oCol:bBmpData := { || SOCI->Attivita} ????????
by Frank Demont
Wed Jan 31, 2007 7:41 am
Forum: FiveWin for Harbour/xHarbour
Topic: bitmaps on xbrowse field
Replies: 8
Views: 1459

Silvio

If you have 4 bitmaps in a column , bBpmData should return a number between 1 and 4 , not 1 and 2 .

oCol:bBmpData := { || iif( SOCI->Attivita, 1, 2)}

Frank
by Frank Demont
Sun Jan 28, 2007 10:49 am
Forum: FiveWin for Harbour/xHarbour
Topic: Save memory vars to text file
Replies: 11
Views: 2010

Jeff From ng : SAVE copies public and private memory variables visible within the current procedure or user-defined function to a memory (.mem) file. Arrays and local and static variables, however, cannot be SAVEd. When variables are SAVEd, they are copied without any reference to scope. Variables h...
by Frank Demont
Wed Jan 24, 2007 7:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: help urgent : XBROWSE EDIT
Replies: 6
Views: 1305

Silvio,

I use :

oBrw:bClrStd := {|| {CLR_BLACK, iif( oBrw:nArrayAt % 2 = 0, CLR_1, CLR_2 ) } }

Frank