Questions: 1 362

Answers by our Experts: 1 362

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

how to make random images in c sharp?
I am trying to fire an event, by clicking a button, and it does not fire. The id is
"Update".

Instead of going to the event handling paragraph, code goes to the Page_Load method
and skips the Update_Click method. The event is wired to the Update_Click method.

I have done this before, and never had a problem. (The Update_Click) method is created
by double clicking the button “Update”).



For example –

public partial class WebForm2 : System.Web.UI.Page
{
public string employee;
public decimal employeeDec;
public string empName;
public string date1;
public string date2;
public List<AccessForm> AccessFormList;
// following code skipped
protected void Update_Click(object sender, EventArgs e)
{
AccessFormUpdateDB.UpdateSelectedEmployee(AccessFormList);
}


//code executes here
protected void Page_Load(object sender, EventArgs e)

{

employee = ((TextBox)Page.Pr
Console.WriteLine("Please enter your card number");
string crdnum = Console.ReadLine();
int c = Convert.ToInt32(crdnum);

Console.WriteLine("PLease enter your password");
string psswrd = Console.ReadLine();
int p = Convert.ToInt32(psswrd);
int counter = 0;

do
{
if (c = i)
{
//This is where i want to compare the user input with the array but im stuck!!
}
} while (counter < 3
The deadline date and time that I give for my assignment, is that in my time zone or in yours?
Greetings.
I have a List of objects, wich contain another objects and information for report crafting. It works dynamically, so it can contains something different each time. I want to feed the report using a ObjectDataSource, but it creates a new instance of everything and I wanna use the instance I created. Any idea?
Consider the code
char
*a = "xyx", *b = "xyz";
if ( a==b )
printf("The two strings have the same address!\n");
else
printf("As I expected, the addresses are different.\n");
The expression a==b compares pointer values, not the contents of the strings.
Also, the expression a=b is an assignment of a pointer value, not an assignment
of a string. In this exercise we want to consider = and == with respect to their
use with structures. Suppose now that a and b are two structure variables of the
same type. The expression a=b is valid, but the expression a==b is not. The
operands of the == operator cannot be structures. Write a small test program to
see what your compiler does if you try to use the expression a==b, where a and
b are structures of the same type.
hi. in c# there is not solution like solution "windowsFormsApplication1" within solution Explorer window
I need it for get setup.
Create a c# console application to enter the name and mark of students using a 2d array
Hello , I want to put status in Twitter using C# code .. i m succeeded in auto Logging in Twitter as my Lab assignment but i m un able to put status ,, i m using code for this :

HtmlElementCollection eInputs = ObjHTMLDocument.GetElementsByTagName("textarea");
foreach (HtmlElement tweet in eInputs)
{
if (tweet.GetAttribute("class").Equals("twitter-anywhere-tweet-box-editor"))
{
tweet.SetAttribute("textarea" , "saad");
break;
}
}
Can any one help me plz ????
please explain pointer
LATEST TUTORIALS
APPROVED BY CLIENTS