Search found 360 matches

by Jamal
Sun Feb 02, 2025 4:56 am
Forum: Product
Topic: Combobox to update DBF
Replies: 8
Views: 3499

Re: Combobox to update DBF

Set the combobox value using SelectedValue

Code: Select all

 SELF:cbGender:DisplayMember := "Value"
 SELF:cbGender:ValueMember := "Key"

 SELF:cbGender:SelectedValue := ("Text", bindingSourceBFMB,"GENDER")    //  This line
 
by Jamal
Fri Jan 31, 2025 4:52 pm
Forum: 3rd party products
Topic: AdoConvertNullStringToNull() no longer supported
Replies: 7
Views: 8697

Re: AdoConvertNullStringToNull() no longer supported

Hi Kees,

I see. Until then, have you thought about creating a table trigger or a database wide trigger to save empty strings to NULL?

Myself, I never needed that and I work with SQL Server a lot. I asked the same question to ChatGPT and it provided good answers about both options. If you wish I ...
by Jamal
Thu Jan 30, 2025 4:18 pm
Forum: 3rd party products
Topic: AdoConvertNullStringToNull() no longer supported
Replies: 7
Views: 8697

Re: AdoConvertNullStringToNull() no longer supported

Kees,

Do you want something like this function which you can use when your insert the data in the sql table?

FUNCTION AdoConvertNullStringToNull(value AS OBJECT) AS OBJECT
RETURN IIF(value == DBNull.Value .OR. value == NULL, "", value)
by Jamal
Thu Jan 30, 2025 3:49 pm
Forum: VO & Vulcan
Topic: HKCU randomly uses Users registry entry
Replies: 13
Views: 19783

Re: HKCU randomly uses Users registry entry

Dick,

You may want to remove the slash before the Software in cVar := oreg:GetString("\Software\IC2\iConnect","SomeValue")

However, I suspect you are using and old Class_HKCU{} class that's not setting the security access mask: KEY_ALL_ACCESS + KEY_WOW64_64KEY.

This is why I asked you to attach ...
by Jamal
Thu Jan 30, 2025 4:40 am
Forum: Product
Topic: Combobox to update DBF
Replies: 8
Views: 3499

Re: Combobox to update DBF

A sample working project that shows what you tried would help get you answers. It is not clear what data controls you are using and events are being utilized.

Aside from the above, hopefully someone familiar with Harbour would jump in since I have not used it, however, in .NET, I guess the ...
by Jamal
Thu Jan 30, 2025 4:12 am
Forum: VO & Vulcan
Topic: HKCU randomly uses Users registry entry
Replies: 13
Views: 19783

Re: HKCU randomly uses Users registry entry

Provide a sample AEF and include any registry lib you are using to set and get the reg key values.
by Jamal
Mon Jan 13, 2025 5:05 pm
Forum: VO & Vulcan
Topic: Migrating from VO 2.6 to Vulcan
Replies: 10
Views: 16298

Re: Migrating from VO 2.6 to Vulcan

Hi Robbie,

I think you need to copy the .dll files of the plugins into the Plugins folder in the XIDE installation directory, then restart XIDE.
by Jamal
Sat Dec 14, 2024 8:33 pm
Forum: VO & Vulcan
Topic: ADS error 6420 - only for some users on server
Replies: 7
Views: 12602

Re: ADS error 6420 - only for some users on server

Hi Dick,

This may be caused by a sudden connection drop. Things to consider:

1. Firewall temporarily blocking connection. Check firewall settings.
2. Anti-Virus protection. Try to exclude the EXEs folder.
3. If the DBF files are accessed remotely over an Internet connection or on a LAN ...
by Jamal
Wed Nov 27, 2024 8:34 pm
Forum: Product
Topic: DBF Client/Server Engine
Replies: 7
Views: 3101

Re: DBF Client/Server Engine

Hi Wolfgang,

Understood. Please refer https://www.xsharp.eu/forum/topic?p=648#p648 from May 21, 2018.

It is similar to my request and this is what I am hoping for.

Jamal
by Jamal
Wed Nov 27, 2024 6:44 pm
Forum: Product
Topic: DBF Client/Server Engine
Replies: 7
Views: 3101

Re: DBF Client/Server Engine

Hi Wolfgang,

In the link https://www.xsharp.eu/articles/x-sql-rdd-beta I have not seen a mention of DBF.

Does it support DBF file in as Client/Server using SQL interface? If that's the case, that would be cool.