Forum: C# Mar 16th, 2009 |
| Replies: 0 Views: 1,825 Hi,
Hi,
I have a grid view and want to populate columns of gridview based on the selection from combobox. How to do that? Please help on this issue...
Problem: Below is my code which fills... |
Forum: C# Mar 4th, 2009 |
| Replies: 4 Views: 560 Hi,
I have done following is this correct behavior?
Thanks,
Regards, |
Forum: C# Mar 4th, 2009 |
| Replies: 4 Views: 560 no not on ASP.NET any solution on C# please...Thanks |
Forum: C# Mar 4th, 2009 |
| Replies: 4 Views: 560 Hi, I have a 2 text boxes tbox1 and tbox2 now i want to populate tbox2 when a value is entered in tbox1...how this can be done?
note: Supplier Table
tbox1: SuppilerID
tbox2: SupplierName..Should... |
Forum: C# Jun 5th, 2007 |
| Replies: 1 Views: 1,517 Hi, I am implementing TictacToe using AI so following is some of my
code snippet.
1. How to recognize computer move and how would i implement that?
2. What I will add in private void... |
Forum: C# May 17th, 2007 |
| Replies: 1 Views: 4,901 Hi,
I have one form which is login form which contains username and image browsing field. Now in
Login.cs
private void LoadGameButton_Click(object sender, EventArgs e)
{
... |
Forum: C# May 9th, 2007 |
| Replies: 0 Views: 3,436 I have done one application now which is about scheduling application. Now I was looking for windows service and how to do add so i created new project in the existing project of my form.
Now the... |
Forum: C# May 3rd, 2007 |
| Replies: 1 Views: 6,220 I found the solution as I just needed to put string array in ListViewItem declaration.
Thanks |
Forum: C# May 2nd, 2007 |
| Replies: 1 Views: 6,220 Hi,
I have a listview control where i added some column headers. Now the query is when i select any text on the textbox i want to import on listview control under the specific column header. ????... |
Forum: C# Apr 18th, 2007 |
| Replies: 0 Views: 3,133 Hi,
Can Anyone help me in pseudo code or algorithms to write InsertAt() method for LinkedList. Basically when this method will be called it will ask user where he want to put that data somewhere in... |
Forum: C# Apr 18th, 2007 |
| Replies: 2 Views: 2,924 That was the solution. It worked
while (true)
{
str = Console.ReadLine();
//ast.Add(str);
if (str == "-1")
... |
Forum: C# Apr 17th, 2007 |
| Replies: 2 Views: 2,924 I changed a code small bit.
while (str != "-1") // When i do that it also display -1 as well also when counting it count -1 as well. How to prevent that?
{
... |
Forum: C# Apr 17th, 2007 |
| Replies: 2 Views: 2,924 Hi All,
I am working on linked list application which the structure is as:
public static void Main(String[] args)
{
Console.WriteLine("Please Enter the data to be Inserted... |
Forum: C# Apr 12th, 2007 |
| Replies: 8 Views: 3,255 override public void getUserName()
{
try
{
file = new FileStream(@"C:\username.txt", FileMode.Append, FileAccess.Write);
... |
Forum: C# Apr 12th, 2007 |
| Replies: 8 Views: 3,255 Hi,
Console.WriteLine("Please Enter your username :");
int Counter = 0;
s = Console.ReadLine();
Counter = Counter + 1;
... |
Forum: C# Apr 10th, 2007 |
| Replies: 2 Views: 8,008 Thanks a million but i got some other solution. Thanks |
Forum: C# Apr 10th, 2007 |
| Replies: 2 Views: 8,008 when enter the text to find the string i want to ignore the case how to implement that in a context below
public override void Search()
{
//file = new... |
Forum: C# Apr 10th, 2007 |
| Replies: 2 Views: 8,620 solution was st.contains it worked. Thanks anyway |
Forum: C# Apr 10th, 2007 |
| Replies: 2 Views: 8,620 How to search for a string in a file. As string might be somewhere in the middle of text file. :!:
Console.WriteLine("Input a string ");
String data = Console.ReadLine();
sr =... |
Forum: C# Apr 8th, 2007 |
| Replies: 8 Views: 3,255 can you example of a counter please?
And can you explain please what you mean by "You probably have to write a new file with the line you wish to delete omitted" |
Forum: C# Apr 5th, 2007 |
| Replies: 8 Views: 3,255 Hi,
Is there anyway i can put my every entry of username in a file like this e.g. using any auto number generation with every entry
1. Test
2. Hello
After i put them in a file like this i... |
Forum: C# Apr 5th, 2007 |
| Replies: 4 Views: 1,985 Thanks a million for such a good explaination.Thanks for ur help. |
Forum: C# Apr 4th, 2007 |
| Replies: 1 Views: 39,651 Thanks for viewing :)
I have sorted out the problem. Thanks |
Forum: C# Apr 4th, 2007 |
| Replies: 1 Views: 39,651 Hi If i have switch statement look like this and after getting or display function or by entering wrong character(default) how can i go to same screen which will display different options. As i know... |
Forum: C# Apr 3rd, 2007 |
| Replies: 4 Views: 1,985 |
Forum: C# Apr 3rd, 2007 |
| Replies: 4 Views: 1,985 Hi,
I am going to ask a question which is small bit silly but for me not as i want to grasp this information in mind.
The question is i have seen samples of different codes which have as... |
Forum: C# Mar 28th, 2007 |
| Replies: 4 Views: 4,140 Thanks a million jslicer (http://www.daniweb.com/techtalkforums/member155637.html). It worked for me. You are the star. |
Forum: C# Mar 27th, 2007 |
| Replies: 4 Views: 4,140 Hi Thanks for help i have changed small bit code
public static void quicks(int [] arr,int lo, int hi)
{
int i = lo;
int temp;
int j = hi;
... |
Forum: C# Mar 27th, 2007 |
| Replies: 4 Views: 4,140 Hi,
I have problem when i get an array using I get "Array Index Out of Bound" in QuickS function
getArray(int [] arr)
for (i = 0; i < arr.Length; i++)
{
... |