Search found 398 matches: simpler

Return to advanced search

Re: Peer to Peer, NAS and NTX -> CDX

Tim, I think sending data back and forth over a network is always the second-best option. If there are better and simpler options (RDP), you should use them. You can handle things with SQL and client server. But these things can be solved much better with the file system (e.g. domain ...
by Otto
Mon Dec 21, 2020 8:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Peer to Peer, NAS and NTX -> CDX
Replies: 41
Views: 3532

Re: help for converting file

thanks Otto But I wanted the record as 0 Thanks but I wanted something simpler type : UserName (30C) Activity(10C) Workdate(d8) Time(8C) type Falconi Silvio |in|15/12/2020|08:00 Falconi Silvio |out|15/12/2020|14:00 I take the csv file from the internet (from ...
by Silvio.Falconi
Wed Dec 16, 2020 5:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help for converting file
Replies: 5
Views: 909

Re: Error sql server

... ) )    // ----------- inserts into "Notes" field which is a VarBinary(Max) oRsCh:Update()  Rao has a much simpler code to insert a document into a Sql Database .. the above always works for me . Rick Lipkin
by Rick Lipkin
Fri Nov 20, 2020 9:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error sql server
Replies: 2
Views: 638

Re: Printer class question

... (with fwh) the prints are obsolete and slowly I'm only redoing them that I broke my balls to make prints by hand and wanted to create something simpler in my spare time. By now the view is not like it used to be and I get tired of building the print forms with the mouse and with programs that ...
by Silvio.Falconi
Fri Oct 23, 2020 3:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printer class question - RESOLVED
Replies: 41
Views: 3493

Re: reduce an image to a fixed size

Dear Otto,

It seems as we need to use the function SetDIBColorTable()
https://docs.microsoft.com/en-us/windows/win32/api/wingdi/nf-wingdi-setdibcolortable

Maybe there is a simpler way using GDI+
by Antonio Linares
Sat Oct 17, 2020 9:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: reduce an image to a fixed size
Replies: 9
Views: 1025

Re: Let Xbrowse update selected colums in other dbf

Your requirement made me to think.
We may provide a much simpler way in the next version FWH2009.
That will be as simple as setting
Code: Select all  Expand view

oCol:cAlias := <cOtherAlias>
 
by nageswaragunupudi
Wed Sep 23, 2020 6:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Let Xbrowse update selected colums in other dbf
Replies: 7
Views: 994

Re: sql server guardar y mostrar imagen

... ):Value := HB_STRTOHEX( MEMOREAD( "c:\fwh\bitmaps\olga1.jpg" ) )oRs:Update()  Method-2: Short and simpler code, for lazy people like me. oRs   := FW_OpenRecordSet( oCn, cTable )oRs:AddNew( { "NAME", "PHOTO" ...
by nageswaragunupudi
Mon Sep 21, 2020 4:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: sql server guardar y mostrar imagen
Replies: 10
Views: 1736

Re: sql server guardar y mostrar imagen

...  NAME  VARCHAR( 20 ),   PHOTO IMAGE   )ENDTEXT   oCn:Execute( cSql )  METHOD-2: Simpler and recommended by FWH FWAdoCreateTable( cTable, { { "NAME", "C", 20, 0 }, { "PHOTO", ...
by nageswaragunupudi
Mon Sep 21, 2020 3:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: sql server guardar y mostrar imagen
Replies: 10
Views: 1736

Re: error handler acting odd

A simpler way is to compare the codeBlocks:

Code: Select all  Expand view
function Main()

   local bErrorBlock := { || nil }
   
   ? bErrorBlock == ErrorBlock()
   
return nil
by Antonio Linares
Tue Jul 21, 2020 4:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: error handler acting odd
Replies: 3
Views: 387

Re: Antonio: Please explain

Antonio, Yes, I am running by default in the samples directory. I am using the simpler version you pointed to, which is using buildh32.bat ( since I'm using Microsoft ) The json is in the .vscode subfolder in the samples directory. When I press t he keys, it tells ...
by TimStone
Mon May 18, 2020 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: Please explain
Replies: 9
Views: 1257

Re: Hi-Lite get fields like the old Dos days

Simpler
Code: Select all  Expand view

SetGetColorFocus()
 
by nageswaragunupudi
Fri Mar 13, 2020 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hi-Lite get fields like the old Dos days
Replies: 6
Views: 1029

Re: Insertar un DBF en una table de SQL

... temporal table" )             RETURN(.F.)         END TRY     endifreturn nil Eventhough it is working , I know there has to be a simpler way to do this.
by mariordz
Tue Mar 03, 2020 3:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar un DBF en una table de SQL
Replies: 7
Views: 1444

Re: Reading network pathname (solved)

... GetInstance() )nSTART := RAT( "\", cFILE )cDEFA  := SUBSTR(cFILE,1,nSTART-1)msginfo( cDefa ) Rick Lipkin Mr. Rick Simpler ways of doing: cFilePath( hb_argv( 0 ) )  // Christobal// ORcFilePath( ExeName() )  But what Mr. driessen asked ...
by nageswaragunupudi
Sat Jan 18, 2020 2:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reading network pathname (solved)
Replies: 13
Views: 1809

Re: Convert Strings to and from UTF8 byte arrays (solved) ...

Java method getbytes returns aray of character codes from string („ABCD“ -> {65,66,67,68}).
I tried to rewrite several pages of code without previous knowledge of Java, but it was much simpler writing this part of code in FiveWin.
by bosibila
Tue Jan 14, 2020 6:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert Strings to and from UTF8 byte arrays ...
Replies: 5
Views: 1035

Re: Passing a variable to javescript

A simpler way:

Code: Select all  Expand view
<s cript>
var cTimeDate = '{{dtoC(date()) + " " + time()}}';
</s cript>
 
by Antonio Linares
Sun Nov 03, 2019 11:35 am
 
Forum: mod_harbour
Topic: Passing a variable to javescript
Replies: 3
Views: 433
PreviousNext

Return to advanced search