debasisdas 580 Posting Genius Featured Poster

You need to store the details of the room in database with a flag for empty/occupied.

debasisdas 580 Posting Genius Featured Poster

dates are in which file ,is it in a database ?

debasisdas 580 Posting Genius Featured Poster

How MS Access 2007 is in .MDB format ? It should be .ACCDB.

debasisdas 580 Posting Genius Featured Poster

No.

debasisdas 580 Posting Genius Featured Poster

i think that is what i suggested.

debasisdas 580 Posting Genius Featured Poster

are you sure the database is MS Access 2007 format ?

debasisdas 580 Posting Genius Featured Poster

go and read books

debasisdas 580 Posting Genius Featured Poster

you can't

debasisdas 580 Posting Genius Featured Poster

You can use either crystal report or form.

To display in Vb forms , you need to use Move methods of the ADO.

To display CR , you need to insert page brakes after each record.

debasisdas 580 Posting Genius Featured Poster

before AddNew method.

You need to insert new record only if count is 0 (the user id does not exist), for this user id must be primary key of the table.

debasisdas 580 Posting Genius Featured Poster

This may help.

debasisdas 580 Posting Genius Featured Poster

What button you would like to add ?

debasisdas 580 Posting Genius Featured Poster

From where you generate the .csv ?

Why not directly upload the csv into Oracle ?

debasisdas 580 Posting Genius Featured Poster

And i developed the front end from where i wiil take csv which will insert the data to sql server

then what does this mean ?

debasisdas 580 Posting Genius Featured Poster

You want to insert into sql server or oracle ?

debasisdas 580 Posting Genius Featured Poster

Are you doing any other processing in application startup or only database connection ?

debasisdas 580 Posting Genius Featured Poster

What about storing the voting time in DB and allow the user to vote again only after 24 hrs.

debasisdas 580 Posting Genius Featured Poster

Just try once as suggested in the previous post and check if that works.

debasisdas 580 Posting Genius Featured Poster

From MsSQL export data into a .csv file and use SQL Loader to load the same into Oracle. source and destination table fields should be compatible.

debasisdas 580 Posting Genius Featured Poster

Try to call the .nsu file in a batch file and call the .bat file using shell.

debasisdas 580 Posting Genius Featured Poster

I am not sure if Shell supports that file extension.

debasisdas 580 Posting Genius Featured Poster

New question should go to a new thread.

debasisdas 580 Posting Genius Featured Poster

what failed for you, download(as per your 1st post) or install(as per 2nd).

There is no way of downloading sql- pl/sql.

debasisdas 580 Posting Genius Featured Poster

I do not know about what you are trying to say, please let me know.

debasisdas 580 Posting Genius Featured Poster

Any tool that supports reverse engineering should do that for you.

Try using MS Visio for the purpose.

debasisdas 580 Posting Genius Featured Poster

try this

Form2.WindowsMediaPlayer1.URL = "c:\Users\lapi\Desktop\DOWNLOADED\365.wmv"
debasisdas 580 Posting Genius Featured Poster

Lets see your code that you are working on and fix it.

debasisdas 580 Posting Genius Featured Poster

Oracle works on 1521 and 1522 only, using other ports may not help.

debasisdas 580 Posting Genius Featured Poster

It is not the connection string but he driver that you are using to use the connection string internally makes all the difference.

Which port you are going to open ?

debasisdas 580 Posting Genius Featured Poster

The solution in the link will work if you are using some of the basic controls like a textbox and buttons. Other wise backward compatibility is not supported on most of the applications.

debasisdas 580 Posting Genius Featured Poster

Go through the tutorial properly.

debasisdas 580 Posting Genius Featured Poster

Find more connection stings here.

debasisdas 580 Posting Genius Featured Poster

what is the code that you are working on ?

debasisdas 580 Posting Genius Featured Poster

does you dataset refers to your database (i can't find that in your code) ?

debasisdas 580 Posting Genius Featured Poster

No need to connect the Bar code scanner with Visual Basic. What you need to do is use the device to the system and use it. Bar code scanner work like a simple input device (like keyboard) attached to the system. It simply scans the code and puts the code into any control having focus. No need of any special coding for that. You may need to use some library (usually provided by the vendor of the device) to process the code captured from the device.

debasisdas 580 Posting Genius Featured Poster

You need to look into the property pallet of the control, and refer to the property mentioned in the previous post.

debasisdas 580 Posting Genius Featured Poster

tnsping only working on database server

who told you ?

It will work from each and every system that has oracle client installed and has the TNS set, and can access the server over any network like LAN.

debasisdas 580 Posting Genius Featured Poster

ds refers to what ?

debasisdas 580 Posting Genius Featured Poster

type tnsping <database_name> at command prompt and check the response time.


ex---- tnsping orcl

debasisdas 580 Posting Genius Featured Poster

what about tnsping ?

debasisdas 580 Posting Genius Featured Poster

and how fast is the ping request

try using system / server name instead of IP.

debasisdas 580 Posting Genius Featured Poster

You need to write log for each event or each execution step if required .

debasisdas 580 Posting Genius Featured Poster

Tell me first the database is on the same machine from which you are trying to connect or on another server over LAN ?

debasisdas 580 Posting Genius Featured Poster

How fast you are able to connect to oracle server form any client on the same machine as your application . Is is faster than your application connection time ?

debasisdas 580 Posting Genius Featured Poster

What exactly you mean by startup is very slow ?

debasisdas 580 Posting Genius Featured Poster

You need to contact the vendor of API.

debasisdas 580 Posting Genius Featured Poster

changing the data type of a field is a bad idea.

griswolf commented: Very succinct. And true. +11
debasisdas 580 Posting Genius Featured Poster

How you populate the data grid ?

is it from database ?

debasisdas 580 Posting Genius Featured Poster

That version of the software is de-supported for over a decade now so is not available any more. It was not a freeware.

debasisdas 580 Posting Genius Featured Poster

before inserting any record into the table take a count of records

Select count(*) from users where id = "txtid.Text"

proceed only if the count returns 0