topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
strange execution of Index | Perhaps |
strange execution of Index | First I never had this error because when I opened the application I went to check if the dbf files were in the specific folder (cDbfpath) and if I did not there I created them and also created the indexes by deleting them first.
Obviously, I first opened the archives in exclusive mode. Now with the opening in the ne... |
strange execution of Index | Silvio,
[quote:1wng5mjk]1) Can you explain to me when I can make the indexes and the packs[/quote:1wng5mjk]
I have been trying to tell you this. You cannot build indexes unless you have the files open in exclusive use.
And you should not be building indexes everytime the program is run--there is no need.
If the progr... |
strange move Folder - Dialog | [b:dawz4t3c]a strange thing happens to me[/b:dawz4t3c]
I have a dialog with a folder
depending on whether the user presses a tab the dialgog must change the height ( init 680),
When the user press the tab 3 or tab 6 the dialog must be of 400 height
the other the dialog must be 680 height
I need it because it is pos... |
strange move Folder - Dialog | You can use oDlg: Move (nTop, nLeft) to handle that behavior,
Saludos |
strange move Folder - Dialog | // \samples\CONFIGUR.PRG
Si comprendo, lo haria asi:
[code=fw:2p3hjl4n]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">STATIC</span> oBar<br /><span style="color: #0... |
strange move Folder - Dialog | [quote="karinha":2cpt1b99]// \samples\CONFIGUR.PRG
Si comprendo, lo haria asi:
[code=fw:2cpt1b99]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">STATIC</span> oBar<b... |
strange move Folder - Dialog | Silvio, just curiosity, final code? You can show? If you can't, no problem. Programmer's curiosity only.
Regards, saludos. |
strange move Folder - Dialog | [quote="karinha":amdq9913]Silvio, just curiosity, final code? You can show? If you can't, no problem. Programmer's curiosity only.
Regards, saludos.[/quote:amdq9913]
local aPt := { 111,200 }
aPt := ClientToScreen( oWndMain:hWnd, aPt )
oFolder:bAction := { || IF(oFolder:nOption=3 .or. oFolder:nOption=6 ,;
(oDlg:nHe... |
strange problem on Windows seven | I compile sample of Tcalex in [b:3jrd7vai]Windows Seven[/b:3jrd7vai] 64bit on Pc 8 GBRam
I can insert records and set colors how you can see here :
[img:3jrd7vai]http://www.eoeo.it/wp-content/uploads/2014/06/test_calex.jpg[/img:3jrd7vai]
I close the EXE
then I re open the ese sample test and the e... |
strange problem with compilation | I trying to use harbour to compile and I use xmate
I change parameter to use bccc7 but on error log when the app make error is showed
Compiler version: Harbour 3.2.0dev (r1406271520)
FiveWin version: FWH 17.02
[b:1ye5mbfl]C compiler version: Borland C++ 5.8.2 (32-bit)[/b:1ye5mbfl]
Windows version: ... |
strange problem with compilation | C compiler version: Borland C++ 5.8.2 (32-bit) with FWH1702 ??? |
strange problem with compilation | the problem I use bcc7 and on the error .log show me bcc582 |
strange problem with compilation | Check the paths where the project compilers are.
TRY TO DO SO AS I USE:
[code=fw:y8arih7j]<div class="fw" id="{CB}" style="font-family: monospace;"><br />C:\FWH1701<br />C:\BCC72<br />C:\HBBCC72<br /> </div>[/code:y8arih7j]
Regards, saludos. |
strange problem with compilation | Files *.CFG?
[code=fw:1nwdggtx]<div class="fw" id="{CB}" style="font-family: monospace;"><br />-I<span style="color: #ff0000;">"c:<span style="color: #000000;">\b</span>cc72<span style="color: #000000;">\i</span>nclude<span style="color: #000000;">\d</span>inkumware"</span>;<span style="color: #ff0000;">"c:<span style... |
strange problem with compilation | I use xmake with env files |
strange problem with compilation | Sorry, I do not use xmate or xmake. |
strange problem with tdatabase | I must erase all record of an invoice number ( the filed is 13cr)
Local nInvoice := "1234567890128"
the oPartres dbf is index on INDEX ON RESITEMS->INVNUM + STR( SERIAL, 3, 0 ) TAG invnum TO resitems
oPartres:=TDatabase():Open( , cDir+"ResItems", "DBFCDX", .T. )
oPartres:setorder(1)
oPartres:gotop()
oP... |
strange problem with tdatabase | Perhaps I resolve but I not Know it it is correct
[code=fw:1f6qz7mm]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> SET DELETED <span style="color: #0000ff;">ON</span><br /> oPartRes:<span style="color: #000000;">setorder</span><span style="color: #000000;">(</span... |
strange problem with tdatabase | [quote:2xfijunq]
I must erase all record of an invoice number
[/quote:2xfijunq]
If you want to delete all records where the field INVNUM == nInvoice, i.e., "1234567890128", then:
[code]
Local nInvoice := "1234567890128"
oPartres:Exec( <||
DELETE ALL FOR ALLTRIM(FIIELD->INVNUM) == nInvoice
> )
[code] |
strange problem with tdatabase | You want to read all records relating to one invoice, add/edit/delete in memory and save all changes at once to the database.
FWH1907 simplifies the entire process.
[code=fw:21roa75k]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBatch := oPartRes:<span style="color: #000000;">ReadBatch</span><span ... |
strange problem with tdatabase | Nages
I must use an array for the invoice body (xbrowse) where the first line (which cannot be deleted by the user only it can be modified) is like a repetition of the element described in the header ( saved on Reserva.dbf) for example:
[b:2p8we2b0]HEADER[/b:2p8we2b0]
[img:2p8we2b0]https://i.postimg.cc/... |
strange problem with tdatabase | [quote="nageswaragunupudi":16vfs3kp][quote:16vfs3kp]
I must erase all record of an invoice number
[/quote:16vfs3kp][/quote:16vfs3kp]
If you want to delete all records where the field INVNUM == nInvoice, i.e., "1234567890128", then:
[code=fw:16vfs3kp]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span... |
strange problem with xbrowse | on this xbrowse I found a strange error
the text[b:24dk6ksn] "Silvio"[/b:24dk6ksn] xbrowse show into [b:24dk6ksn]"si,vio"[/b:24dk6ksn]
as you can see on this picture
[img:24dk6ksn]http://img854.imageshack.us/img854/8868/strangexbrowse.jpg[/img:24dk6ksn]
I not use different setups ( languag... |
strange problem with xbrowse | Silvio,
can You check the field with a external DBF-viewer ?
Maybe a wrong fieldtype or wrong picture defined for the textfield < numeric PICTURE "99.999.99" > ?
Best Regards
Uwe <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> |
strange problem with xbrowse | [quote="ukoenig":37swznlu]Silvio,
can You check the field with a external DBF-viewer ?
Maybe a wrong fieldtype or wrong picture defined for the textfield < numeric PICTURE "99.999.99" > ?
Best Regards
Uwe <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->[/quote:37swzn... |
strange problem with xbrowse | Sorry,
I make a mistake
You'are Right
i change the number of column from 6to 7 and it run with errors <!-- s:mrgreen: --><img src="{SMILIES_PATH}/icon_mrgreen.gif" alt=":mrgreen:" title="Mr. Green" /><!-- s:mrgreen: --> |
strategies | Dear friend,
I would like to ask you today about your assessment and strategies.
Our customers are now increasingly looking for online solutions.
We currently have no suitable strategies.
It's also hard to build in new features that other programs do not offer.
Kind regards
Otto |
strategies | Hi Otto,
We have moved our systems to Mysql and that brought big improvements to our systems. Now the system can run on-line easily and faster than with ADS. We had a demand for development to android that we solve using another language. |
strategies | Hi,
That is a very interesting question for years.
In some cases being on the web is already a must. In the rest it will be sooner or later.
But nowadays it is no longer worth offering any web proposal: it must be responsive, but even so it is likely that customers still want more because they prefer a Progressive W... |
strategies | Hi,
First important questions to think ...
How much time do you want to spend learning to create a web application?
How many new programming languages are you willing to learn?
Would you change the way you create Windows applications to coexist with your new web applications ?
<!-- s:roll: --><img src="{SMILIES_... |
strategies | Carles,
what is your suggestion if I say:
How much time do you want to spend learning to create a web application?
not much
How many new programming languages are you willing to learn?
best no new
Would you change the way you create Windows applications to coexist with your new web applications ?
best not touching r... |
strategies | It's an interesting question, the dbf in my opinion are already obsolete. Migrating to a relational bbdd (SQL) is the minimum for these times since they allow us to be online permanently and from anywhere, as well as interacting with other applications (web or desktop). Now is a web or desktop application better? It al... |
strategies | Otto, there is no magic in our sector. Younger programmers use languages for the Web. They do not even dedicate themselves to desktop applications. They use bbdd NoSql that lack fully flexible and single-threaded structures and are very easy to scale, since they do not need powerful computers. You can work online or of... |
strategies | I stumbled upon [url=http://www.dbfree.org/home.msp?XY=60343447:1alvkx39]dbFree[/url:1alvkx39] when I was researching the issue. Wonder how it compares to other approaches |
strategies | Hi hua,
I heard about DbFree, what about it? is a good solution? does someone use it? |
strategies | All said and done, when we come to heavy duty and high volume Corporate applications we are back to robust RDBMS like Oracle and other next best databases.
Well, there are more webbased applications than desktop applications now in operation everywhere.
Again, when we talk to the users (employees) of these big corpora... |
strategies | Hi,
We should think about expanding our channels and being able to offer our users complementary systems. It is not about excluding: I want Windows or I want Web.
[quote="nageswaragunupudi":1antwa3g]Again, when we talk to the users (employees) of these big corporates they say they miss the desktop applications.[/quot... |
strategies | It is something I have considered for many years. My clients have to process a lot of data. I thought about web a lot but many of my customers have poor internet connections. They use the software to run their business every day, and would be in a very difficult position if that connection were lost. The applicatio... |
strategies | We talk about mobile devices (phones) or desktop computers (including laptops and tablets of an appropriate size), and always with Windows OS?
I think there is a big difference in the approach of what the strategy to follow should be, and what users prefer.
Another issue is that in mobile devices with operating systems... |
strategies | [quote="damianodec":10h3ov9x]
I heard about DbFree, what about it? is a good solution? does someone use it?[/quote:10h3ov9x]
Can't comment on it. Has never tried it before but am impressed that they actually have books about it. |
strategies | I think one problem we have is that people see fantasy ware advertised, either by companies, or in media ( TV, movies, etc.). Or they see little apps that provide a bit of a helpful service.
What they don't understand is how it all needs to tie together ( integrate ) with one common interface. That is just not happen... |
strategies | Hi,
But regardless of all of us know and think that our applications made with fwh for windows are the best, reliable, ... (and it's true of course <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> ) and as Tim says many expect the truth is that many have the concern a... |
strategies | Es un tema muy amplio e interesante.
Pero como dice Carles, es muy duro (si somos desarrolladores independientes), asumir el costo y el esfuerzo de asimilar todo ese conocimiento.
También comparto con Tim y Mr. Rao, que hay usuarios que prefieren (por su practicidad) el uso de sistemas de escritorio para procesamiento ... |
strategies | Cesar may I ask if you have looked at TWeb.
I used php with the Symfony framework for a program.
But then I decided that until I get comfortable with PHP to use pure PHP only.
Now that I'm getting comfortable with PHP I see that I have a need for a framework.
For me I think TWeb is the best choice.
Best regards,
Otto |
strategies | Otto.
Si, he mirado Tweb y me parece una excelente herramienta, que por falta de tiempo no he podido mirar mas a fondo.
Creo que tiene algo que es sumamente atractivo: la similitud con la forma de trabajar que estamos acostumbrados los que desarrollamos aplicaciones de escritorio.
Vi esa flexibilidad en Sencha. (<!-- m... |
strategies | Estimados,
Quiero comentar la experiencia que tuve hace poco con un proyecto web, el cual pude cumplir satisfactoriamente gracias a la herramienta de nuestro colega Lailton: Fiveweb. Tengo conocimientos precarios de PHP y creí que con un curso completo de Sistemas Web podría desarrollar el proyecto, pero al primer erro... |
strategies | To All
Yes .. everyone seems to want a web application and then wish they still had the ease and simplicity of a desktop app. In my case I see so many large companies and state and local governments moving towards Web apps and spending millions and years of development with nothing to show for it :
[quote:3jnt4q54]
... |
strategies | Hi Rick !
[quote="Rick Lipkin":ir8vrhfh]Yes .. everyone seems to want a web application and then wish they still had the ease and simplicity of a desktop app. In my case I see so many large companies and state and local governments moving towards Web apps and spending millions and years of development with nothing to ... |
strategies | For what's worth; by changing the RDD to ADS (NTX, CDX or ADT), you don't have to change much your current native app and you get to write PHP, Ruby, Phyton web apps that read/write the vary same data. You can change the source db and start using data that is stored on a server somewhere on a remote area of the world... |
strategies | Hello friends,
some of the discussion reminds me the days when we switched from DOS to WINDOWS.
The easiest way to start with web programming seems to me to be PHP.
But as soon as the application grows one would like to have a framework.
I looked at several.
But for me it is best to use TWeb with common syntax to me... |
strategies | Hey Otto; can you show some code or how to use TWeb with PHP? Is there a link? I'm sorry I don't know about TWeb. I have been using PHP with ADS. I feel comfortable with PHP, if TWeb can make PHP easier/more useful, then I will want to learn more about TWeb.
Thank you,
Reinaldo. |
strategies | Dear Reinaldo,
please see:
[img:cjziy31l]https://mybergland.com/FWForum/TWEB.gif[/img:cjziy31l]
Best regards,
Otto |
strategies | Hi Otto ,
Below are the two WebGUI Framework
[url:2x0q3i9x]http://www.unigui.com/[/url:2x0q3i9x] This is Delphi Wrappers on Sencha GUI framework. If FWH has also same kind wrappers to Sencha or Other HTML GUI, probably [url:2x0q3i9x]https://dhtmlx.com/[/url:2x0q3i9x] that would be great.
[ur... |
strategies | Please see:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=35444">viewtopic.php?f=6&t=35444</a><!-- l -->
I bought a copy of dhtmlx and installed it on my server.
[url:kvnau204]https://winhotel.space/planner/index.html[/url:kvnau204]
But at the end I choos... |
strategies | I've been working on a WebApp using pretty much standard harbour code using Lailtons FiveWeb.
It's been working well for me. I can use DBF's, ADT, SQL and works with ADS as well.
One of the nice things was that it did not take me long before I had a nice working app.
Any issues I've come across (ie: not knowing how to... |
strategies | [quote="Otto":2mzmfb51]
some of the discussion reminds me the days when we switched from DOS to WINDOWS.
[/quote:2mzmfb51]
Yes! that's exactly what i was thinking after reading this thread. We had lots of DOS code and several pseudo-magicals tools appeared to "show us" the way to Windows, with promises of turning our D... |
strategies | Hello Reinaldo,
[quote="reinaldocrespo":y47bmvvg]
... I have been using PHP with ADS.
[/quote:y47bmvvg]
What version of PHP are you using? The most updated ADS dlsl I've got are for PHP 5.4, what is really old.
Do you know if there is a newer version?
KR |
strategies | Hi,
[quote="Carlos Mora":srjdace3]And, finally, the only and real solution was to learn how to program for the Windows environment using the right tool, FW.[/quote:srjdace3]
And finally the only and real solution [b:srjdace3]IS[/b:srjdace3] to learn how to program for Web environments using the correct tools, ...
[q... |
strategies | You got the full picture, Carles!
una abraçada |
strategies | Hello Jeff,
is FiveWeb responsive. Am I right that it is CGI.
Best regards,
Otto |
strategies | Here are a couple of screen shots of my WebApp.
The program is built with Harbour/FiveWeb which creates an EXE that is run under apache (I believe you can use IIS as well)
Login Screen:
[img:mzd2nv0z]http://can-soft.net/temp/login.jpg[/img:mzd2nv0z]
Search Screen:
[img:mzd2nv0z]http://can-soft.net... |
streching timage control in dialog | Hi.
I have a dialog from resources with a single control in it. It is an timage control:
DEFINE DIALOG oDlg NAME "ViewImage" TITLE "View scanned image dialog window" of oOwner
oImage := tImage():Redefine( 101,, ImgRoot + oLbx:aArrayData[ oLbx:nArrayAt, 5 ], oDlg,,, .t. )
The dialog is resizeable. I'd like for the... |
streching timage control in dialog | I found this to work:
odlg:bResized := { ||ResizeImage( odlg, oImage ) }
...
Static function ResizeImage( odlg, oImage )
oImage:Move( 0,0, odlg:nWidth(), odlg:nHeight() )
oImage:refresh()
return nil |
streching timage control in dialog | Reinaldo,
I'm curious, how do you make a dialog resizable?
James |
streching timage control in dialog | I suppose that the properties defined on the resource editor.
On this particular dialog I have the following checked:
system menu
thick frame
maximize box
modal frame
visible |
streching timage control in dialog | and window type popup. |
strikethrough font | Hi,
There is a SAY control. I need to change the font of this control to crossed out. How can I do this ? |
strikethrough font | [code=fw:2oyv55ur]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><br /><span style="color: #00C800;">FUNCTION</span> Main<span style="color: #000000;">(</span><span style="color: #000000;">)</sp... |
strikethrough font | Thanks to CMSOFT, but I was asking a little bit about the wrong thing. I am interested in changing the font of an already existing SAY during operation, not during installation (). That's exactly what I can't do <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> |
strikethrough font | When you want to srikeout,
[code=fw:gwscvvmd]<div class="fw" id="{CB}" style="font-family: monospace;">oSay:<span style="color: #000000;">SetFont</span><span style="color: #000000;">(</span> oSay:<span style="color: #000000;">oFont</span>:<span style="color: #000000;">StrikeOut</span><span style="color: #000000;">&... |
string ADO y archivo ini | Buenos dias,
Alguien tendra un ejemplo de como crear un string de conexion via ADO desde un archivo .ini ? Es decir, llenar los valores del string desde el .ini
Saludos |
string ADO y archivo ini | A ver si esto te puede ayudar
[code=fw:18ksalpa]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">//----------------------------------------------------------------------------//</span><br /><span style="color: #00C800;">Function</span> DriversEntries<span style="color: #000... |
string ADO y archivo ini | Hola,
No lo veo claro aun...tal vez quise decir armar el string desde los valores del archivo ini. |
string ADO y archivo ini | Hola
Prueba, haciendo un XBrowse( DriversEntries() ) ( array que devuelve ) |
string ADO y archivo ini | Compuin:
Va como lo hago yo.
[code=fw:2q74xa2i]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> LeeIni<span style="color: #000000;">(</span><span style="color: #000000;">)</span> <span style="color: #B900B9;">// Lee parametros</span><br /><br /> <span style="color: #00C... |
string ADO y archivo ini | Gracias a todos |
string ADO y archivo ini | Gracias,
Lo probare |
string ADO y archivo ini | [quote="Compuin":3jsx5e3x]Gracias a todos[/quote:3jsx5e3x]
Creo que lo que quiere Ing. es ver el contenido del archivo .ini como esta estructurado segun eso supongo.
Saludos |
string ADO y archivo ini | Basicamente colocar los parametros de conexion en el .ini y llenar el string desde el mismo.
Eso es lo que necesito |
string ADO y archivo ini | [quote="Compuin":3gwlwuon]Basicamente colocar los parametros de conexion en el .ini y llenar el string desde el mismo.
Eso es lo que necesito[/quote:3gwlwuon]
; Archivo para usar parametros de conexión
[mysql]
host=127.0.0.1
user=root
psw=654321
flags=0
port=3307
dbname=PROVCLIE
A ver si te ayuda... |
string ADO y archivo ini | Ok
algun ejemplo como capturarlo y llevarlo al string de conextion?? |
string ADO y archivo ini | [quote="Compuin":2h05emve]Ok
algun ejemplo como capturarlo y llevarlo al string de conextion??[/quote:2h05emve]
[code=fw:2h05emve]<div class="fw" id="{CB}" style="font-family: monospace;">MsgRun<span style="color: #000000;">(</span> <span style="color: #ff0000;">"Espere, generando conexión al servidor..."</span... |
string connection MS Access | wthat is string connection Ms Acces to mdb file with password
best regard
kajot |
string connection MS Access | kajot
Here is a sample connection string for Ms Access with a password... see the variable xString.
Rick Lipkin
[code=fw:3a7fhw3n]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #B900B9;">//-- get location of .exe assuming the .mdb is in the same folder //</span><br /><br />c... |
string connection MS Access | From FWH 13.06 onwards we can open access (mdb or accdb) files with password using:
oCn := FW_OpenAdoConnection( <cmdbfilename>, <cpassword> )
The function internally builds the proper connection string. |
string connection MS Access | Mr. Nages,
In source\function\adofuncions.prg this is what I have:
function Fw_OpenAdoConnection( cConnStr, lShowError )
Nothing about password. |
string connection MS Access | Mr Lucas
Regret my inaccuracy in the syntax.
The correct syntax is:
oCn := FW_OpenAdoConnection( "<cmdbfilename>,<cpassword>" )
Example:
Create a password protected mdb file with:
FW_CreateMDB( "c:\mydata\tutor05.mdb", "mypassword" )
and open it with
oCn := FW_OpenAdoConnection( "c:\mydata\tutor05.mdb,mypassword" )
... |
string connection MS Access | thanks for answer
but if I use
cPath := cFilePath( ExeName() )
xSOURCE := cPATH+"waga.mdb"
xPASSWORD := "123456"
oCon := FW_OpenAdoConnection( xSOURCE,xPASSWORD)
cSQL:="select idklienta, nazwa, adres, nip from Klienci"
oRes := FW_OpenRecordSet( oCon, cSQL )
the function FW_OpenRecor... |
string connection MS Access | Please use:
oCon := FW_OpenAdoConnection( { xSOURCE, xPASSWORD } )
or
oCon := FW_OpenAdoConnection( xSOURCE + "," + xPASSWORD) |
string connection MS Access | if I used function
oCon := FW_OpenAdoConnection( xSOURCE + "," + xPASSWORD)
the database opened good, but the function FW_OpenRecordSet can't open the table
cSQL:="select idklienta, nazwa, adres, nip from Klienci"
oRes := FW_OpenRecordSet( oCon, cSQL )
best regards
kajot |
string connection MS Access | It is working here for me.
Example code:
[code=fw:179f67oj]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> TestPW<br /><br /> <span style="color: #00C800;">local</span> oCn, oRs<br /> <span style="color: #00C800;">local</span> cmdb := <span style="color: #ff00... |
string connection MS Access | thanks a lot
I can't check up our program, because I have FWH v. 12.06
so I got many error
xLINK: error: Unresolved external symbol '_HB_FUN_FW_CREATEMDB referenced from (t.obj)'.
xLINK: error: Unresolved external symbol '_HB_FUN_FW_ADOIMPORTFROMDBF referenced from (t.obj)'.
xLINK: error: Unresolved external symbo... |
string connection MS Access | Creation and Opening of MDB files with password is available from 13.06 only. |
string connection MS Access | Dear All,
I am unable to get connection using
oCn := FW_OpenAdoConnection( cmdb + "," + pwd )
when file extension of Access file is changed from .mdb to .bds
I need help how to connect |
string connection MS Access | [quote="bpd2000":9yf3rs09]Dear All,
I am unable to get connection using
oCn := FW_OpenAdoConnection( cmdb + "," + pwd )
when file extension of Access file is changed from .mdb to .bds
I need help how to connect[/quote:9yf3rs09]
You can try to modify the function FW_AdoConnectionString as well
[code=fw:9yf3rs09]<d... |
string connection MS Access | Thank you for reply
I tested but not succesful
Error as : Error description: Error BASE/1109 Argument error: $ |
string connection MS Access | After changes to
elseif cExt $ "mdb,accdb,bds"
cRDBMS := "MSACCESS"
? cExt it shows as as bds but error comes at
line no. 108 of adofuncs.prg i.e. if '<?>' $ cConnStr .and. nDB > 0
You may test after change of extension of .mdb file in the example give in this thread by Mr. Rao |
string connection MS Access | Also change in function FW_RDBMSName( oCn )
[code=fw:1gihc3mn]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />.../...<br /><br /> <span style="color: #00C800;">if</span> <span style="color: #ff0000;">".mdb"</span> $ c .or. <span style="color: #ff0000;">".accdb"</span> &n... |
string connection MS Access | [quote="bpd2000":1yg29hvf]Thank you for reply
I tested but not succesful
Error as : Error description: Error BASE/1109 Argument error: $[/quote:1yg29hvf]
Put before
[code=fw:1yg29hvf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> ? cExt<br /> </div>[/code:1yg29hvf] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.