Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~5K People Reached

10 Posted Topics

Member Avatar for Poojasrivastava

hi..actually i am developing a web application wherein i need to print barcodes at client side. i have the PCL file that would print the barcode but the problem lies in printing at the client side and that too without opening the print dialog box. can somebody help me with …

Member Avatar for pauldani
0
4K
Member Avatar for Poojasrivastava

hi.. well i have a gridview on a page and when the user selects the gridview row then that gridview row should be redirected to a new page. this new page has another gridview which i need to populate with the selected gridview from previous page. can somebody help me …

Member Avatar for missbeginner
0
103
Member Avatar for sivak
Member Avatar for kvprajapati
0
109
Member Avatar for Poojasrivastava

[ICODE]<html> <head> <title></title> </head> <body> <script type="text/javascript"> function read() { var myApp = new ActiveXObject("Excel.Application"); if (myApp != null) { myApp.visible = true; myApp.workbooks.open("C:\\Book2.xls"); } } </script> <button onclick="read();">READ</button> </body> </html> [/ICODE]

Member Avatar for prasanna201
0
109
Member Avatar for hesham_51

i did the same thing using javascript..may be that helps you.. here is the javascript code: [code] <html> <head> <title></title> </head> <body> <script type="text/javascript"> function read() { var myApp = new ActiveXObject("Excel.Application"); if (myApp != null) { myApp.visible = true; myApp.workbooks.open("C:\\Book2.xls"); } } </script> <button onclick="read();">READ</button> </body> </html> [/code]

Member Avatar for Poojasrivastava
0
457
Member Avatar for m-hrt

try this.. [code]select t.id,t.from,t.to,t.date,t.fare,s.seat,u.first_name,u.last_name from trip t,seat s,user_information u where t.id=s.id[/code]

Member Avatar for m-hrt
0
178
Member Avatar for bharanidharanit

you can save the role in a session variable and accordingly show the respective pages.. eg. [code=asp.net]if(txtusername.Text=="ADMIN") { show desired pages } else if(txtusername.Text=="USER") { show desired pages }[/code]

Member Avatar for Poojasrivastava
0
104
Member Avatar for Poojasrivastava

hi , actually i am developing a web application in asp.net using c#. i have come across a requirement to read a excel file without going to the server . i need to use javascript for the same. so i need help on javascript function to read from excel file. …

0
115
Member Avatar for sadiyarani
Re: hi

hi..well first you need to create a table in database to be able to maintain the users who can log in... in your application connect to the database and try the following code at your Login button.. OleDbConnection con = new OleDbConnection("Provider=Microsoft.Jet.OLEDb.4.0; Data Source=F:\\QMGT.mdb;"); OleDbCommand com = new OleDbCommand("select UserId,Password …

Member Avatar for serkan sendur
0
129
Member Avatar for mostafanageeb

[QUOTE=mostafanageeb;858489]Please I am now making a project using C# and I want to connect to a database how to do this using visual studio 6? Thanks[/QUOTE] hi.. you can make use of the connectionstring as shown below: string str = "Data Source=*name of your SQL server*;Initial Catalog=*your database name*;Integrated Security=True"; …

Member Avatar for Poojasrivastava
0
110

The End.