Click here to Skip to main content
15,920,633 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to Export my datas in the form view ti MS Word using C# Pin
sonusanthosh9-Apr-09 4:04
sonusanthosh9-Apr-09 4:04 
QuestionModel pop up Pin
nithydurai9-Apr-09 2:21
nithydurai9-Apr-09 2:21 
AnswerRe: Model pop up Pin
ToddHileHoffer9-Apr-09 5:35
ToddHileHoffer9-Apr-09 5:35 
Questiontype does not contain a definition for Identifier Pin
nilam24779-Apr-09 2:12
nilam24779-Apr-09 2:12 
AnswerRe: type does not contain a definition for Identifier Pin
Colin Angus Mackay9-Apr-09 2:43
Colin Angus Mackay9-Apr-09 2:43 
AnswerRe: type does not contain a definition for Identifier Pin
Yusuf9-Apr-09 6:03
Yusuf9-Apr-09 6:03 
QuestionDefault date format problem Pin
madgardener9-Apr-09 2:09
madgardener9-Apr-09 2:09 
QuestionDisplaying menu items Pin
scar_face9-Apr-09 1:02
scar_face9-Apr-09 1:02 
AnswerRe: Displaying menu items Pin
Ashfield9-Apr-09 1:40
Ashfield9-Apr-09 1:40 
AnswerRe: Displaying menu items Pin
Mihirdash9-Apr-09 2:19
professionalMihirdash9-Apr-09 2:19 
QuestionHow to Download images from server (ftp) to local system..ASP.Net with C# Pin
ven3219-Apr-09 1:00
ven3219-Apr-09 1:00 
AnswerRe: How to Download images from server (ftp) to local system..ASP.Net with C# Pin
Ashfield9-Apr-09 1:41
Ashfield9-Apr-09 1:41 
QuestionProblem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 0:02
professionalVimalsoft(Pty) Ltd9-Apr-09 0:02 
AnswerRe: Problem with ListBox Pin
monu nair9-Apr-09 0:06
monu nair9-Apr-09 0:06 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 0:09
professionalVimalsoft(Pty) Ltd9-Apr-09 0:09 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 0:15
professionalVimalsoft(Pty) Ltd9-Apr-09 0:15 
I even Added the Following Code at the End

//Binding the Listboxes
       if (ds.Tables[0].Rows.Count > 0)
       {

           ListBox1.DataSource = ds;

           ListBox1.DataTextField = "Descr";

           ListBox1.Visible = true;

           lstbxLecturers.Visible = false;

           ListBox1.DataBind();
       }
       else
       {

           //Leave it there Way it is
           ListBox1.Visible = false;

           lstbxLecturers.Visible = true;
       }


this is to test if there are any records returned and the First true to the If statement get executed.

Thank you

Vuyiswa Maseko,

Few companies that installed computers to reduce the employment of clerks have realized their expectations.... They now need more and more expensive clerks even though they call them "Developers" or "Programmers."

C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vuyiswamaseko.tiyaneProperties.co.za
vuyiswa@its.co.za
www.ITS.co.za

AnswerRe: Problem with ListBox Pin
Abhijit Jana9-Apr-09 0:17
professionalAbhijit Jana9-Apr-09 0:17 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 0:29
professionalVimalsoft(Pty) Ltd9-Apr-09 0:29 
GeneralRe: Problem with ListBox Pin
Abhijit Jana9-Apr-09 1:22
professionalAbhijit Jana9-Apr-09 1:22 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 1:27
professionalVimalsoft(Pty) Ltd9-Apr-09 1:27 
GeneralRe: Problem with ListBox Pin
Abhijit Jana9-Apr-09 1:59
professionalAbhijit Jana9-Apr-09 1:59 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 2:06
professionalVimalsoft(Pty) Ltd9-Apr-09 2:06 
GeneralRe: Problem with ListBox Pin
Vimalsoft(Pty) Ltd9-Apr-09 3:56
professionalVimalsoft(Pty) Ltd9-Apr-09 3:56 
GeneralRe: Problem with ListBox Pin
Abhijit Jana9-Apr-09 4:24
professionalAbhijit Jana9-Apr-09 4:24 
AnswerRe: Problem with ListBox Pin
monu nair9-Apr-09 0:33
monu nair9-Apr-09 0:33 

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.