debasisdas 580 Posting Genius Featured Poster

Welcome aboard.

debasisdas 580 Posting Genius Featured Poster

Tell me first which data base you are using.

Is it MySQL or Ms Access ?

debasisdas 580 Posting Genius Featured Poster

This may help.

also try --- Shell "shutdown -s"

debasisdas 580 Posting Genius Featured Poster
debasisdas 580 Posting Genius Featured Poster

you need to pass the parameter for bill_INV_No dynamically using some control.

try this

Private Sub Report_Initialize()
CrystalReport1.SQLQueryString = "Select * from bill_client where bill_INV_No = & val(text_INV_No.text)"
End Sub
debasisdas 580 Posting Genius Featured Poster

You will never find any database online that caters to your exact requirement. So you need to design your own DB. Ans so far as log in concerned create a table to store user_id, password and other required information.You need to check for existence of userid/ password in the database. If it exists log in successful and allow the user to proceed further.

Netcode commented: straight to the point +5
debasisdas 580 Posting Genius Featured Poster

From where you got this error ?

What code , which application, which database ?

debasisdas 580 Posting Genius Featured Poster

You can't do that.

How about handling that using numeric keypad.
use the keys 1,3,7,9

debasisdas 580 Posting Genius Featured Poster

Are you able to connect to oracle using the same tool ?

debasisdas 580 Posting Genius Featured Poster

Which database you plan to use ?

What ever the database is , create a table to store user_id, password and other required information.

debasisdas 580 Posting Genius Featured Poster

You need to create a parametrized function with $artistID as the input.

Then call the function from your application code.

debasisdas 580 Posting Genius Featured Poster

try this (oracle code)

select to_char(sysdate,'ddspth fmmonth yyyysp') from dual

If dates are being stored in oracle DB then you may use this.

debasisdas 580 Posting Genius Featured Poster

What is jtds000001 ?

debasisdas 580 Posting Genius Featured Poster

Actually selecting the table and field names should be handles from front end application and the same need to be passed into back end and the database procedure should process the input parameters to process the job.

debasisdas 580 Posting Genius Featured Poster

Are you storing the login credentials in database ?

debasisdas 580 Posting Genius Featured Poster

i dont have any idea.

I don't have any idea either.

debasisdas 580 Posting Genius Featured Poster

This may help.

debasisdas 580 Posting Genius Featured Poster

you can search for those. Most of them are not free to use.

debasisdas 580 Posting Genius Featured Poster

You need to hook up the height and width property of the text box with that of the containing form. Handle that in the form_resize event.

debasisdas 580 Posting Genius Featured Poster

You need to use some third party tools / components to generate barcode.

debasisdas 580 Posting Genius Featured Poster

How you populate the datagrid ?

what is the code that you are working on ?

debasisdas 580 Posting Genius Featured Poster

Please read more here.

debasisdas 580 Posting Genius Featured Poster

what is the application ?

debasisdas 580 Posting Genius Featured Poster

What exactly is the error message ?

Why the table name is within parenthesis ?

NOTE:--Do not use dataset as name of an object, it is a predefined key word..

Netcode commented: error stated -1
kvprajapati commented: Erase -ve rep +15
debasisdas 580 Posting Genius Featured Poster

That will depend how the value is stored.

Sql Server and MySql may behave differently to the exact same piece of code, after all they are two different databases from two different vendors.

debasisdas 580 Posting Genius Featured Poster

check for date format.

debasisdas 580 Posting Genius Featured Poster

Negative number in a timers interval property does not makes any sense.

debasisdas 580 Posting Genius Featured Poster

Please read more here and here.

debasisdas 580 Posting Genius Featured Poster

What exactly you are trying to print ?

debasisdas 580 Posting Genius Featured Poster

What exactly you are trying to print ? Is it a report ?

debasisdas 580 Posting Genius Featured Poster

You need to handle that part in your code.

Lets see your code.

debasisdas 580 Posting Genius Featured Poster

Spread the word, tell your friends.

debasisdas 580 Posting Genius Featured Poster

C # .NET with SqlServer is good option. Also try php with mysql.

debasisdas 580 Posting Genius Featured Poster

the project is on its way.

AndreRet commented: lol +13
debasisdas 580 Posting Genius Featured Poster

what is the source of data.

debasisdas 580 Posting Genius Featured Poster

1. try to print the sql before executing
2. try to execute the sql at backend and check if you are getting any error.

debasisdas 580 Posting Genius Featured Poster

your problem seem to be an application issue than database.

I dont know where to start.:sad:

design the database first.

debasisdas 580 Posting Genius Featured Poster

creates password for what ?

debasisdas 580 Posting Genius Featured Poster

4. How does it happen that people here misunderstand each other frequently?
There.

We do it frequently for some serious fun and to confuse others.

debasisdas 580 Posting Genius Featured Poster

You need to read this.

debasisdas 580 Posting Genius Featured Poster

I think his main worry is -- Google Toolbar not compatible with Firefox 5.

debasisdas 580 Posting Genius Featured Poster

for what ?

debasisdas 580 Posting Genius Featured Poster

Have you compiled the package specifications before trying to compile the package body ?

debasisdas 580 Posting Genius Featured Poster

i think that code is for vb6 not for vb.net.. that's why its not accept hte other function in vb.net ...

That code is in .net only.

Looking the syntax itself you should be able to know what language it is in.

debasisdas 580 Posting Genius Featured Poster

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

debasisdas 580 Posting Genius Featured Poster

It is highly recommended for you to read this.

debasisdas 580 Posting Genius Featured Poster

can you give me some search engine code.

No, You have to show some effort for that first.

kvprajapati commented: :) +15
debasisdas 580 Posting Genius Featured Poster

I know only one language SQL, and people still refer me as Senior Programmer. :cool:

Anuradha Mandal commented: Right. +0
debasisdas 580 Posting Genius Featured Poster

That is not practical if using almost 50 or more text boxes in scenarios like this.

Simply try this

Private Sub ValidateControls()
        Dim cControl As Control
        For Each cControl InMe.Controls
            If (TypeOf cControl Is TextBox) Then
                'check for what ever you want to check
            End If
        Next cControl
    End Sub
adam_k commented: Agree, but only if you add a space after in +6
debasisdas 580 Posting Genius Featured Poster

Your code is horrible.
Columns names are qualified by table name not the reverse as mentioned by you in the SQL.