Página 1 de 1

Datasource cConnect property since v1.1

Publicado: Mié Oct 25, 2006 7:24 pm
por aross
I am still having problems with connection strings even with 1.1a.
\000.000.00.000:9000sharedmyfolderdatamydict.add
is transformed to
00.000.00.000:9000sharedmyfolderdatamydict.add
and the connection fails on project reopens. I have to manually add back the
two slashes.

Datasource cConnect property since v1.1

Publicado: Mié Oct 25, 2006 7:41 pm
por ignacio
Andrew,
I have just tested using TAdoDataSource:cConnect property seting its value
to:
\000.000.00.000:9000sharedmyfolderdatamydict.add
I trapped the OnCreate event with this code:
METHOD DataSourceCreate( oSender ) CLASS TForm1
logdebug( oSender:cConnect )
RETURN Nil
An the value obtained is:
00.000.00.000:9000sharedmyfolderdatamydict.add
Which I think is correct.
Could you send us a small sample showing the error.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Andrew W. Ross" <aross@ssctv.net> escribió en el mensaje
news:[email=453f9dde@news.xailer.com...]453f9dde@news.xailer.com...[/email]
>I am still having problems with connection strings even with 1.1a.
>
> \000.000.00.000:9000sharedmyfolderdatamydict.add
>
> is transformed to
>
> 00.000.00.000:9000sharedmyfolderdatamydict.add
>
> and the connection fails on project reopens. I have to manually add back
> the two slashes.
>
>

Datasource cConnect property since v1.1

Publicado: Jue Oct 26, 2006 7:57 am
por aross
Ignacio,
<< Could you send us a small sample showing the error. >>
I cannot send you a sample because it's purely in the IDE cConnect property
where I am having problems. Type in the four back slashes, save the project,
exit and reopen. It modifies it to two back slashes and the connection is
lost.
Prior to 1.1 using a ADS data source (Internet only), I used
00.000.00.000:9000sharedmyfolderdatamydict.add in the Datasource
cConnect property *in the IDE* and it worked fine. When I installed 1.1, it
modified my connection property like this
00.000.00.000:9000sharedmyfolderdatamydict.add, which will not
connect. I have to change it to
\000.000.00.000:9000sharedmyfolderdatamydict.add to successfully.
connect. My problem is that won't save.
"Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
news:453fa1d7$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>
> Andrew,
>
> I have just tested using TAdoDataSource:cConnect property seting its value
> to:
>
> \000.000.00.000:9000sharedmyfolderdatamydict.add
>
> I trapped the OnCreate event with this code:
>
> METHOD DataSourceCreate( oSender ) CLASS TForm1
>
> logdebug( oSender:cConnect )
>
> RETURN Nil
>
> An the value obtained is:
>
> 00.000.00.000:9000sharedmyfolderdatamydict.add
>
> Which I think is correct.
>
> Could you send us a small sample showing the error.
>
> Regards,
>
> --
> Ignacio Ortiz de Zúñiga
> http://www.xailer.com
> "Andrew W. Ross" <aross@ssctv.net> escribió en el mensaje
> news:[email=453f9dde@news.xailer.com...]453f9dde@news.xailer.com...[/email]
>>I am still having problems with connection strings even with 1.1a.
>>
>> \000.000.00.000:9000sharedmyfolderdatamydict.add
>>
>> is transformed to
>>
>> 00.000.00.000:9000sharedmyfolderdatamydict.add
>>
>> and the connection fails on project reopens. I have to manually add back
>> the two slashes.
>>
>>
>
>

Datasource cConnect property since v1.1

Publicado: Jue Oct 26, 2006 5:12 pm
por ignacio
Andrew,
We have cancel the use of extended strings for cConnect property on DBF
DataSources. Now is only present on ADODataSource. That should avoid your
problem.
BTW, I believe it was not a bug, its the correct behaviour of Xharbour
extended strings, that's all.
Extended Literal Strings:
-------------------------
xHarbour introduces a new kind of literal strings known as "Extended Literal
Strings".
Syntax:
-------
E"..."
The literal string may contain Escape Codes following the C language
conventions, like:
n -> New Line character.
t -> Tab character.
r -> CR character.
" -> literal <"> character.
' -> literal <'> character.
-> literal <> character.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Andrew W. Ross" <aross@ssctv.net> escribió en el mensaje
news:[email=45404e3f@news.xailer.com...]45404e3f@news.xailer.com...[/email]
> Ignacio,
>
> << Could you send us a small sample showing the error. >>
>
> I cannot send you a sample because it's purely in the IDE cConnect
> property where I am having problems. Type in the four back slashes, save
> the project, exit and reopen. It modifies it to two back slashes and the
> connection is lost.
>
> Prior to 1.1 using a ADS data source (Internet only), I used
> 00.000.00.000:9000sharedmyfolderdatamydict.add in the Datasource
> cConnect property *in the IDE* and it worked fine. When I installed 1.1,
> it modified my connection property like this
> 00.000.00.000:9000sharedmyfolderdatamydict.add, which will not
> connect. I have to change it to
> \000.000.00.000:9000sharedmyfolderdatamydict.add to
> successfully. connect. My problem is that won't save.
>
> "Ignacio Ortiz de Zúñiga" <NoName@xailer.com> wrote in message
> news:453fa1d7$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>>
>> Andrew,
>>
>> I have just tested using TAdoDataSource:cConnect property seting its
>> value to:
>>
>> \000.000.00.000:9000sharedmyfolderdatamydict.add
>>
>> I trapped the OnCreate event with this code:
>>
>> METHOD DataSourceCreate( oSender ) CLASS TForm1
>>
>> logdebug( oSender:cConnect )
>>
>> RETURN Nil
>>
>> An the value obtained is:
>>
>> 00.000.00.000:9000sharedmyfolderdatamydict.add
>>
>> Which I think is correct.
>>
>> Could you send us a small sample showing the error.
>>
>> Regards,
>>
>> --
>> Ignacio Ortiz de Zúñiga
>> http://www.xailer.com
>> "Andrew W. Ross" <aross@ssctv.net> escribió en el mensaje
>> news:[email=453f9dde@news.xailer.com...]453f9dde@news.xailer.com...[/email]
>>>I am still having problems with connection strings even with 1.1a.
>>>
>>> \000.000.00.000:9000sharedmyfolderdatamydict.add
>>>
>>> is transformed to
>>>
>>> 00.000.00.000:9000sharedmyfolderdatamydict.add
>>>
>>> and the connection fails on project reopens. I have to manually add back
>>> the two slashes.
>>>
>>>
>>
>>
>
>

Datasource cConnect property since v1.1

Publicado: Mié Nov 15, 2006 2:25 am
por Capsol Coder
Context help only works the first time you use it, then it comes up with
"Action cancelled", and all the manual then says "Page can not be displayed"
You have to close help after each use.
Regards,
Leigh.

Datasource cConnect property since v1.1

Publicado: Mié Nov 15, 2006 9:13 am
por ignacio
Capsol,
It seems you are using a bad version of CHM Help viewer. Try to upgrade to
the latest version. Here it is working nicely. Some other people had also
problems with old versions of CHM help viewer.
Regards,
--
Ignacio Ortiz de Zúñiga
http://www.xailer.com
"Capsol Coder" <nick__NOSPAM__@capsol.com.au> escribió en el mensaje
news:[email=455a6c98@news.xailer.com...]455a6c98@news.xailer.com...[/email]
> Context help only works the first time you use it, then it comes up with
> "Action cancelled", and all the manual then says "Page can not be
> displayed"
> You have to close help after each use.
>
> Regards,
> Leigh.
>