Search found 29 matches: mydbf

Return to advanced search

XBROWSE switch Ado / DBF

Hi How can I to Switch Ado / DBF insdie Xbrowse I have oRs Object from Adodb and a MYDBF.DBF file. oRs and MYDBF.DBF have the same columns (6 columns with the same type column) before DEFINE DIALOG I have oRs Object and MYDBF.DBF file opened. DIALOG starts with oRs ...
by damianodec
Tue Jun 07, 2022 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE switch Ado / DBF
Replies: 2
Views: 230

Re: dbfntx very slow with 2+ users

... Compression API support Tried disabling SMB2. Instead of using the Mapped drive, I tried using the UNC path too ie \\PcName\SharedDrive\MyApp\MyDBF.DBF, unfortunately, didn't make any noticeable difference On the main PC, tried tweaking the performance options and changed "Adjust for ...
by anserkk
Wed Mar 30, 2022 12:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbfntx very slow with 2+ users
Replies: 41
Views: 6803

Button click action

... ACTION does not work with the switches. I would like to make the switch clickable and then change the width. call test program: sorting.exe mydbf.dbf Best regards, Otto https://mybergland.com/fwforum/click.jpg #include "FiveWin.ch" REQUEST DBFCDXREQUEST DBFFPTstatic ...
by Otto
Mon Nov 22, 2021 5:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Button click action
Replies: 19
Views: 1477

FWH Logic with method's (Xbrowse ToDbf)

... not reported in the Wiki files ? If I could read these functions, The use would be something like this (Not tested, just for the idea) oBrw:ToDbf(MyDbf,???,aCols,???) Could someone explain this way of working i little more ? Thanks Marc METHOD ToDbf( cFile, bProgress, aCols, lPrompt ) ...
by Marc Venken
Tue Dec 06, 2016 11:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH Logic with method's (Xbrowse ToDbf)
Replies: 4
Views: 1349

RTF files

... ???? I would like to open an RTF file, search for some text (ie: <DAT:NAME>) and replace the found text with a filed from a DBF file (ie: MyDBF->Name ). After the text is changed I would like to save the RTF as a PDF file. I would like to be able to do all of this with nothing displayed ...
by Jeff Barnes
Thu Nov 24, 2016 3:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RTF files
Replies: 12
Views: 2419

Re: FiveWeb Questions

Is there a way to "unescape" the info when trying to save it to the dbf?

What I am doing is passing the data with aParams then doing a
MyDBF->Text := aParams[2]
by Jeff Barnes
Fri Mar 18, 2016 6:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWeb Questions
Replies: 140
Views: 25570

Re: Save signature BMP in DBF ?

Quick print

cSigFileName := 'temp.bmp'
memowrit( cSigFileName, (MyDbf )->signature )
DEFINE IMAGE oSignature FILENAME cSigFileName
oPrinter:SayImage( nRow, 1, oSignature, nSigWidth, nSigHeight )
by Gale FORd
Mon Oct 05, 2015 10:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Save signature BMP in DBF ?
Replies: 12
Views: 2916

Re: Save signature BMP in DBF ?

... mouse info etc): REDEFINE SAY oSignature ID 200 PROMPT "" OF oDlg Then save it as bmp: oSignature:SaveToBmp( cFile+'.bmp' ) replace ( MyDbf )->signature with memoread( cFile+'.bmp' ) Actually I convert it to jpg before storing into memo so it takes up less room. I have this working ...
by Gale FORd
Mon Oct 05, 2015 10:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Save signature BMP in DBF ?
Replies: 12
Views: 2916

Re: ADO RDD xHarbour

... created does not arrise an error. Or previousy check if the table exists or not; if yes, don´t create. An equivalent function for IF FILE "MYDBF.DBF", as now should reflect as a table into a database. Adofuncs.prg provide such functions. Thanks.
by lucasdebeltran
Tue May 19, 2015 7:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446110

Re: Como encontrar una cadena en todos los reg de una o mas DBFs

MsgInfo( At( "Silvio", MemoRead( "MyDbf.dbf" ) ) )
by Antonio Linares
Sun Nov 30, 2014 6:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como encontrar una cadena en todos los reg de una o mas DBFs
Replies: 13
Views: 3508

Re: Network Issue

... then you don't have to identify the indexing method you're using when opening the table. Otherwise, you have to open as follows: USE (cFile) ALIAS MyDbf VIA "DBFCDX" SHARED NEW. Switching over to FPT memos, which go with CDX indexes as I recall, requires putting each table through a simple ...
by Roger Seiler
Sat Jan 11, 2014 4:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Network Issue
Replies: 36
Views: 10937

Re: Network Issue

... when opening a file to always use (cFile) instead of the &cFile macro and to always include the ALIAS clause, such as: USE (cFile) ALIAS MyDbf SHARED NEW At the time that I learned this, it solved some performance problem that I've long since forgotten. However, having an ALIAS declared ...
by Roger Seiler
Sat Jan 11, 2014 3:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Network Issue
Replies: 36
Views: 10937

Re: TXBowse+SqlQuery error when using arrays (solved)

ellano wrote:Working on a local drives + from a network without problem.

Thanks for the information.
Are you using DBF on net work like this?
USE \\OTHERPC\C\MYFOLDER\MYDBF.DBF ?
Is SqlQuery() working in such cases?
by nageswaragunupudi
Thu Sep 19, 2013 3:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXBowse+SqlQuery error when using arrays (solved)
Replies: 15
Views: 3309

Re: SQL DB : CubeSQL

Why not look at Advantage Database Server. Keep most of your current code. Fast Client Server. Can use SQL commands if you want to but can still retain the use of RDD.
USE MyDbf via 'ADS'
The server is super easy to install and maintain.
by Gale FORd
Fri Oct 05, 2012 1:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQL DB : CubeSQL
Replies: 12
Views: 4592

Re: problem dialog + title

... message it takes long to find out why. I think this should be resolved inside the class. Best regards, Otto :roll: then use cTitle := alltrim(mydbf->cfield) and left(cTitle,114) DEFINE DIALOG oDlg FROM 5, 5 TO 15, 40 TITLE cTitle :lol:
by fafi
Fri May 18, 2012 1:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem dialog + title
Replies: 5
Views: 1099
Next

Return to advanced search