![]() |
|
|||||||
| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| Questions & Help Needed Post any question regarding Basic4ppc. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
hi,
i would like to make a Filter like that but it doesnt work, Whats wrong? Thank you Hatmut sr = "*" & Table1Textbox.Text & "*" sr1 = "*" & Textbox30.Text & "*" Table1.Filter("benennung LIKE '" & sr & "'" AND "benennung LIKE '" & sr1 & "'") |
|
|||
|
Quote:
Also I usually start with 1 filter item, and if it works add the 2nd -= edit=- tried it and i don't think the TABLE allows this since you are searching in the same column at the same time while the example is using a different column as a workaround I would filter using one argument, copy that information to a temp table and search using the 2nd argument Unless Erel has a solution :-) Code:
Sub App_Start
Form1.Show
Table1.AddCol(cString,"benennung",80,False)
i = 0
Do Until i = 60
Table1.AddRow("Test"&i)
i = i + 1
Loop
End Sub
Sub Button1_Click
'sr = "*" & Table1Textbox.Text & "*"
'sr1 = "*" & Textbox30.Text & "*"
'Table1.Filter("benennung LIKE '" & sr & "'" AND "benennung LIKE '" & sr1 & "'")
Table1.Filter("benennung LIKE 5" AND "benennung LIKE 9")
End Sub
Last edited by Mr_Gee : 06-23-2008 at 11:22 AM. |
|
|||
|
I tried this on a SQL database and it worked for me.
select * from inventory where description like '%Milk%' and description like '%GOAT%' yielded one record with milk and goat in the description. also tried it with OR and had all of the records with milk in the description and one goat. To filter you must use the percent sign as shown Hope this is what you are looking for |
|
|||
|
Quote:
that did the trick, kudos to you ![]() |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| "AddEvent" and "buttonUp/buttonDown" | Byak@ | Questions & Help Needed | 12 | 09-10-2008 04:04 PM |
| Is there any thing like Visual Basic "Tabbed dialog control" in Basic4ppc? | mozaharul | Questions & Help Needed | 6 | 03-23-2008 12:07 PM |
| Icon / Image in a Table to "Click" on | burd27 | Questions & Help Needed | 2 | 03-16-2008 04:04 AM |
| Image Button kommt nicht wieder "hoch" | troll | German Forum | 3 | 02-22-2008 10:03 AM |
| calling the device's "Programs" or "settings" screens | HarleyM | Questions & Help Needed | 0 | 12-05-2007 03:59 AM |