debasisdas 580 Posting Genius Featured Poster

you need to check for existance of the ID before trying to insert a new record. If it exists prompt the user to enter a new ID or can increment the max(id) by 1 and continue.

debasisdas 580 Posting Genius Featured Poster

I mean to say that i didn't check in VB6 environment.

What exactly is the issue for you ?

debasisdas 580 Posting Genius Featured Poster

You need to create a separate table for POINTS and assign some score for each position. That needs to be implement as a look up table in your database.

debasisdas 580 Posting Genius Featured Poster

I don't think that is an database issue.

who has designed the DLL ?
Try to get it registered with windows by using REGSVR32 key and recheck.

debasisdas 580 Posting Genius Featured Poster

That needs to be implemented as part of your database design.

debasisdas 580 Posting Genius Featured Poster

go ahead and post your database design here.

debasisdas 580 Posting Genius Featured Poster

You question should have been posted in vb.net section of the forum.

Does your application connects to any database for the list of items ?

debasisdas 580 Posting Genius Featured Poster

Your looks ok (i did not check in IDE )

Are you getting any error from your code ?

Please check the auto generated code in inbuilt wizard in VB 6 .

debasisdas 580 Posting Genius Featured Poster

Can you please clarify a bit. What exactly is the requirement ?

debasisdas 580 Posting Genius Featured Poster

thats the main problem....till you take initiative and start writing and post the code that you are working on, no one here is going to write code for you.

debasisdas 580 Posting Genius Featured Poster

so what is the problem ?

post the code that you aare working on currently to get any help from experts.

NOTE:---You need a procedure not a function.

debasisdas 580 Posting Genius Featured Poster

a simple subtraction of birthdate from sysdate will do the trick for you.

debasisdas 580 Posting Genius Featured Poster

You need to understand the actual requirement before jumping into database design.

debasisdas 580 Posting Genius Featured Poster

I have requested them if possible to increase it to 100 gig or even to terabyte.

Go for Oracle , version 10g supports 8 million terabytes.

I think that would be enough for all your data.

debasisdas 580 Posting Genius Featured Poster

So what is the problem ?

student Id is not the Primay Key in Test_StudentSubjectTrans.

debasisdas 580 Posting Genius Featured Poster

Is there a chance that your SqlCommand or the corresponding SqlConnection is shared and used by multiple threads and one of them might have closed the connection (socket/handle)?

If the application uses one connection from multiple threads then, If one thread closed the connection, and another tried to use it it could generate this error.

You still need to go through the other steps - check the
logs, check the network connectivity, etc.

debasisdas 580 Posting Genius Featured Poster

By knowing more about the project .

debasisdas 580 Posting Genius Featured Poster

What about reading books ?

debasisdas 580 Posting Genius Featured Poster

change style to graphical and then set the icon property.

debasisdas 580 Posting Genius Featured Poster

first of all you need to correct the database design
1. there is no primary key in any of your tables
2. why tables are joined on name and description field ?
3. what are those gur... and NOK.... fields ? (needs to be moved into some new tables)
4. what is th euse of empidno while you already have empid field in the table.

once you fix the above mentioned issues do post back.

debasisdas 580 Posting Genius Featured Poster

Please reframe the question, explaining the exact requirements clearly.

debasisdas 580 Posting Genius Featured Poster

Better prevent and prepare than repent and repair.

debasisdas 580 Posting Genius Featured Poster

If I get a disease, I am to be blamed.

debasisdas 580 Posting Genius Featured Poster

what about creating two tables
1..containing the user information
2..containing the users files information.
and linking both

debasisdas 580 Posting Genius Featured Poster

To avoid unnecessary extra joins which can be avoided to retrieved data.

debasisdas 580 Posting Genius Featured Poster

You need to understand the theory part of distributed database , before trying to understand it.

for example ----try to use a DB link (in oracle) to connect to different database servers and fetch the data using a single SQL.

debasisdas 580 Posting Genius Featured Poster

try this query

CREATE VIEW TopLevelCust AS
SELECT Customer.CustomerNum, Customer.CustomerName, Customer.Street, Customer.Balance, Customer.CreditLimit
FROM Customer
WHERE CreditLimit >= 10000;
debasisdas 580 Posting Genius Featured Poster

You need to use the trigonometric functions SIN and COS for the purpose and use the X,Y co-ordinates of the control for position.

debasisdas 580 Posting Genius Featured Poster

Option 1---- point the application to the latest JVM location.
Option 2---- download the version of SQL Developer that comes bundled with JVM.

debasisdas 580 Posting Genius Featured Poster

everyone can teach me???

but who will pay me ?

debasisdas 580 Posting Genius Featured Poster

Format the dates as per the NLS setting of your target oracle database and try again.

debasisdas 580 Posting Genius Featured Poster

are you able to connect to the database from another system using the same tns file.

debasisdas 580 Posting Genius Featured Poster

You need to use UTL_FILE predefined package for the purpose.

debasisdas 580 Posting Genius Featured Poster

how you have formatted the dates ?

debasisdas 580 Posting Genius Featured Poster

please find the details here.

debasisdas 580 Posting Genius Featured Poster

you can use that

debasisdas 580 Posting Genius Featured Poster

try this if using ADODB for database connection.

conn.begintrans            'ADODB connection object.
conn.execute "your insert statement goes here"
conn.committrans
debasisdas 580 Posting Genius Featured Poster

What is the code that is throwing the mentioned error message ?

debasisdas 580 Posting Genius Featured Poster

all icon files comes with .ICO extension. You may also able to use .CUR (Cursor files) also.

debasisdas 580 Posting Genius Featured Poster

You need to use Common Dialog Control for that functionality.

debasisdas 580 Posting Genius Featured Poster

1. You can use DBMS_JOB or DBMS_SCHEDULER on a Oracle DB to execute a procedure at interval .

Other questions are totally irrelevant without the knowledge of the actual requirement.

debasisdas 580 Posting Genius Featured Poster

What is l_employees ?

It does not have any definition in your code .

debasisdas 580 Posting Genius Featured Poster

try this

#
rs.open "select * from table2 where gender='" & cbgender.list(cbgender.listindex) & "'",conn,adopenkeyset,adlockoptimistic,adcmdtext
#

this code should fire after selection of the combo box not before that

debasisdas 580 Posting Genius Featured Poster

by writing some SQL.

What is the database that you are working on ?

debasisdas 580 Posting Genius Featured Poster

what is the code that you are working on ?

debasisdas 580 Posting Genius Featured Poster

You need to add ORDER BY clause to your SQL.

Select the field on which you need to sort (may be payment _date in your case)

logonchristy commented: nice.. +1
debasisdas 580 Posting Genius Featured Poster

Yes

exactly.

debasisdas 580 Posting Genius Featured Poster

You need to concatenate the fields to display as address and then populate the grid with the address field.

debasisdas 580 Posting Genius Featured Poster

Please find the details here
here and here.

debasisdas 580 Posting Genius Featured Poster

Have you designed the database according to your requirement ?