473,385 Members | 1,472 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Filtration problem

72
hi vb wizards, just wanna ask sumthing i have a database created in access, with diffirent primary id, now i want to know how can i able to filter those data from my database, its like i have 30 records consists of different id, the first has the letter "a" on the first character, the second 10 has letter "b" and last 10 has letter "c", the question is how will i able to filter it if i only want to view the database that has the letter "a" on its id and display it on a labels ,, using adodc in visual basic 6. i hope somebody can help on its, my graduation will depend on this project.. please help me...!!! thank you in advance, any help will be a great help for me.....
May 5 '07 #1
4 1040
Killer42
8,435 Expert 8TB
hi vb wizards, just wanna ask sumthing i have a database created in access, with diffirent primary id, now i want to know how can i able to filter those data from my database, its like i have 30 records consists of different id, the first has the letter "a" on the first character, the second 10 has letter "b" and last 10 has letter "c", the question is how will i able to filter it if i only want to view the database that has the letter "a" on its id and display it on a labels ,, using adodc in visual basic 6. i hope somebody can help on its, my graduation will depend on this project.. please help me...!!! thank you in advance, any help will be a great help for me.....
I'm not familiar with the use of filters, but the SQL expression to limit the records in this way would be something along the lines of PrimaryId Like "a*".
May 5 '07 #2
darrel
72
thanks you for that, can you give the whole syntax of that query,,, am not very familiar in SQL language, but ithink it will work... thank you for the idea...
May 5 '07 #3
Killer42
8,435 Expert 8TB
thanks you for that, can you give the whole syntax of that query,,, am not very familiar in SQL language, but ithink it will work... thank you for the idea...
Well, the simplest version would be...

Select * From TableName Where PrimaryID Like "a*"

Note, I'm not sure whether you need to use single or double quotes (' or ").

For more information on SQL, I'd advise you tel check out the Access forum. Especially the" Tutorials and Code Samples" item near the top.
May 5 '07 #4
darrel
72
thank you from the advise. i have a code its like this:

if cboSem.text = "1st Sem" and cboCourse.text = "BS.Tourism" then
SELECT * From dbTimeSchedule.mdb WHERE PrimaryID Like "T0101*"

For i = 1 to __________
label1 to 10.caption = ______
"this is the area where all records must be placed".

Next
end if


My problem is i dont know what will i do, i dont know how, its like this i have a total of 14 labels, and the record of the said condition is only ten, so want i wanted to do that i can hide the rest of the labels that is not neccessary needed for a specific records. i hope you can help i badly need some ideas and help.

Thank you hoping for your reply!
May 7 '07 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Bruce Davis | last post by:
I'm having a problem on windows (both 2000 and XP) with a multi-threaded tkinter gui application. The problem appears to be a deadlock condition when a child thread pops up a Pmw dialog window in...
11
by: Kostatus | last post by:
I have a virtual function in a base class, which is then overwritten by a function of the same name in a publically derived class. When I call the function using a pointer to the derived class...
0
by: Refky Wahib | last post by:
Hi I need Technical Support I finished a Great project using .Net and SQL Server and .Net Mobile Control My Business case is to implement this Program to accept about 1 Million concurrent...
9
by: Sudesh Sawant | last post by:
Hello, We have an application which communicates using remoting. There is a server which is a Windows Service. The server exposes an object which is a singleton. The client is a Web Application...
117
by: Peter Olcott | last post by:
www.halting-problem.com
17
by: Jon Slaughter | last post by:
I'm having a little trouble understanding what the slicing problem is. In B.S.'s C++ PL3rdEd he says "Becayse the Employee copy functions do not know anything about Managers, only the Employee...
28
by: Jon Davis | last post by:
If I have a class with a virtual method, and a child class that overrides the virtual method, and then I create an instance of the child class AS A base class... BaseClass bc = new ChildClass();...
6
by: Ammar | last post by:
Dear All, I'm facing a small problem. I have a portal web site, that contains articles, for each article, the end user can send a comment about the article. The problem is: I the comment length...
16
by: Dany | last post by:
Our web service was working fine until we installed .net Framework 1.1 service pack 1. Uninstalling SP1 is not an option because our largest customer says service packs marked as "critical" by...
2
by: Mike Collins | last post by:
I cannot get the correct drop down list value from a drop down I have on my web form. I get the initial value that was loaded in the list. It was asked by someone else what the autopostback was...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.