debasisdas 580 Posting Genius Featured Poster

You need to use some third party controls for the desired results.

debasisdas 580 Posting Genius Featured Poster

It is always recommended to register the component with windows and then use it in VB 6.0.
Add the same from Project---->References

and then use it.

debasisdas 580 Posting Genius Featured Poster

I strongly believe there is no limit for the number of records in access database.
Try to create index on the fields for faster data access.

debasisdas 580 Posting Genius Featured Poster

Instead of using addnew ,you need to use Edit .

In simple terms instead using Insert you need to Update the existing record.

debasisdas 580 Posting Genius Featured Poster

The code from Shouvik will work fine. But i would recommend you to use use COUNT to findout existance of the username and password in the database.

1.Accept the username and password from user input.
2.In the database username field should be the primary/unique key to avaoid duplicate user name.
3.Check for existance of the same useing COUNT().
4.Login to application iof count returns 1 else ask to re-enter the username and password.

Since using COUNT this will give you better performance even in case of a large user database.

debasisdas 580 Posting Genius Featured Poster

It is always better to go for .Net. It has a lot of advantages over age old VB 6.0. But if you still want to use VB 6.0 ,you can go for the same.

debasisdas 580 Posting Genius Featured Poster

The following code should work for you.

Data1.RecordSource = "SELECT * FROM waqf where cardno LIKE "'%" & Trim(s) & "%'"

debasisdas 580 Posting Genius Featured Poster

Timer is one of the easiest controls to code. It has the minimum properties and responds to timer event of the control.

debasisdas 580 Posting Genius Featured Poster

You have designed the browser yourself or using any other browser(like IE) component ?

debasisdas 580 Posting Genius Featured Poster

Nothing comes in the way of the ONE Who has DECIDED.

debasisdas 580 Posting Genius Featured Poster

The mind that is anxious about future events is miserable.

vegaseat commented: so true! +8
debasisdas 580 Posting Genius Featured Poster

Was he really accurate ?

debasisdas 580 Posting Genius Featured Poster

ammonia-------->poison

debasisdas 580 Posting Genius Featured Poster

4489

debasisdas 580 Posting Genius Featured Poster

-822

debasisdas 580 Posting Genius Featured Poster

tell

debasisdas 580 Posting Genius Featured Poster

ball

debasisdas 580 Posting Genius Featured Poster

-820

debasisdas 580 Posting Genius Featured Poster

frankly, i even could not get that to 2.

debasisdas 580 Posting Genius Featured Poster

Please find a related discussion here.

debasisdas 580 Posting Genius Featured Poster

1. remove the begin end part
2.use INPUT BOX instead of PUT
3.accept the value from inputbox instead of GET.

rest almost remains

debasisdas 580 Posting Genius Featured Poster

You need to fight not play to win.

debasisdas 580 Posting Genius Featured Poster

The lvbutton.ocx file might have got corrupted .

debasisdas 580 Posting Genius Featured Poster

Please do not start a thread for such kind of things.

debasisdas 580 Posting Genius Featured Poster

Are you commiting after each Delete operation in the code ?

debasisdas 580 Posting Genius Featured Poster

We can't do great things in this life . . .
We can only do small things with great love.

-- Mother Theresa

debasisdas 580 Posting Genius Featured Poster

Are you planning to do that using VB 6.0 ?

debasisdas 580 Posting Genius Featured Poster

1.read the file
2.copy the content
3.convert to uppercase
4.then compare line by line with master file.

debasisdas 580 Posting Genius Featured Poster

The code syntax is correct . it seems there is some logic error in your code. Run the code using brake points and check.

debasisdas 580 Posting Genius Featured Poster

What is the data type you are using in Access . Try using decimal .

debasisdas 580 Posting Genius Featured Poster

You need to enclose the quotes by enclosing quotes since it is a string.

debasisdas 580 Posting Genius Featured Poster

You need to parse sysdate+1+2/24+20/(24*60) to proper format before processing in database.

debasisdas 580 Posting Genius Featured Poster

Is you application connected to oracle database ?

debasisdas 580 Posting Genius Featured Poster

Live now. Make now always the most precious time.
Now will never come again.

debasisdas 580 Posting Genius Featured Poster

Love hurts, too much...............

debasisdas 580 Posting Genius Featured Poster

What is that 4 ?

You want to print 4 copies at once
or
Four labels on a single page ?

debasisdas 580 Posting Genius Featured Poster

Some of the required system files must might got corrupted.

debasisdas 580 Posting Genius Featured Poster

Pure logic is the ruin of the spirit.

debasisdas 580 Posting Genius Featured Poster

Have you connected to database and fetched the total attendance from database table ?

debasisdas 580 Posting Genius Featured Poster

This happens if the project file is copied from a CD where all the files are read only. After copying the files to system from CD check to ensure that the files are not read only (uncheck the read only check box).

debasisdas 580 Posting Genius Featured Poster

Growing old is mandatory. Growing up is optional.

debasisdas 580 Posting Genius Featured Poster

What is the problem you need to store the values in a variable. No need to sue second textbox.

debasisdas 580 Posting Genius Featured Poster

One is not born, but rather becomes, a woman.

debasisdas 580 Posting Genius Featured Poster

try using the API PlaySound.

debasisdas 580 Posting Genius Featured Poster

The less people speak of their greatness,
the more we think of it.

debasisdas 580 Posting Genius Featured Poster

Through activity, man attains purity of consciousness.

debasisdas 580 Posting Genius Featured Poster

That is available already in VB 6.0. You only need to change the style property of the listbox form Standard (default) to Checked.

debasisdas 580 Posting Genius Featured Poster

Find purpose, the means shall follow.

debasisdas 580 Posting Genius Featured Poster

You need to check if F1 has already been pressed which pressing F2 key. It is always recommended to avoid using F1 and F10 key.

debasisdas 580 Posting Genius Featured Poster

What are you trying to do using tab key ?

Try setting the KeyPreview property of the form to TRUE.