No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: Hi, here's my example on how to do that i'm using Data Control and DBGrid, you type something in a Text Box called Text1 and see the result in DBGrid1. [CODE]Private Sub Text1_Change() Data1.RecordSource = "Select * from Data where No_Id like'" & Text1.Text & "*'" Data1.Refresh End Sub [/CODE] … | |
Re: Hi, i dont think it's wise to ask someone to download your file and try to solve your problem. I think it's better to post your code so others can analize and try to give you solution, and since i dont know exactly what is your problem, then maybe i … | |
Re: Hi, you can use SQL Statement to do a search. For example: [CODE]Select * from Equipment where RegNo like'*212*'[/CODE] it will return all the data that have 212 in RegNo field. Hope it help | |
Re: You can use Weekday(DateSerial(Year, Month, Day)) grab the output and convert it from Sunday to Saturday. |
The End.