Search found 17 matches: automating

Return to advanced search

Re: Does anyone have an Envelope Printing module ?

Tim I had a meeting with my Client last Friday and he is not really so concerned with automating envelopes .. He tells me he just cuts and pastes the address into Word and then prints his envelope and an automated envelope routine would be nice to have but not a requirement ...
by Rick Lipkin
Mon Mar 04, 2024 2:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does anyone have an Envelope Printing module ?
Replies: 10
Views: 359

Re: Mapi Outlook .. send mail silently

Tim

Thanks ... automating Outlook is my clients choice ... I welcome your efforts!

Rick Lipkin
by Rick Lipkin
Wed Dec 11, 2019 2:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mapi Outlook .. send mail silently
Replies: 15
Views: 2510

Re: API xHarbour 1.2.1 to Word

... Programmiersprachen wie Delphi, Python, C++ und Visual Foxpro {http://ooomacros.org/dev.php} Das OpenOffice.org Forum {http://www.oooforum.org} Automating OpenOffice.org, ein Tutorial {http://udk.openoffice.org/common/man/tutorial/office_automation.html} Programming OpenOffice.org with Visual ...
by Jimmy
Sat Sep 07, 2019 10:44 am
 
Forum: All products support
Topic: API xHarbour 1.2.1 to Word
Replies: 1
Views: 1614

FWH 1805 - oBrw:SetTree( [<nLevels>] ) -> Automatic Trees

... [aCols] ).  Building a tree from a sorted set of data is a bit complex. Now, the method SetTree() simplifies the process by automating it. Process: First set up browse of the sorted data in the normal way from any datasource, viz., Array, DBF, Object, ADO of oQry. Then, either ...
by nageswaragunupudi
Sun Jul 08, 2018 1:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 1805 - oBrw:SetTree( [<nLevels>] ) -> Automatic Trees
Replies: 15
Views: 3596

Re: FIVEWIN: WINHOTEL new metro style video

... style. I use FIVEWIN now more like HTML. Years ago I changed all to resources now back to hardcoded. I think we need an easier way. Time spent automating will be gained back many times over. I found my personal style for WINHOTEL but I don’t know if this is according to the standard. If you ...
by James Bott
Fri Jul 12, 2013 9:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FIVEWIN: WINHOTEL new metro style video
Replies: 17
Views: 5797

Lailton .. navigate back one page in IE

Lailton In my web crawiling application .. I am trying to navigate back one page and automating that seems to be a syntactical task .. I have searched and come up with multiple possibilities but each fail .. Window.History.GoBack(-1) From MSDN : http://msdn.microsoft.com/en-us/library/ms536346%28v=vs.85%29.aspx ...
by Rick Lipkin
Sat Jun 04, 2011 5:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lailton .. navigate back one page in IE
Replies: 2
Views: 633

Re: Automating Compile and Link

Doug,

it would be great of you could post some screenshots of what you are doing, how the apps look, etc. Thanks! :-)
by Antonio Linares
Sun Nov 15, 2009 4:22 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Automating Compile and Link
Replies: 9
Views: 3186

Re: Automating Compile and Link

Hi Antonio Whilst the compile and link code is not nice and clean as yet, the generator can now take an application definition (as an xml file), generate the .prg code, compile that code and link it to produce an executable and run the executable it has produced all in a single process. I have code ...
by xProgrammer
Mon Oct 05, 2009 12:32 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Automating Compile and Link
Replies: 9
Views: 3186

Re: Automating Compile and Link

Hi Antonio Current Structure of Compile and LInk back end is: Class SSFile => encapsulates a file and its attributes, especially date and time Updated Class SSPRGFile => derived from SSFile. Adds behaviour specific to .prg files, mainly extension Class SSCFile => derived from SSFile. Adds b...
by xProgrammer
Mon Oct 05, 2009 3:29 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Automating Compile and Link
Replies: 9
Views: 3186

Re: Automating Compile and Link

Hi Antonio I am building the engine to automatically build applications produced by my code generator. Currently my code generator builds a shell script that can build the application. But that is an extra step which I am working on eliminating. Originally my code generator was based on a series of ...
by xProgrammer
Mon Oct 05, 2009 3:12 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Automating Compile and Link
Replies: 9
Views: 3186

Re: Automating Compile and Link

Doug,

Nice to see that you are improving and moving forward on your Linux development :-)

Are you working on a visual make tool ?
by Antonio Linares
Sun Oct 04, 2009 11:59 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Automating Compile and Link
Replies: 9
Views: 3186

Re: Automating Compile and Link

Hi Antonio Thanks for the wonderfully prompt reply. I was in the middle of finding a solution without having to go to C, but I'll keep that option in mind. It's a nice outcome from this searching for a solution that I can do a single call to pkg-config and use it for each individual file to be compi...
by xProgrammer
Sun Oct 04, 2009 8:41 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Automating Compile and Link
Replies: 9
Views: 3186

Re: Automating Compile and Link

I have pretty much solved this one. The first problem I found was that the new process didn't seem to inherit the current working directory so I replaced the include files that were specified with relative names by absolute names. I wrote code to get the information returned by pkg-config from a sep...
by xProgrammer
Sun Oct 04, 2009 8:29 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Automating Compile and Link
Replies: 9
Views: 3186

Re: Automating Compile and Link

Doug,

I would suggest to compare the source code of RUN with your ExecuteProcess() code:

Basically it does a call to:
iret = system( hb_parc( 1 ) );

http://www.cit.gu.edu.au/teaching/2501ICT/cgi-bin/man.cgi?system
by Antonio Linares
Sun Oct 04, 2009 7:00 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Automating Compile and Link
Replies: 9
Views: 3186

Re: Automating Compile and Link

This works, but isn't ideal: FUNCTION CompileC( str_CName )  // RETURN ExecuteProcess( "gcc " + str_CName + ".c -c -I./../include -I./../../xharbour/include `pkg-config --cflags gtk+-2.0`" )  RUN ( "gcc " + str_CName + ".c -c -I./../include -I./../../xh...
by xProgrammer
Sun Oct 04, 2009 4:48 am
 
Forum: FiveLinux / FiveDroid (Android)
Topic: Automating Compile and Link
Replies: 9
Views: 3186
Next

Return to advanced search