4,588 Topics
| |
Hello, I am new to html and c# my life been in engineering. I am trying to create a simple login page, I have used html for the page structure and I am using c# for the login authentication. I have a table database with MS Access but I can’t … | |
hi.... did anyone know how to run vbscripts in C#?if yes.........please do reply me.... thankyou regards Aruna | |
I need to delete a shortcut but the code I wrote will not work. [code=C#]System.IO.File.Delete("C:/WINDOWS/Example.Ink"); // This returns no errors at all, just nothing happens.[/code] Does anyone have an idea on an alternate way to delete a shortcut? Any help is appreciated =D | |
Can someone please break down a simple statement for a relative newbie? [CODE]Thread firstThread = new Thread (new ThreadStart (Method1));[/CODE] In other words, what is happening at each stage here: [CODE]new ThreadStart (Method1)[/CODE] [CODE]new Thread (new ThreadStart (Method1))[/CODE] [CODE]Thread firstThread = new Thread (new ThreadStart (Method1));[/CODE] Thanks for any help … | |
did anybody know.....how to restore our system to a already created restore point in C# programming? I am studying 3rd B-tech and this is my project...please do help re... Thanks in advance aruna | |
Help word automation with c# urgent please Posted: 07-21-2009 02:29 PM Hello I'm trying to create a doc from a template I can access bookmarks an everything is ok except when there is a bookmark inside a textbox in the template, I can't acces that nor the bookmarks in the … | |
Hi, My name is Oleg and I'm 1,5-year experienced C# developer working in Danish outsourcing IT company. I'm searching for freelance work here. If interested with my CV, please write to me, Best regards. | |
Hello! I have a liitle problem with my programm. I need to create programm that is making a AutoCAD drawing from a windows form. I Alrady got the everything done, but have one small problem: I can send command to autocad only once per my programm is running, if i … | |
Hello friends, I am trying to make a program in which there would be a text file which would contain a certain piece of information.Now the user would ask questions and the program would answer the question using the information given in the text file. This is basically related to … | |
| |
namespace first { public class index { int count; public index() { count = 0; } public static index operator++(index x) { x.count++; return count; } } class Program { static void Main(string[] args) { index i = new index(); i++; Console.WriteLine(i); } } } when i am typing this … | |
hi I know C++ & I can write almost every console program with C++. How long will it take me to learn C#? | |
Hi friends, i am buliding my menu in the master pager like below in C# and asp.net 2.0 and iam get these menu from database dynamically [code] private void GenerateMenuItems() { ContentManagement.Menu[] menuList = (ContentManagement.Menu[])Session["MenuItems"]; if (menuList != null) { Table menuTable = new Table(); menuTable.Width = Unit.Percentage(100); menuTable.BorderStyle = … | |
Hi. I'm new to c# and have ran into a problem, I am using the following code to generate textboxes within a panel. [code] private void button1_Click(object sender, EventArgs e) { AddFields(); } private void AddFields() { if (textBoxIndex != 10) { TextBox field = new TextBox(); field.Name = "field" … | |
Hi, Does anyone no if it is possible to remove controls like a textbox during runtime? | |
Help I need a quicker way to do this, its a combobox that assigns a number to whatevers selected and it takes up to much room and looks messy. [code] private void comboBox19_SelectedIndexChanged(object sender, EventArgs e) { if (comboBox19.Items[comboBox19.SelectedIndex].ToString() == "Clear Float") { glassType10 = 200; } else if (comboBox19.Items[comboBox19.SelectedIndex].ToString() … | |
Hi, Does anybody know how I can create a bunch of textboxes and buttons without having to write each one individually e.g [code] Button button1 = new Button; button1.Location = new Point(1,20); this.Controls.Add(button1); [/code] And then having to go onto the next one e.g button2. Please help | |
Hi, I am creating a program on behalf of my business and have become stuck in one particular matter. I am fairly new to C#. The application consists of the user entering data into a mixture of comboBoxes and textboxes, after the user has entered the data he clicks the … | |
Hi, I am creating a program on behalf of my company and am stuck in one particular matter. I am fairly new to C#. At the moment I am creating a textbox, label and a button at the push of a diffrent button with the following code. [code] TextBox textBox6 … | |
Hi All, I design a website using asp.net in C#. I have Datalist control in my default.aspx page with <asp:SqlDataSource> connect to SQL Server 2005 express edition. In this control, I display alot of thumbnail images (more than 200 images). How can datalist control allow paging? (such as: display 50 … | |
I am on a project that requires the use of C# and C++, is it possible to compile both languages in the same compiler without spending $200 on the full version. When I try to add a .cpp file to C# it says 'Make sure you have installed (.cpp) files.' … | |
i want to select java or c# please help me to select better programming language and easy to programming language i have experience in c++ if java is better please tell me why java is better or c# please introduce me best books for java and c# | |
Hi all :) I am new to the batch file, never heard it before and thus need help from all of your. I need to create a batch file (.bat) that will execute a C# application which is written in Visual Studio 2008. Someone please assist me and give me … | |
Hi, I am creating a program for my business that allows us to write quotes quickly, I am fairly new to C# and am stuck on a particular matter. i cannot relate to my Dynamically created textbox no matter what i name it, i am using the following code to … | |
hi i have a requirement to write tamil word (indian language) in a txt file using c#. some one help me | |
Hi, I want to develop an online poker game in asp.net and C#. Can anybody tell whether do we have an existing library which i can download freely or by so that i can use to develop poker games. Or please suggest if you have any better idea. It's urgent … | |
Hi I'm new to C# and ASP.NET. Do you know any advanced website tutorials? or downloadable ones? Thanks (^^,) | |
Step: 1I have a class Mytest [code] class MyTest { public string Name { get; set; } } [/code] Step2: Created a class Demo to use the member variables of the class myTest [code] class Demo { public void GetNames<T>(IList<myTest> info) { foreach (myTest test in info) { Console.WriteLine(test.Name.ToString()); } … | |
Hi All, i want send sms to any mobile in india through my application.i tried using webservice in weservicex.net(not sure?) .bt it's not working.i dont want pay money as this is is very small project.so can any one plz help hw to send sms.any free gateway providers. thanks in advance. … |
The End.