Click here to Skip to main content
15,881,852 members
Home / Discussions / C#
   

C#

 
QuestionSensible way to scale and display large 1 bit Tiff G4!! Pin
abcxyz8210-Oct-06 8:36
abcxyz8210-Oct-06 8:36 
Questionplease HELLPPPP... Pin
nedimg10-Oct-06 8:16
nedimg10-Oct-06 8:16 
AnswerRe: please HELLPPPP... Pin
mikone10-Oct-06 9:40
mikone10-Oct-06 9:40 
QuestionError Pin
messages10-Oct-06 8:14
messages10-Oct-06 8:14 
AnswerRe: How do i make one o' these? (pic inside) Pin
Guffa10-Oct-06 11:28
Guffa10-Oct-06 11:28 
GeneralRe: How do i make one o' these? (pic inside) Pin
Anthony Mushrow10-Oct-06 13:18
professionalAnthony Mushrow10-Oct-06 13:18 
GeneralRe: How do i make one o' these? (pic inside) Pin
Dan Neely11-Oct-06 2:16
Dan Neely11-Oct-06 2:16 
QuestionDropdown list Pin
Naji.A10-Oct-06 7:37
Naji.A10-Oct-06 7:37 
When the page loads the dropdownlists do not display the date I want unless I press a button on the page and the page postsback to the server. I would like that date to be displayed once the page loads. Any hints?

if (Page.IsPostBack == false)
{
DateTime Yest = DateTime.Today.AddDays(-1);
string YestMonth = Yest.ToString("MMMM").Trim();
string YestDay = Yest.ToString("dd").Trim();
string YestYear = Yest.ToString("yyyy").Trim();
DropDownList2.SelectedItem.Value = YestYear.ToString();
DropDownList3.SelectedItem.Value = YestMonth.ToString();
DropDownList4.SelectedItem.Value = YestDay.ToString();

}
AnswerRe: Dropdown list Pin
Private_Void10-Oct-06 8:14
Private_Void10-Oct-06 8:14 
GeneralRe: Dropdown list Pin
Naji.A10-Oct-06 8:52
Naji.A10-Oct-06 8:52 
AnswerRe: Dropdown list Pin
Anthony Mushrow10-Oct-06 14:42
professionalAnthony Mushrow10-Oct-06 14:42 
GeneralRe: Dropdown list Pin
Private_Void11-Oct-06 3:10
Private_Void11-Oct-06 3:10 
Questional command line syntax Pin
waheed awan10-Oct-06 6:56
waheed awan10-Oct-06 6:56 
Questionexecuting a PHP file on the webserver [modified] Pin
asamay10-Oct-06 6:42
asamay10-Oct-06 6:42 
AnswerRe: executing an PHP file on the webserver Pin
mikone10-Oct-06 6:51
mikone10-Oct-06 6:51 
GeneralRe: executing a PHP file on the webserver Pin
asamay10-Oct-06 7:00
asamay10-Oct-06 7:00 
GeneralRe: executing a PHP file on the webserver Pin
mikone10-Oct-06 7:59
mikone10-Oct-06 7:59 
GeneralRe: executing a PHP file on the webserver Pin
asamay10-Oct-06 8:28
asamay10-Oct-06 8:28 
QuestionDataColumn and DataTable Pin
123456uio10-Oct-06 6:25
123456uio10-Oct-06 6:25 
AnswerRe: DataColumn and DataTable Pin
Ioan Anton10-Oct-06 8:19
Ioan Anton10-Oct-06 8:19 
AnswerRe: DataColumn and DataTable Pin
Private_Void10-Oct-06 8:24
Private_Void10-Oct-06 8:24 
Questioncrystal reports with c#.net Pin
Raheelchohan10-Oct-06 5:26
Raheelchohan10-Oct-06 5:26 
QuestionMy good stuff to share... Pin
ahyeek10-Oct-06 5:11
ahyeek10-Oct-06 5:11 
QuestionHow fast is a bubble sort? Pin
Anthony Mushrow10-Oct-06 4:59
professionalAnthony Mushrow10-Oct-06 4:59 
AnswerRe: How fast is a bubble sort? Pin
J4amieC10-Oct-06 5:11
J4amieC10-Oct-06 5:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.