Forum: C# Sep 22nd, 2009 |
| Replies: 10 Views: 592 Excellent, hope it helps! |
Forum: C# Sep 22nd, 2009 |
| Replies: 10 Views: 592 Hi Serkan Sendur, I hope you are well. Reading data from a .msi file is not something I have done myself before but I did some research for you and came up with this :
... |
Forum: C# Sep 10th, 2009 |
| Replies: 16 Views: 627 |
Forum: C# Sep 10th, 2009 |
| Replies: 16 Views: 627 You are trying to call a constructor that doesn't exist. Try changing:
matrix[i - 1, j] = new bool(temp);
to
matrix[i - 1, j] = //True or false |
Forum: C# Sep 10th, 2009 |
| Replies: 16 Views: 627 What is the classname that is listed in the error message?
is the error message number CS0143? |
Forum: C# Sep 10th, 2009 |
| Replies: 16 Views: 627 Can you post the code where you instantiate an object of Field class? |
Forum: C# Jun 12th, 2008 |
| Replies: 1 Views: 1,939 Hi there Ochien and welcome to DaniWeb :) Here is a very good tutorial on how to build a radio application with C#. If you are new to C# this is going to be quite a challenge, but I believe the link... |
Forum: C# Jun 3rd, 2008 |
| Replies: 1 Views: 1,156 Hi there Jacobpauls and welcome to DaniWeb :). To solve your problem try right clicking the icon of your project (in solution browser) and select add reference. Then select System.Runtime.Remoting.... |
Forum: C# May 27th, 2008 |
| Replies: 6 Views: 4,546 Hi there timk25 and welcome to DaniWeb!. First try changing the connection statement from:
String conn_String =
"server=localhost;database=contacts_db;uid=sa;pwd=sqlsecret";
To
String... |
Forum: C# May 23rd, 2008 |
| Replies: 3 Views: 1,066 You are welcome :) glad the link was useful! |
Forum: C# May 23rd, 2008 |
| Replies: 6 Views: 3,543 Did this solve your issue? If it did could you mark the thread as solved please so that others know it is solved!:) |
Forum: C# May 23rd, 2008 |
| Replies: 3 Views: 1,066 Hi again knoweldgelover, this link may help you out somewhat:
Hope this helps |
Forum: C# May 21st, 2008 |
| Replies: 3 Views: 1,026 Hi there msspitful and welcome to DaniWeb. I had to search on google for this, but I found your answer here:
http://bytes.com/forum/thread242168.html
I hope this helps! Please mark your thread... |
Forum: C# May 21st, 2008 |
| Replies: 4 Views: 1,184 When you say refresh database instantly - do you mean you would like a button that grabs the database and displays it in the gridview? |
Forum: C# May 20th, 2008 |
| Replies: 6 Views: 3,543 Ahhh Codeproject - love that site Jerry! I think (not tested it) this will work:
OpenFileDialog op = new OpenFileDialog();
op.ShowDialog();
Hope that helps! Just put that in the event handler of... |
Forum: C# May 20th, 2008 |
| Replies: 4 Views: 1,184 How are you presenting the data from the database? I.E in a gridview or what? |
Forum: C# May 20th, 2008 |
| Replies: 2 Views: 789 Hi there Jessica_C, are you trying to group radio buttons together? This link provides a tutorial on how to add radiobuttons to a form:
What you need to do is group the buttons. This is... |
Forum: C# May 18th, 2008 |
| Replies: 5 Views: 1,374 Oh I see, Ok Jx_man I see what you mean there :) |
Forum: C# May 18th, 2008 |
| Replies: 5 Views: 1,374 Oh I didn't realise the OP meant in code! lol, oops! my mistake! |
Forum: C# May 16th, 2008 |
| Replies: 5 Views: 1,374 Hi there, I found this article which will answer your question.
http://support.microsoft.com/kb/318785
The upshot is that the easiest way to determine which versions of the .NET Framework you... |
Forum: C# May 15th, 2008 |
| Replies: 5 Views: 1,969 |
Forum: C# May 14th, 2008 |
| Replies: 3 Views: 3,041 So what you need to do is read an XML file, and grab its contents ?
There you go, hope this helps ! |
Forum: C# May 14th, 2008 |
| Replies: 5 Views: 1,969 Where have you cast the variable Y? |
Forum: C# May 14th, 2008 |
| Replies: 5 Views: 1,969 Hi there Traicey :)
Give this a try:
string x = "";
int parsex = Int32.Parse(x);
Or
string x = ""; |
Forum: C# May 13th, 2008 |
| Replies: 8 Views: 3,158 Could I enquire as to why you would want to do this? Give this a try:
I am not sure if this will work but give it a try - let me know how it goes! |
Forum: C# May 12th, 2008 |
| Replies: 3 Views: 875 Good advice again there Jerry, I fully recommend "head first c#" it is a very well written book and packed with problem solving techniques and walkthroughs. You also get to build a simple graphical... |
Forum: C# May 12th, 2008 |
| Replies: 4 Views: 6,185 |
Forum: C# May 8th, 2008 |
| Replies: 3 Views: 1,961 Hi there Yaninea, and welcome to DaniWeb. I believe a valuable member has already provided a great solution to this problem a month back. Check this out :
... |
Forum: C# May 8th, 2008 |
| Replies: 2 Views: 3,760 Hi there kbalba, here is a link you may find interesting:
http://www.c-sharpcorner.com/UploadFile/ssrinivas/SpeeechRecognitionusingCSharp11222005054918AM/SpeeechRecognitionusingCSharp.aspx
hope... |
Forum: C# May 8th, 2008 |
| Replies: 5 Views: 2,886 Do you mean update the backend database when data in the grid is changed? |
Forum: C# May 8th, 2008 |
| Replies: 2 Views: 1,376 Here is an approach to download a file:
string URL = "your_url";
FileInfo fileInfo = new FileInfo(URL);
if (fileInfo.Exists)
{
Response.Clear();
Response.AddHeader("Content-Disposition",... |
Forum: C# May 8th, 2008 |
| Replies: 2 Views: 1,376 Here is one approach:
public void btnDownload_Click(object source, EventArgs e)
{
Response.Redirect("url_to_the_file_you_want");
}
Although this will OPEN a file. |
Forum: C# May 1st, 2008 |
| Replies: 3 Views: 4,313 No worries, glad to help! |
Forum: C# May 1st, 2008 |
| Replies: 3 Views: 1,798 Hi, this may help you:
Please do not ask me to explain I have had very little experience with this myself lol |
Forum: C# May 1st, 2008 |
| Replies: 3 Views: 4,313 Hi there, this article may help..... |
Forum: C# Apr 30th, 2008 |
| Replies: 7 Views: 707 lol JerryShaw, I'll take a few of those!! |
Forum: C# Apr 30th, 2008 |
| Replies: 7 Views: 707 What is it that you need help with ? We cannot help if you do not tell us, development is a broad subject... |
Forum: C# Apr 28th, 2008 |
| Replies: 3 Views: 886 You could try this:
Console.ReadKey(true);
Console.Write("*");
Hope that helps! |
Forum: C# Apr 28th, 2008 |
| Replies: 3 Views: 886 If you are using visual studio, you select the appropriate textbox and under PasswordChar property of the password text box chagne the value to '*'. Hope this helps |
Forum: C# Apr 25th, 2008 |
| Replies: 1 Views: 491 Hi there, by 'alter' do you mean commit any changes back to the (I assume) SQL database? If so post your code to fill the datagrid and I will try and help you out. |