<r>You can double click the textbox control to generate the TextChanged method, such as:<br/>
<CODE><s>[code]</s><i>
</i>PRIVATE METHOD textBox1_TextChanged(sender AS System.Object, e AS System.EventArgs) AS VOID STRICT
// your code
RETURN
END METHOD
<e>[/code]</e></CODE>
EditChange in VO is a ...
Search found 334 matches
- Thu Feb 16, 2023 8:53 pm
- Forum: Product
- Topic: How to use Winforms Textbox Autocomplete for multiple phrases?
- Replies: 5
- Views: 1872
- Sat Jan 28, 2023 11:40 pm
- Forum: Forum Italiano
- Topic: ComboBox che non si apre [RISOLTO]
- Replies: 14
- Views: 6362
ComboBox che non si apre
<r>I assumed you know how to construct the class. Let me clarify further. <E>:)</E>:)<br/>
<br/>
The complete code is below:<br/>
<CODE><s>[code]</s><i>
</i>CLASS EnhancedComboBox INHERIT ComboBox
METHOD Init( oOwner, xID, oPoint, oDimension, kComboType, kStyle) CLASS EnhancedComboBox
SUPER:Init ...
<br/>
The complete code is below:<br/>
<CODE><s>[code]</s><i>
</i>CLASS EnhancedComboBox INHERIT ComboBox
METHOD Init( oOwner, xID, oPoint, oDimension, kComboType, kStyle) CLASS EnhancedComboBox
SUPER:Init ...
- Sat Jan 28, 2023 6:27 pm
- Forum: Forum Italiano
- Topic: ComboBox che non si apre [RISOLTO]
- Replies: 14
- Views: 6362
ComboBox che non si apre
<r>Your lucky day!<br/>
<QUOTE><s>[quote]</s> how can I check that on the ComboBox I pressed the KEYRETURN key to exit the check and then run the search?<e>[/quote]</e></QUOTE>
Inherit your combobox from this class:<br/>
<CODE><s>[code]</s><i>
</i>METHOD Dispatch(oEvent) CLASS EnhancedComboBox ...
<QUOTE><s>[quote]</s> how can I check that on the ComboBox I pressed the KEYRETURN key to exit the check and then run the search?<e>[/quote]</e></QUOTE>
Inherit your combobox from this class:<br/>
<CODE><s>[code]</s><i>
</i>METHOD Dispatch(oEvent) CLASS EnhancedComboBox ...
- Sat Jan 28, 2023 5:38 pm
- Forum: Forum Italiano
- Topic: ComboBox che non si apre [RISOLTO]
- Replies: 14
- Views: 6362
ComboBox che non si apre
Claudio,
To open the combobox and set focus to it, you can use the following:
Jamal
To open the combobox and set focus to it, you can use the following:
Code: Select all
SendMessage(self:oDCListaTutor:Handle(), CB_SHOWDROPDOWN, 1, 0)
self:oDCListaTutor:SetFocus()
- Thu Jan 26, 2023 10:25 pm
- Forum: VO & Vulcan
- Topic: ampersand (&) Kaufmännisches Und in VO
- Replies: 8
- Views: 2580
ampersand (&) Kaufmännisches Und in VO
Not sure if this will work for you. Try using [ ] instead of " "
cText := [&]
Jamal
cText := [&]
Jamal
- Thu Dec 29, 2022 5:40 pm
- Forum: Forum Italiano
- Topic: VO28 Error
- Replies: 5
- Views: 2940
VO28 Error
Delete all *.DBG and *.VOM files, then run VO as an Administrator and see what happens?
Jamal
Jamal
- Sun Dec 11, 2022 6:16 am
- Forum: VO & Vulcan
- Topic: Regex type functionality in VO or Vulcan...
- Replies: 5
- Views: 2081
Regex type functionality in VO or Vulcan...
<r>Here we go:<br/>
<br/>
You can use <B><s>[b]</s>Microsoft VBScript Regular Expressions 5.5 library<e>[/b]</e></B> in <B><s>[b]</s>VO 2.8 - 2838<e>[/b]</e></B> as in the the following example. The library is normally installed in Windows, so you won't have to install yourself.<br/>
Note: in ...
<br/>
You can use <B><s>[b]</s>Microsoft VBScript Regular Expressions 5.5 library<e>[/b]</e></B> in <B><s>[b]</s>VO 2.8 - 2838<e>[/b]</e></B> as in the the following example. The library is normally installed in Windows, so you won't have to install yourself.<br/>
Note: in ...
- Mon Nov 21, 2022 5:32 am
- Forum: 3rd party products
- Topic: MSSQLSRV - Auto Increment - Identity - How to handle inserts - Vo2Ado
- Replies: 4
- Views: 3185
MSSQLSRV - Auto Increment - Identity - How to handle inserts - Vo2Ado
<r>Hi John,<br/>
<br/>
I don't use VO2Ado, but I use SQL Server a lot.<br/>
Briefly (based on what I know), Auto Increment column is an <B><s>[b]</s>optional<e>[/b]</e></B> UNIQUE IDENTITY which is designated as a Primary Key that automatically starts with a seed value and is incremented by a value ...
<br/>
I don't use VO2Ado, but I use SQL Server a lot.<br/>
Briefly (based on what I know), Auto Increment column is an <B><s>[b]</s>optional<e>[/b]</e></B> UNIQUE IDENTITY which is designated as a Primary Key that automatically starts with a seed value and is incremented by a value ...
- Thu Nov 03, 2022 5:35 pm
- Forum: Product
- Topic: Problem with PadL() and REAL8 parameter ?
- Replies: 8
- Views: 2094
Problem with PadL() and REAL8 parameter ?
<r>The problem seems to be internal to the PadL function which in turn calls Ntrim(uValue). The NTrim seems to be the culprit.<br/>
I created a PadL2() from the X# PadL() so you can see the issue and workaround by using:<br/>
<B><s>[b]</s>ret := uValue:ToString() instead of ret := Ntrim(uValue)<e ...
I created a PadL2() from the X# PadL() so you can see the issue and workaround by using:<br/>
<B><s>[b]</s>ret := uValue:ToString() instead of ret := Ntrim(uValue)<e ...
Virus?
<r>Hi Chris,<br/>
<br/>
Do you code sign your XIDE program?<br/>
<br/>
If not, I can understand, however, code signing builds trust that the program has not been tampered during transit with and it came from a trusted source. <br/>
I am usually very hesitant to install any program that is not code ...
<br/>
Do you code sign your XIDE program?<br/>
<br/>
If not, I can understand, however, code signing builds trust that the program has not been tampered during transit with and it came from a trusted source. <br/>
I am usually very hesitant to install any program that is not code ...