debasisdas 580 Posting Genius Featured Poster

try log in as

sys/ as sysdba
password----change_on_install

If you are planning to reinstall better use any advance version .
Current version for windows is 11.1

debasisdas 580 Posting Genius Featured Poster

try something like this

rs.open "select count(student_id) from students where student_id=" & std_id

if it returns >0 then proceed further.

debasisdas 580 Posting Genius Featured Poster

Try to use DELETESETTINGS to delete any entry from registry.

Are you sure a non-existing application is still running ?

debasisdas 580 Posting Genius Featured Poster

do for the device that has inbuilt file locking system.

debasisdas 580 Posting Genius Featured Poster

as already discussed you just need to use that as a plug play device like any keyboard.

debasisdas 580 Posting Genius Featured Poster

what playable ?

all mp3 files are playable , if your usb drive is a player it will definately play the file.

debasisdas 580 Posting Genius Featured Poster

are you talking about any application developed in VB 6.0 ?

debasisdas 580 Posting Genius Featured Poster

do you have the password for sys or system account ?

debasisdas 580 Posting Genius Featured Poster

do u know how to open a recordset in code by using SQL ?

debasisdas 580 Posting Genius Featured Poster

there are number of tools for the purpose. Just use google with proper keyword for effective search.

debasisdas 580 Posting Genius Featured Poster

that has nothing to do with database connection . check your other code.

debasisdas 580 Posting Genius Featured Poster

you need to open the recordset by passing the value at runtime dynamically. Use count to find the number of records in the recordset. If it is >0 then process further else display your message box

debasisdas 580 Posting Genius Featured Poster

You don't have the user name password ?

debasisdas 580 Posting Genius Featured Poster

All things changes with the pass of the time but true love expands in the heart of the faithful.

iamthwee commented: i love the way you look at me +0
debasisdas 580 Posting Genius Featured Poster

Are you getting something like SQL WORKSHEET under application development ?

debasisdas 580 Posting Genius Featured Poster

No

Have you ever shop lifted ?

debasisdas 580 Posting Genius Featured Poster

unknown--->ignorance

debasisdas 580 Posting Genius Featured Poster

skid

debasisdas 580 Posting Genius Featured Poster

Just try adding a GROUP BY statement to your existing query.

debasisdas 580 Posting Genius Featured Poster

Sorry, we do not solve home works /assignments here.

The error message is self explanatory.

debasisdas 580 Posting Genius Featured Poster

Being lonely is not necessarily the same as being alone.

debasisdas 580 Posting Genius Featured Poster

Try this sample code for taking backup and restore of access database

Dim DBTempSource As Database
Dim DBTempDestination As Database

Dim RecTempSource As Recordset
Dim RecTempDestination As Recordset

Sub MBackup()

Set FSO = CreateObject("Scripting.FileSystemObject")
On Error GoTo Errors
If OptBackup Then
    TxtRemarks = "Backup Started at " & Time
    TxtRemarks = TxtRemarks & vbCrLf & "Closing Connection ...!"
    GCnnGeneral.Close
    TxtRemarks = TxtRemarks & vbCrLf & "Checking Destination ...!"
    If GFileExists(TxtDestination) Then
        Kill TxtDestination
    End If
    
    TxtRemarks = TxtRemarks & vbCrLf & "Compacting Source ..."
    DBEngine.CompactDatabase TxtSource, TxtDestination, , , ";pwd=Debasis"
    TxtRemarks = TxtRemarks & vbCrLf & "Destination Created ...!"
    TxtRemarks = TxtRemarks & vbCrLf & "Connecting Database ...!"
    With GCnnGeneral
       .Provider = "Microsoft.Jet.OLEDB.4.0"
       .Properties("Jet OLEDB:Database Password") = "Debasis"
       .Mode = adModeReadWrite
       .Open App.Path & "\" & Trim(GFileName) & ".MDB"
    End With
    'GFileName = Trim(LstDatabase.Text)
    TxtRemarks = TxtRemarks & vbCrLf & "Backup Created at " & Time
    MsgBox "Backup Created."
    TxtSource = GEmptyStr
    TxtDestination = GEmptyStr
ElseIf OptRestore Then
    'GCnnAccts.Close
    TxtRemarks = "Restoring Data Started at " & Time
    GCnnGeneral.Close
    TxtRemarks = TxtRemarks & vbCrLf & "Connection Closed ...!"
    Kill TxtDestination
    TxtRemarks = TxtRemarks & vbCrLf & "Destination Checked ...!"
    Call FSO.CopyFile(TxtSource, TxtDestination, True)
    TxtRemarks = TxtRemarks & vbCrLf & "Data Restored ...!"
    With GCnnGeneral
       .Provider = "Microsoft.Jet.OLEDB.4.0"
       .Properties("Jet OLEDB:Database Password") = "Debasis"
       .Mode = adModeReadWrite
       .Open App.Path & "\" & Trim(GFileName) & ".MDB"
    End With
    TxtRemarks = TxtRemarks & vbCrLf & "Connection Complete ...!"
    TxtRemarks = TxtRemarks & vbCrLf & "Data Restored at " & Time
    MsgBox "Data Restored." …
debasisdas 580 Posting Genius Featured Poster

I think you are trying to redefine SQL with your own bunch of syntax. What are those WHILE and WHEN in your code ?

debasisdas 580 Posting Genius Featured Poster

What happens when you click on the parent node . Does it not open the child nodes with its icon ?

debasisdas 580 Posting Genius Featured Poster

Most of the barcode scanners are plug and play devices and you do not need any extra driver to install. If you need one contact the vendor whose scanner/device you are using.

debasisdas 580 Posting Genius Featured Poster

you should get correct output with your code. there is nothing wrong with it.

debasisdas 580 Posting Genius Featured Poster

as the name is icon it needs to be an icon (*.ico) or a cursor (*.cur) file. The size/dimension of the file should be 32 x 32 pixels.

debasisdas 580 Posting Genius Featured Poster

You need to pass unique values for the scheduled_num field.

schedule_num should be the PRIMARY KEY and semester should be having an UNIQUE constraint.

Try to use the insert statement in a procedure and use a SEQUENCE to generate the schedule_num.

debasisdas 580 Posting Genius Featured Poster

what you get when you try the following

select purchase,sales,purchase-sales as balance from table_name
debasisdas 580 Posting Genius Featured Poster

The winner’s wish is the loser’s command.

debasisdas 580 Posting Genius Featured Poster

Love, a lovable insanity.

debasisdas 580 Posting Genius Featured Poster

if you use timer at a particular time interval that will use a lot of system resources irrespective of any database changes.

Better use a refresh button , so that the use can get the updated list at their will.

debasisdas 580 Posting Genius Featured Poster

then download some ebooks and go through that.

debasisdas 580 Posting Genius Featured Poster

If their smile warms your heart, embrace eases you, and kiss distills all wrong done to man, then you know that you have found true love.

debasisdas 580 Posting Genius Featured Poster

you want to build the database or the search functionality using any front end tool ?

debasisdas 580 Posting Genius Featured Poster

True love is friendship caught on fire.

debasisdas 580 Posting Genius Featured Poster

You can't disable the windows key.

debasisdas 580 Posting Genius Featured Poster

It is always better to store the DB file in the application path and set the property of the control using code in the form load event.

debasisdas 580 Posting Genius Featured Poster

You cannot plan the future by the past.

debasisdas 580 Posting Genius Featured Poster

what the user is supposed to do after s/he logs in and gets the list of complaints.

If you simply want to display use any grid control for the purpose.

debasisdas 580 Posting Genius Featured Poster

Then no need to copy the tables at all. simply open the recordset from access table and insert the same to mysql table using another connection.

debasisdas 580 Posting Genius Featured Poster

You just need to store all the required file in specified folders before creating the setup and specify the same in the code as well. Next create the EXE from the file menu and then use the packager and deployment wizard to create the set up

debasisdas 580 Posting Genius Featured Poster

I Love my God.
My Love is my God.

debasisdas 580 Posting Genius Featured Poster

What exactly the existing product does .

You need to post more details.

debasisdas 580 Posting Genius Featured Poster

you need to use some 3rd party tool for the purpose.

debasisdas 580 Posting Genius Featured Poster

what exactly is a inbox that you are trying to create ?

debasisdas 580 Posting Genius Featured Poster

Never take failure to your heart and never take success to your brain.

debasisdas 580 Posting Genius Featured Poster

Weight your words before you speak them out.
They are the pearls of your life, Don't throw them; don't loose them for nothing.

debasisdas 580 Posting Genius Featured Poster

Let us never negotiate out of fear; but let us never fear to negotiate.

debasisdas 580 Posting Genius Featured Poster

Use the following if you want the same in PL/SQL code.

BEGIN
DBMS_OUTPUT.PUT_LINE(UTL_INADDR.GET_HOST_NAME); -- Local machine/host name
DBMS_OUTPUT.PUT_LINE(UTL_INADDR.GET_HOST_ADDRESS); -- IP address of host
END;

The above code works oracle version 10(g) onwards