Hello everyone, I want to generate a list of all available machines on the LAN. Can anybody help me out that how can I do this?
Regards, Qaiser Nadeem
Hello everyone, I want to generate a list of all available machines on the LAN. Can anybody help me out that how can I do this?
Regards, Qaiser Nadeem
Hello, I am new to java technology. I have a jsp page wich contains a DropDownList (SELECT), two text boxes and a button. What I need to do is, I need to display one textbox (txtName) and hide the 2nd one (txtEmail) when the 1st index of SELECT is selected; and on selected index change if 2nd index is selected, the txtEmail to visible and txtName is to hide. and on Button press it should submit values at another page. Can any body help out.
Regards, Qaiser Nadeem
Hello, I am new to java technologies. I am using Eclipse Europa IDE. I have created a JSP page but unable to create jsp user controls on it. please help me out.
Regards, Qaiser Nadeem
I have a textbox, I want that customer can only read its text but problem arises when text exceeds from the width of the textbox. In normal case we can read all the text by using arrow keys. How can I read text when textbox is read only?
Regards, Qaiser Nadeem
How to find out the installed version of MS Power Point from registry? I am going to build an app in which i have to check out the installed version of the MS power point onthe client machine. How can I do this?
Regards, Qaiser Nadeem
How to find out the installed version of MS Power Point from registry? I am going to build an app in which i have to check out the installed version of the MS power point onthe client machine. How can I do this?
Regards, Qaiser Nadeem
How to find out the installed version of MS Power Point from registry? I am going to build an app in which i have to check out the installed version of the MS power point on the machine. How can I do this?
Regards, Qaiser Nadeem
How to find out the installed version of MS Power Point from registry? I am going to build an app in which i have to check out the installed version of the MS power point onthe client machine. How can I do this?
Regards, Qaiser Nadeem
I have my DB at remote server, when I run my application the following error accurs. "A connection was successfully established with the server, but then an error occurred during the login process. (provider: TCP Provider, error: 0 - The specified network name is no longer available.)" can anybody tell this error is accuring and how can it could be solved.
Regards, Qaiser Nadeem
Hi I'm using MS Excel sheets in my Application, for this purpose MS Excel should be installed at the server. Now I wana use Execl App in my project but without installing the Excel at my machine (server). how can I do this?
Regards, Qaiser Nadeem
Hello everybody I have a table "Employee" which contains 20 records. i want to select records from 10 to 15. how can I select?
Regards, Qaiser Nadeem
How can i create a folder/file in registry and how can I write in the registry file?
Regards, Qaiser Nadeem
How can i create a folder/file in registry and how can I write in the registry file?
Regards, Qaiser Nadeem
Hello Everybody I m new to use Infragistic NetAdvantage, is anyone here who have used this. i just wana ask how to start with this. Thanx in advance
Regards, Qaiser Nadeem
Hello, I have drawn some diagrams in Rational Rose 4.0, now i want to generate code from these diagrams. anyone who has already done this, please guid me how to generate. Thank You Qaiser Nadeem
Regards, Qaiser Nadeem
if u still have any questions then plz come on q.nadeem@hotmail.com
Regards, Qaiser Nadeem
its VB.NET, do u have c# code???
Regards, Qaiser Nadeem
should i send u the web msgs????
Regards, Qaiser Nadeem
yes, yes, its working properly, but you have to define the msgs in web.config
Regards, Qaiser Nadeem
try { string msgBody = ""; string configToAddresses = ""; string[] toAddressesArray; configToAddresses = ConfigurationManager.AppSettings["MSG_REQUEST_TO_EMAIL_ADDRESS"].Trim(); MailMessage msg = new MailMessage(); msg.From = new MailAddress(ConfigurationManager.AppSettings["MSG_REQUEST_FROM_EMAIL_ADDRESS"].Trim()); toAddressesArray = configToAddresses.Split(';'); // Add to Addresses in email foreach (string toAddress in toAddressesArray) { msg.To.Add(new MailAddress(toAddress)); } if (ConfigurationManager.AppSettings["MSG_REQUEST_CC_EMAIL_ADDRESS"].Trim().Length > 0) { msg.CC.Add(new MailAddress(ConfigurationManager.AppSettings["MSG_REQUEST_CC_EMAIL_ADDRESS"].Trim())); } msg.Subject = ConfigurationManager.AppSettings["MSG_REQUEST_EMAIL_SUBJECT"].Trim() + " " + DateTime.Now; msgBody = ConfigurationManager.AppSettings["MSG_REQUEST_SALUTE_EMAIL"].Trim() + "\r\n\r\n"; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_EMAIL_BODY_START"].Trim() + " " + this.txtName.Text.Trim() + " (" + this.txtEmail.Text.Trim() + ")"; if (this.txtOrganization.Text.Trim().Length > 0) { msgBody += " of " + this.txtOrganization.Text.Trim(); } msgBody += " on " + DateTime.Now + ". "; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_EMAIL_BODY_MIDDLE"].Trim() + "\r\n\r\n"; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_SIGNATURE_EMAIL_URL"].Trim() + "\r\n\r\n"; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_SIGNATURE_EMAIL"].Trim() + "\r\n\r\n"; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_SIGNATURE_EMAIL_TEAM"].Trim() + "\r\n"; msgBody += ConfigurationManager.AppSettings["MSG_REQUEST_SIGNATURE_EMAIL_TEAM_URL"].Trim(); msg.Body = msgBody; SmtpClient client = new SmtpClient(); client.Host = ConfigurationManager.AppSettings["SMTP_HOST"]; client.Port = int.Parse(ConfigurationManager.AppSettings["SMTP_PORT"]); client.Send(msg); } catch (System.Threading.ThreadAbortException ex) { } catch (Exception ex) { ConfigurationManager.AppSettings["DEFAULT_MESSAGE"] = ex.ToString(); Resp