Search found 21 matches: crude

Return to advanced search

Re: Excel OLE RTE when compiled with Harbour

It's just a crude report written in class form as I try to avoid using public,private variable as much as possible :)
Irregardless, I've emailed it to you.
Thank you
by hua
Tue Aug 30, 2022 3:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Excel OLE RTE when compiled with Harbour
Replies: 15
Views: 858

Re: UrlEncode, UnlDeCode

Hi, Mr.AntonioP, Thank you very much for guiding me. I could achieve my requirement as under (might be in a crude way.. ) But I will try with your code in xHarbour and let u know the result. #include "FiveWin.ch"FUNCTION Send_SMS()LOCAL cMessage := "Hi, ...
by RAMESHBABU
Tue Sep 24, 2019 12:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UrlEncode, UnlDeCode (SOLVED)
Replies: 10
Views: 1812

Re: TGraph 2 Y-axis for different's scales

... and the same X axis scale? James Hi James, look like a good solution but when Y-axis values overlap will be a mess, the big problem is that while Crude Oil is measured in hundreds of thousands, gas values is measured in millions, and we need to see both lines together to show how they interact ...
by hebert_j_vargas
Sun Aug 06, 2017 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGraph 2 Y-axis for different's scales
Replies: 20
Views: 3517

Re: Proportional font size according to window resolution

Adolfo, OK, I have a crude working example, but there may be a problem with line length. Is the length fixed? Or, better, what is the maximum length. The length matters since the font has to be reduced to a size that the entire line ...
by James Bott
Wed May 28, 2014 10:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Proportional font size according to window resolution
Replies: 17
Views: 4142

Re: Scoped xbrowse

Hunter, The older TWBrowse had crude scope settings built-in, but that was done probably before NTXs had scoping (probably when most of us were still using Clipper). Most everyone is using CDXs now, but even NTXs have scopes under (x)Harbour ...
by nageswaragunupudi
Fri Sep 13, 2013 3:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Scoped xbrowse
Replies: 8
Views: 1350

Re: Scoped xbrowse

Hunter, The older TWBrowse had crude scope settings built-in, but that was done probably before NTXs had scoping (probably when most of us were still using Clipper). Most everyone is using CDXs now, but even NTXs have scopes under (x)Harbour ...
by James Bott
Fri Sep 13, 2013 12:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Scoped xbrowse
Replies: 8
Views: 1350

Re: Sending e-mail with CDO and SSL

Rick, Well it is a crude start. It has no input format checking which is what turned out to be Tim's problem. As, Enrico pointed out, you may get random errors preventing mail from being sent. I posted a sample loop on error solution ...
by James Bott
Thu Apr 04, 2013 2:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sending e-mail with CDO and SSL
Replies: 24
Views: 9568

Re: ADO MYSQL se cae con 2 usuarios modificando mismo registro

... method. I very much doubt if Resync(...) is available for ADO MySql, particularly because ODBC is used. Only remaining alternative is to use the crude TRY .. CATCH .. END. We may examine the ADO error object to make sure it is the concurrency issue. If the Update fails, ReQuery() the recordset, ...
by nageswaragunupudi
Fri Oct 14, 2011 3:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO MYSQL se cae con 2 usuarios modificando mismo registro
Replies: 3
Views: 1150

Re: xbrowse TreeItem

Yes. For the time being, you can delete the record from the original data and then reconstruct the tree and refresh the browse. Seems very crude solution but works quite well and I myself used it under complex situations without hitting the performance.
by nageswaragunupudi
Thu Mar 17, 2011 2:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse TreeItem
Replies: 15
Views: 3237

Re: vTaskBar on the left MDIChild Window on the Right

Reinaldo, This is a crude fix for the Windows menu problem in my previous code example. Changing these two lines to maximize the MDI child window before setting focus, will fix a screen that has been messed up by the user selecting ...
by James Bott
Tue Sep 28, 2010 10:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: vTaskBar on the left MDIChild Window on the Right
Replies: 14
Views: 4556

Re: tgraph problem end oDlg and print

Reinaldo, OK, here is a crude working example. The acual pies are not showing but that is probably due to my made-up numbers. James #include "fivewin.ch"#include "tgraph.ch"function main()   local oWnd   define ...
by James Bott
Sun Jun 13, 2010 2:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tgraph problem end oDlg and print
Replies: 18
Views: 3795

Re: HTML Editor

Rao,

What I have been looking is whether we can print RTF without opening in a VISUAL control first.


You could try creating the control hidden, then print, then end the control. Rather crude, but it may work.

James
by James Bott
Tue Mar 02, 2010 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HTML Editor
Replies: 16
Views: 6014

Re: Hiding an MDI main menu from a NOWAIT dialog

... PROMPT "Joint Details" ACTION ( if(chkopt("A",2 ),rails(),) ) WHEN m->_Library I make use of PUBLIC variables (crude, I know) and set this to .T. or .F. when required and issue a m->oMenuB5:refresh() I hope this works for you Cheers,
by patdriscoll
Wed May 20, 2009 10:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hiding an MDI main menu from a NOWAIT dialog
Replies: 5
Views: 1622

Re: Printing a pre-formated letter

... I had some old code from extracting letters from a .fpt memo field and I thought I would give it a shot and it worked .. here is the code .. a bit crude, but it works : cTEXT := oRsLett:Fields("letter_text"):ValueoRsLett:Close()oPRINT:lPrvModal := .T.DEFINE FONT oFont ...
by Rick Lipkin
Thu Feb 19, 2009 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing a pre-formated letter
Replies: 7
Views: 1107

Programming Reference Guides

... program to split up each topic and put it into a memo field and extract the topic (title) and copy it to another field. So that might be a rather crude beginning for a partial system if indeed none really exists. I have found that even with the rather classy xHarbour reference I have had to use ...
by xProgrammer
Sun Aug 24, 2008 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Programming Reference Guides
Replies: 12
Views: 3541
Next

Return to advanced search