Search Results

Showing results 1 to 29 of 29
Search took 0.01 seconds.
Search: Posts Made By: shsh_shah
Forum: C# Mar 16th, 2009
Replies: 0
Views: 1,825
Posted By shsh_shah
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
Posted By shsh_shah
Hi,

I have done following is this correct behavior?




Thanks,
Regards,
Forum: C# Mar 4th, 2009
Replies: 4
Views: 560
Posted By shsh_shah
no not on ASP.NET any solution on C# please...Thanks
Forum: C# Mar 4th, 2009
Replies: 4
Views: 560
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
Thanks a million but i got some other solution. Thanks
Forum: C# Apr 10th, 2007
Replies: 2
Views: 8,008
Posted By shsh_shah
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
Posted By shsh_shah
solution was st.contains it worked. Thanks anyway
Forum: C# Apr 10th, 2007
Replies: 2
Views: 8,620
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
Thanks a million for such a good explaination.Thanks for ur help.
Forum: C# Apr 4th, 2007
Replies: 1
Views: 39,651
Posted By shsh_shah
Thanks for viewing :)
I have sorted out the problem. Thanks
Forum: C# Apr 4th, 2007
Replies: 1
Views: 39,651
Posted By shsh_shah
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
Posted By shsh_shah
Thanks a million.
Forum: C# Apr 3rd, 2007
Replies: 4
Views: 1,985
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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
Posted By shsh_shah
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++)
{

...
Showing results 1 to 29 of 29

 


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

©2003 - 2009 DaniWeb® LLC