به نقل از majid75 :میخوام یه جدول در اکسس رو با فرمی به شکل زیر جستجو کنم.لطفا خیلی سریع راهنمایی بفرمایید.ستونهای جدول شبیه موارد جستجوست.
با تشکر
if strSearchName & strSearchJob & strSearchOstan & strSearchCity="" then
strSQL = "select SiteIDNo,Name,Job,Tel,Fax,Mobil,Ostan,City,Add,URL,Email,Tozih from tblJob"
else
strSQL = strSQL & " Name like '%" & strSearchName & "%' and Job like '%" & strSearchJob & "%' and Ostan like '%" & strSearchOstan & "%' and City like '%" & strSearchCity & "%'"
end if
strSQL = strSQL & " ORDER By SiteIDNo DESC;"
'If the user has selected to see newly enetred URL's then order the search results by date decending
Case "new"
'Initalise the strSQL variable with an SQL statement to query the database
strSQL = "SELECT TOP " & intRecordsPerPage & " tblJob.* FROM tblJob"
strSQL = strSQL & " ORDER By SiteIDNo DESC;"
از همين روش استفاده كنبه نقل از mehdi25 :من یه نمونه از برنامه جستجو که دارم رو برات میزارم باقیشو خودت تکمیل کن :
این برنامه بررحصب یکی یا تمام متغیرها جستجو میکنه
HTML:if strSearchName & strSearchJob & strSearchOstan & strSearchCity="" then strSQL = "select SiteIDNo,Name,Job,Tel,Fax,Mobil,Ostan,City,Add,URL,Email,Tozih from tblJob" else strSQL = strSQL & " Name like '%" & strSearchName & "%' and Job like '%" & strSearchJob & "%' and Ostan like '%" & strSearchOstan & "%' and City like '%" & strSearchCity & "%'" end if strSQL = strSQL & " ORDER By SiteIDNo DESC;" 'If the user has selected to see newly enetred URL's then order the search results by date decending Case "new" 'Initalise the strSQL variable with an SQL statement to query the database strSQL = "SELECT TOP " & intRecordsPerPage & " tblJob.* FROM tblJob" strSQL = strSQL & " ORDER By SiteIDNo DESC;"