Search Results

Showing results 1 to 40 of 55
Search took 0.02 seconds.
Search: Posts Made By: S2009 ; Forum: C# and child forums
Forum: C# Sep 27th, 2009
Replies: 1
Views: 382
Posted By S2009
Hi,

I have created a Report using Crystal Report(Visual Studio 2005 and .NET Framework 2.0). In the Report Header section I have added a TextBox control to display header for the report. But when...
Forum: C# Sep 24th, 2009
Replies: 1
Views: 340
Posted By S2009
Hi all,

I want to create the report in my application using the reportViewer control.

I have added the ReportViewer control to WindowsForm from the toolbox. From the smart tag I, I selected the...
Forum: C# Sep 23rd, 2009
Replies: 1
Views: 312
Posted By S2009
Hi all,

I have created a project using Visual Studio 2008 and .NET Framework 2.0.

Now I want to open it in Visual Studio 2005 (.NET Framework 2.0).
When I try to open the solution in Visual...
Forum: C# Sep 23rd, 2009
Replies: 3
Views: 782
Posted By S2009
Hi all,
I am creating an application for Library Management Systems.
I want to disable the close button initially and enable it once the user clicks on the menu item logoff.

Is there any way I...
Forum: C# Sep 15th, 2009
Replies: 3
Views: 1,078
Posted By S2009
Thanks for your prompt reply.

I have a MDI form that will be displayed after the user logs in successfully. and the menu control is used to open the changepassword form. When executing the program...
Forum: C# Sep 15th, 2009
Replies: 3
Views: 1,078
Posted By S2009
Hi all,

I have a login form and ChangePassword form. I want to retrieve the value of username entered in the Login form at the time of logging.

I have created a property named as RetUserName as...
Forum: C# Aug 3rd, 2009
Replies: 7
Views: 866
Posted By S2009
Forum: C# Jul 30th, 2009
Replies: 7
Views: 866
Posted By S2009
Thanks for your reply.

Then should I copy the database separately to another system.

For your information my system i s not connected through network.

Please reply then how should I copy the...
Forum: C# Jul 29th, 2009
Replies: 2
Views: 436
Posted By S2009
You should use the Timer control.

Change the properties of the timer as follows
Property Value
Interval 1000
Enabled ...
Forum: C# Jul 29th, 2009
Replies: 7
Views: 866
Posted By S2009
Thanks a lot for your reply!

I have to install the application to some other system and there is no SQL SERVER installed in that system. Then how could I add the database in my deployment process...
Forum: C# Jul 29th, 2009
Replies: 15
Views: 794
Posted By S2009
Yes Library is just the name of a database.

You can replace library with any of your database name.

It is not a System defined database.
Forum: C# Jul 29th, 2009
Replies: 15
Views: 794
Posted By S2009
connectionString="Data Source=.;Initial Catalog=Library;Integrated Security=True"

I think this should help you out. Because . here refers to the current system.
Forum: C# Jul 29th, 2009
Replies: 15
Views: 794
Posted By S2009
I think in the connection string if you give like this it will work:

DataSource = .

Since .(DOT) refers to the current system.
Forum: C# Jul 29th, 2009
Replies: 6
Views: 425
Posted By S2009
Hi

To create HELP FILe for your project you can use HTML HELP WORKSHOP and include this file to your project by means of HELP NAVIGATOR control in Visual Studio.Net.

Hope my post is helpful to...
Forum: C# Jul 29th, 2009
Replies: 7
Views: 866
Posted By S2009
Hi

I have created a project using C# and SQL SERVER 2005.

I want to deploy the project so that I can create .msi file.

Can anyone help me with the steps I should follow to create the setup...
Forum: C# Jul 25th, 2009
Replies: 4
Views: 337
Posted By S2009
I want to display a message box when any person clicks on the menu item which is not enabled I have tried the following coding but it is not displaying the message box.

Coding:

private void...
Forum: C# Jul 13th, 2009
Replies: 17
Views: 498
Posted By S2009
Thanks for reply!

Sorry to ask you so many questions
Forum: C# Jul 13th, 2009
Replies: 17
Views: 498
Posted By S2009
Can you please tell What is the Use of Using block?

using (ColorDialog cd = new ColorDialog())
Forum: C# Jul 13th, 2009
Replies: 17
Views: 498
Posted By S2009
Forum: C# Jul 13th, 2009
Replies: 17
Views: 498
Posted By S2009
Thanks for your prompt reply!

I am able to open the file now and your code performs the task in the same way as I desired.

Thanks for all your help.

Since I am a beginner I dont understand...
Forum: C# Jul 13th, 2009
Replies: 17
Views: 498
Posted By S2009
Thanks for your reply.

When I right click Solution Explorer and select Build I am getting the following error:

Error 1 Unable to create a manifest resource name for "Form1.resx". Could not find...
Forum: C# Jul 13th, 2009
Replies: 17
Views: 498
Posted By S2009
Thanks for attaching the file. But I am not able to open the .sln or C# Project file I am getting the error as Forms missing.

Can you just post the relevant coding used to perform this task?
...
Forum: C# Jul 12th, 2009
Replies: 17
Views: 498
Posted By S2009
I have added the line in the button1_click() event after assigning the color to the variable bkc.
Forum: C# Jul 12th, 2009
Replies: 17
Views: 498
Posted By S2009
Thanks for your reply.

I have done the steps given by you.

When I execute the application, select the color and press OK button I am getting the RunTime Exception:
...
Forum: C# Jul 12th, 2009
Replies: 17
Views: 498
Posted By S2009
Hi all,

I am developing a windows application.

I have 3 forms:

I want to change the backcolor of all the 3 forms to the color selected by the user.

I have used the following code I am...
Forum: C# Jul 10th, 2009
Replies: 4
Views: 316
Posted By S2009
Thank you very much.

But still even after knowing the Pros and Cons I m not able to decide which should I choose?

Since this is the first Application I am creating I am very much confused..
...
Forum: C# Jul 10th, 2009
Replies: 4
Views: 316
Posted By S2009
Thanks for your prompt reply!

Is exporting in Excel and PDF format possible for both cases?

Can I take a print out in both cases?
Forum: C# Jul 10th, 2009
Replies: 11
Views: 698
Posted By S2009
Try the following code in the textbox_Keypress Event!

if(((e.KeyChar < '0' || e.KeyChar >'9'))&&(e.KeyChar!='\b'))
{
MessageBox.Show("Please Enter Numbers only");
...
Forum: C# Jul 10th, 2009
Replies: 4
Views: 316
Posted By S2009
Hi all
I am creating a windows application.
I am now concentrating on the Reporting Module of my Application.

I have two ideas to do this task.

Either through Crystal Reports or using the...
Forum: C# Jul 10th, 2009
Replies: 2
Views: 357
Posted By S2009
Hi all,

I am developing a windows application.

I have 3 forms:

I want to change the backcolor of all the 3 forms to the color selected by the user.

I have written the following code to do...
Forum: C# Jul 9th, 2009
Replies: 7
Views: 1,495
Posted By S2009
Hi

I am creating a windows application.

I have a button as backup.

When the user clicks this button,he/she should be able to take backup of the database.

I am a beginner. I dont have any...
Forum: C# Jul 9th, 2009
Replies: 1
Views: 476
Posted By S2009
Hi

I want to store value from a row into a variable.

I have used the following coding but it is not working properly.

It is generating the following error:

Index was outside the bounds of...
Forum: C# Jul 9th, 2009
Replies: 4
Views: 1,754
Posted By S2009
Thanks a lot for your prompt reply.

Now it is working properly.
Forum: C# Jul 9th, 2009
Replies: 4
Views: 1,754
Posted By S2009
Hi

I am developing a windows application.

For your infomation

FRONT END : C# (VISUAL STUDIO 2008)
BACKEND : SQL SERVER 2008

In a single form I have an option for add and remove books....
Forum: C# Jul 9th, 2009
Replies: 3
Views: 373
Posted By S2009
Thanks for your reply.

But still it is counting sundays.

What should I do?
Forum: C# Jul 9th, 2009
Replies: 3
Views: 373
Posted By S2009
Hi

I am developing an application (using C# and SQL SERVER 2005) for calculating fine in an library.

The fine calculated should not included Sundays.

I have used the following code to...
Forum: C# Jul 7th, 2009
Replies: 2
Views: 537
Posted By S2009
Hi all,

I am creating a Library Management System.

I have used the timestamp to calculate the Date Difference and with the help of date difference I am calculating the Fine also.

Now this...
Forum: C# Jul 6th, 2009
Replies: 3
Views: 416
Posted By S2009
Hi all,

How can I change the BACKGROUND color of the MDI FORM in C#?

I changed it using the background color property but the color is not changed.

What should I do to perform this task?
...
Forum: C# Jul 3rd, 2009
Replies: 2
Views: 968
Posted By S2009
Ok

thanks for your prompt reply.

I have achieved the desired result.
Forum: C# Jul 3rd, 2009
Replies: 2
Views: 968
Posted By S2009
Hi All,

I have created two forms in my Windows Application.

One Form acts as a Form and the other form acts as a MODAL DIALOG BOX.

The Form Dialog Box contains a button and One textBox....
Showing results 1 to 40 of 55

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC