Forum: C# 15 Hours Ago |
| Replies: 5 Views: 192 Thaanks Ryshad your solution worked. |
Forum: C# 3 Days Ago |
| Replies: 0 Views: 174 I have been developing a MySQL database backup and restore appliation in windows forms. This application crates a dump of a mysql database at remote location and imports everything from the dump file... |
Forum: C# 4 Days Ago |
| Replies: 5 Views: 192 man
i can't use crystal reports, i need it in C#. |
Forum: C# 4 Days Ago |
| Replies: 5 Views: 192 Hi
I have a windows application that prints a record in a given page size.
I looked all over but i could not see how did it set the page size.
and now requirement is to print the paper size in... |
Forum: C# 7 Days Ago |
| Replies: 0 Views: 229 Hi everybody
I have been developing windows client application in .net framework 3.5. The system is supposed to copy the remote mysqldb and restore my local mysqldb with all the schema and data... |
Forum: C# 21 Days Ago |
| Replies: 2 Views: 213 |
Forum: C# 22 Days Ago |
| Replies: 2 Views: 213 What is the difference between following declarations:
WebUserService.Service.IUserService userService = new WebUserService.Service.UserService();
WebUserService.Service.UserService userService =... |
Forum: C# 27 Days Ago |
| Replies: 10 Views: 374 Thank you guys, you have been real helpful |
Forum: C# 28 Days Ago |
| Replies: 10 Views: 374 If it is true then i think i am having the problem is that client doesn't have the corresponding version of .net framework installed on his computer, that is why he is not able to run the application... |
Forum: C# 28 Days Ago |
| Replies: 10 Views: 374 Thank you guys, you have been really helpful.
I was thinking the same.
But one thing is for sure that to run applications developed in .net correspondig versions of .net framework must be... |
Forum: C# 29 Days Ago |
| Replies: 10 Views: 374 how can we solve the problem of 32/64 bit platform and if they if have different cpu as X86 or x64, |
Forum: C# 29 Days Ago |
| Replies: 1 Views: 279 Hi
I have developed application in .net framework 3.5 WPF.
Well, you know WPF also requires .net framwork 3.5 SP1.
Now it's works fine on my computer.
But i need to ship it the client.
What... |
Forum: C# 29 Days Ago |
| Replies: 10 Views: 374 Hi
All the coders out there. I need a suggestion.
I have windows xp installed on my computer and i need to develop application for windows vista.
I would prefer to use .net framework 2.0 and... |
Forum: C# 29 Days Ago |
| Replies: 4 Views: 629 There is myWebBrowser.NavigateToString method in which we can pass the string that consist of a web form and a javascript function which submits the form when it loads, for example the code is given... |
Forum: C# 29 Days Ago |
| Replies: 4 Views: 629 I found the solution.
Thank you |
Forum: C# 31 Days Ago |
| Replies: 4 Views: 629 I have a php website which i want to run in C# wpf webbrowser control.
I have a validated a username and password for the site by connecting to it's database using .net.
Now i want the... |
Forum: C# Oct 25th, 2009 |
| Replies: 3 Views: 418 thank you sknake and ddanbe, for your replies.
using NLST gives the names only
the problem is solved. |
Forum: C# Oct 25th, 2009 |
| Replies: 3 Views: 418 Hi
I am developing FTP Clinet application that downloads files from the specified server
i sent the LIST command and server returned a list of file names in following order:
-rw-r--r-- 1... |
Forum: C# Jul 29th, 2009 |
| Replies: 7 Views: 1,399 well, your problem was to load the page in new window.
Which you did successfully.
Did you use the page_load event of new page. Try to get the value from the query string in the page_load event... |
Forum: C# Jul 28th, 2009 |
| Replies: 7 Views: 1,399 Dont forget to enclose your code in code tags like this:
Response.OpenNewDamnPage("DeviceInformation.aspx?arg=" + e.CommandArgument);
this will display as
... |
Forum: C# Jul 28th, 2009 |
| Replies: 7 Views: 1,399 Use this exactly for your case:
protected void button1_Click(object sender, EventArgs e)
{
Response.Write("<script type='text/javascript'>window.open('DeviceInformation.aspx?arg=" +... |
Forum: C# Jul 28th, 2009 |
| Replies: 7 Views: 1,399 Hey
Try This
protected void button1_Click(object sender, EventArgs e)
{
Response.Write("<script... |
Forum: C# Jul 27th, 2009 |
| Replies: 3 Views: 229 Sorry about enclosing tags in code blocks, i was not able to explain it properly:
Here follow this to enclose your code in the code blocks:
String str = "This is a string."; |
Forum: C# Jul 27th, 2009 |
| Replies: 4 Views: 936 Hey here is my fully functional GridView with edit functionality.
To make gridview editable follow the code in GridViewSiteConfiguration_RowEditing method shown below:
If you are confused of... |
Forum: C# Jul 27th, 2009 |
| Replies: 3 Views: 229 Here is your solution:
Just replace your try catch block with my code and it will work:
Here is my code
try
{
using (FileStream fs = new FileStream(file, FileMode.Open,... |
Forum: C# Jul 25th, 2009 |
| Replies: 6 Views: 789 Use the first method i have suggested. I think it should work. |
Forum: C# Jul 24th, 2009 |
| Replies: 6 Views: 789 Something like that.
But you should all these things in Page_Load method of the web page.
you can extract the value of a query string and store in the local string variable lke this:
string... |
Forum: C# Jul 19th, 2009 |
| Replies: 8 Views: 316 ya i got it.
That was pertty basic. I missed to notice this fact and end up wasting hours of time until one of my coworker noticed this and we solved the problem.
Thanks for the time you took... |
Forum: C# Jul 19th, 2009 |
| Replies: 8 Views: 316 Well, Guys and Girls
The problem was not with the code. The problem was something else.
I tried to access the value of the Card Struct directly in the class definition: like this
public class... |
Forum: C# Jul 17th, 2009 |
| Replies: 8 Views: 316 I have a structure named "Card" in Codes.cs file which is located in Codes folder of project. The source code of this structure is as follows:
struct Card
{
//Suit that this card belongs... |
Forum: C# Jul 14th, 2009 |
| Replies: 6 Views: 392 I am so sorry,
I already read that.
But i was not able to figure it out.
Thanks, anyway |
Forum: C# Jul 14th, 2009 |
| Replies: 3 Views: 1,018 Thanks,
I got a whole lot of information from you.
I really appreciate the time and effort you invested to reply.
Thanks Again |
Forum: C# Jul 14th, 2009 |
| Replies: 6 Views: 392 Yes, i did that and i got the kind of accessor i wanted, but abstract keyword appeared on property.
I want to do the same but without the abstract keyword appear on the property name.
If this... |
Forum: C# Jul 14th, 2009 |
| Replies: 6 Views: 392 I have been using .net framework 2.0 |
Forum: C# Jul 14th, 2009 |
| Replies: 6 Views: 392 I have beed using CodeDom to generate codes. I was generating property using CodeMemberProperty. Can anybody tell me how to generate property like this:
get;
instead of
get
{
} |
Forum: C# Jul 14th, 2009 |
| Replies: 4 Views: 305 |
Forum: C# Jul 14th, 2009 |
| Replies: 4 Views: 305 I have beed using CodeDom to generate codes. I was generating property using CodeMemberProperty. Can anybody tell me how to generate property like this:
get;
instead of
get
{
} |
Forum: C# Jul 13th, 2009 |
| Replies: 4 Views: 305 Hi,
is there any difference between accessor written as
get
{
}
get; |
Forum: C# Jul 13th, 2009 |
| Replies: 3 Views: 1,018 Hi,
Recently i have been creating a Generator. That extracts all the names of the tables from the database tables and generates the class file for each of the tables in the database. I have... |