debasisdas 580 Posting Genius Featured Poster

Hi amir,

Welcome to daniweb.

debasisdas 580 Posting Genius Featured Poster

There is no hard and fast rule or database structure for something like library management system. That entirely depends on how and what exactly you want to implement.

debasisdas 580 Posting Genius Featured Poster

Hi Aldo,

Your intro is so cool.

Welcome to Daniweb..

debasisdas 580 Posting Genius Featured Poster

Hi Joe

welcome to daniweb.

debasisdas 580 Posting Genius Featured Poster

You can find all info on line.

debasisdas 580 Posting Genius Featured Poster

Please find out the connection strings here.

debasisdas 580 Posting Genius Featured Poster

Welcome Spyder,

You have one of the best intros.

debasisdas 580 Posting Genius Featured Poster

Hi Keith,

You can start contributing right away.

debasisdas 580 Posting Genius Featured Poster

Hi

welcome to daniweb.

Hope to see you contributing soon.

debasisdas 580 Posting Genius Featured Poster

Then take help of Google, the is the best source for finding anything.

debasisdas 580 Posting Genius Featured Poster

Hello Edward,

welcome to daniweb.

debasisdas 580 Posting Genius Featured Poster

I never felt true love until I was with you, And I never felt true sadness until you left me.

debasisdas 580 Posting Genius Featured Poster

There are many applications that can be finished in your time frame. Now it depends on you what you decide to develop.

debasisdas 580 Posting Genius Featured Poster

"Joy is a net of love by which you can catch souls." Mother Teresa

debasisdas 580 Posting Genius Featured Poster

Hi sheila

Our experts can surely help you.

debasisdas 580 Posting Genius Featured Poster

Welcome to Daniweb.

debasisdas 580 Posting Genius Featured Poster

Welcome

I really like the way you said our forum.

Initially we all learn and later help others do the same.

debasisdas 580 Posting Genius Featured Poster

I really enjoy welcoming you.

We can really learn a lot together.

debasisdas 580 Posting Genius Featured Poster

that can be easily done by adding ORDER BY key word in your search criteria.

debasisdas 580 Posting Genius Featured Poster

"Where there is great love, there are always miracles." Willa Cather

debasisdas 580 Posting Genius Featured Poster

Welcome Gary,

We all learn by helping each other.

debasisdas 580 Posting Genius Featured Poster

Welcome to daniweb.

Just keep using your system and do post here in case you are struck anywhere.

debasisdas 580 Posting Genius Featured Poster

Hi,

Welcome to daniweb.

I was also new here oneday.

debasisdas 580 Posting Genius Featured Poster

Hello skyer.

We are glad to have you around.

debasisdas 580 Posting Genius Featured Poster

Hi Hachimi ,

Welcome aboard.

debasisdas 580 Posting Genius Featured Poster

Hi Derek,

Welcome to Daniweb.

We are pleased to have you around.

You have one of the best intros.

debasisdas 580 Posting Genius Featured Poster

Welcome Ani ,

We all learn here everyday by sharing , Waiting for your contribution.

debasisdas 580 Posting Genius Featured Poster

Welcome Brandon,

Hope you will have a nice time here.

debasisdas 580 Posting Genius Featured Poster

an vb application creates a session in oracle once you open a connection and is closed when you close the connection object.

debasisdas 580 Posting Genius Featured Poster

you need to start reading the book and try to understand the basics first before starting any sort of coding.

debasisdas 580 Posting Genius Featured Poster

you need to substract the system time from the user input and do the rest with a timer control.

debasisdas 580 Posting Genius Featured Poster

You never win Silver, but always loose Gold.

debasisdas 580 Posting Genius Featured Poster

"Love involves a peculiar unfathomable combination of understanding and misunderstanding."

Diane Arbus

debasisdas 580 Posting Genius Featured Poster

It is so simple to be happy but so difficult to be simple.

debasisdas 580 Posting Genius Featured Poster

If you are looking for the connection string find it here.

from vb 6.0 you need to use ADO.

debasisdas 580 Posting Genius Featured Poster

all the companies will fight to find a place in the list.

debasisdas 580 Posting Genius Featured Poster

"Love is loving what your lover loves". Anonymous

debasisdas 580 Posting Genius Featured Poster

please check lblStartTime refers to a lebel or not or is there any control array.

debasisdas 580 Posting Genius Featured Poster

Stay true to Nature, your Nature.

debasisdas 580 Posting Genius Featured Poster

you do not need an intermediate table only defining the relationship by PK and FK will do that for you. But from your post i am not use what exactly you are looking for. I think you need to pass more information.

debasisdas 580 Posting Genius Featured Poster

1. open the recordset only for itemID
2. in a for loop add the items to combobox
3. open another recordset for itemname by passing itemID in where clause at runtime dynamically by selecting the itmes from combobox

debasisdas 580 Posting Genius Featured Poster

Are you using data report ?

debasisdas 580 Posting Genius Featured Poster

you need to check if BOF or EOF properties are TRUE before using the move methods.

debasisdas 580 Posting Genius Featured Poster

try this sample function for the job.

Code:
Public Function NumToWord(numstr As Variant) As String

Dim newstr As String

numstr = CDec(numstr)

If numstr = 0 Then
NumToWord = "Zero"
Exit Function
End If

If numstr > 10 ^ 24 Then
NumToWord = "Number too big"
Exit Function
End If

If numstr >= 10 ^ 12 Then
newstr = NumToWord(Int(numstr / 10 ^ 12))
numstr = ((numstr / 10 ^ 12) - _
Int(numstr / 10 ^ 12)) * 10 ^ 12
If numstr = 0 Then
tempstr = tempstr & newstr & "Bilion "
Else
tempstr = tempstr & newstr & "Bilion "
End If
End If

If numstr >= 10 ^ 6 Then
newstr = NumToWord(Int(numstr / 10 ^ 6))
numstr = ((numstr / 10 ^ 6) - _
Int(numstr / 10 ^ 6)) * 10 ^ 6
If numstr = 0 Then
tempstr = tempstr & newstr & "milion "
Else
tempstr = tempstr & newstr & "milion "
End If
End If

If numstr >= 10 ^ 3 Then ' thousand
newstr = NumToWord(Int(numstr / 10 ^ 3))
numstr = ((numstr / 10 ^ 3) - Int(numstr / 10 ^ 3)) * 10 ^ 3
If numstr = 0 Then
tempstr = tempstr & newstr & "thousand "
Else
tempstr = tempstr & newstr & "thousand "
End If
End If

If numstr >= 10 ^ 2 Then
newstr = NumToWord(Int(numstr / 10 ^ 2))
numstr = ((numstr / 10 ^ 2) - Int(numstr / …
debasisdas 580 Posting Genius Featured Poster

The rules of the nature never changes but nature itself keeps changing constantly.

debasisdas 580 Posting Genius Featured Poster

"I never knew how to worship until I knew how to love." Henry Ward Beecher

debasisdas 580 Posting Genius Featured Poster

A couple of years back i was working at the data center of one of the largest paper plants in Asia. Actually i was not supposed to go inside the plant but once i decided to go inside and find out what exactly happens. There was a vacuum lift crane that lifts paper rolls up to 6 tones which operates over our head. As i was just passing by it dropped a six ton roll seconds after an alarm went off. and luckily i was couple of feet away.

debasisdas 580 Posting Genius Featured Poster

I feel really sorry for all those who are still using DAO or RDO.

I don't understand why one needs to use different technologies for different databases.

debasisdas 580 Posting Genius Featured Poster

It is better to be married once that be divorced thrice.

debasisdas 580 Posting Genius Featured Poster

The SHOW method is used to SHOW (make it visible) the form at run time.