|
|
Group: Forum Members
Last Login: 2/2/2015 1:05:23 AM
Posts: 448,
Visits: 12,502
|
Can you use a Custom Field in a Browse Dialog?It does not make sense to me that you could search on a field that really does not appear in the db table and it does not seem to show up as one of the output fields in the browsedialog. But I may be missing something????? TIA.
|
Post #30415
|
|
|
|
Strategic Support Team Member       
Group: StrataFrame MVPs
Last Login: 2 days ago @ 10:51:31 PM
Posts: 1,920,
Visits: 21,126
|
Nope, you can't search on a custom field, and yes, you can show it in the results. Aren't you missing a property descriptor for the custom property?
|
Post #30424
|
|
|
|
Group: Forum Members
Last Login: 2/2/2015 1:05:23 AM
Posts: 448,
Visits: 12,502
|
thank you I got it to work.
|
Post #30425
|
|
|
|
Strategic Support Team Member       
Group: StrataFrame MVPs
Last Login: 2 days ago @ 10:51:31 PM
Posts: 1,920,
Visits: 21,126
|
You're welcome Terry.
Glad to hear that.
|
Post #30426
|
|
|
|
Group: Forum Members
Last Login: 8/9/2012 5:51:54 AM
Posts: 14,
Visits: 102
|
Hello , I have a browser dialog and inside it, have a combobox .
I wanted know if is possible modify the proprerties of my combobox.
for example: I need when the user typing in my combobox , Search options appear..
because what is happens.. is that just is possible typing one letter of search in the combobox..
want to be able to type the whole word in my combobox that is inside of my browser dialog
do you can help me?
hug.
|
Post #30429
|
|
|
|
Strategic Support Team Member       
Group: StrataFrame MVPs
Last Login: 2 days ago @ 10:51:31 PM
Posts: 1,920,
Visits: 21,126
|
Hi Jéssica.
Nope, it is not possible the way it is today.
However, I have accomplished this, but I made lots of changes into the SF BrowseDialog source code which is a thing that should be carefully considered.
If you fill brave and decide to go for it, let me know and I can help you out.
Abraços.
|
Post #30430
|
|
|
|
Group: Forum Members
Last Login: 8/9/2012 5:51:54 AM
Posts: 14,
Visits: 102
|
ok then , nevertheless you can help me with other things....
How I pass one parameter to combobox ?
in the properties of my combobox populationDataSourceSettings
I selected one method that need of two parameter ..how I pass this parameter to combobox??
... Muito Obrigado
Tags:
|
Post #30431
|
|
|
|
Strategic Support Team Member       
Group: StrataFrame MVPs
Last Login: 2 days ago @ 10:51:31 PM
Posts: 1,920,
Visits: 21,126
|
Here you are:
Private Sub ComboBox1_ListPopulating(ByVal e As MicroFour.StrataFrame.UI.ListPopulatingEventArgs) Handles ComboBox1.ListPopulating '-- pass your parameters e.Parameters(0).Value = True e.Parameters(1).Value = "My Second Parameter" e.Parameters(2).Value = "And Yet Another Parameter" End Sub
De nada...
|
Post #30432
|
|
|
|
Group: Forum Members
Last Login: 8/9/2012 5:51:54 AM
Posts: 14,
Visits: 102
|
Oba oba..
muito obrigado xuxu
|
Post #30433
|
|
|
|
Strategic Support Team Member       
Group: StrataFrame MVPs
Last Login: 2 days ago @ 10:51:31 PM
Posts: 1,920,
Visits: 21,126
|
De nada!
|
Post #30434
|
|