Hi Dhirendra, Thanks for the reply. I will accept your suggestion and would consult a technician from Acer. Thanks. Sameer
Sams Den
Posts
-
Screen goes blank during windows 2003 installation. -
How to Print HTML content...Hi, Why don't you try using DHTMLEditClass and set the DocumentHTML property with the HTML text you are having. You can then make use of PrintDocument method and pass 1 as a ref parameter to show the print dialog. You can get some help from MSDN as well. Hope it solves all your issues. Thanks Sameer
-
Screen goes blank during windows 2003 installation.Hi DP, Thanks for the reply. Yes, I am able to install the windows 2003 text mode setup smoothly. The setup then reboots the system to start the GUI setup. I can see the windows 2003 logo for a short while and then the screen goes blank. However, the power button light continues to glow that means the system is still ON, but nothing comes on screen!!! I searched for this case but nothing seems to work. I come to know that windows 2003 requires console redirection monitor but I didn't find any such setting in BIOS of my laptop. I am unable to start in safe mode as well. I haven't tried using another monitor as I don't have one and I can't afford to buy one for this cause. I tried using recovery console but even that didn't solve the problem. It seems like I may not be able to install W2k3 on my laptop. The configuration of my laptop is Pentium celeron 1.2 GHZ. 512 MB DDR2 RAM. LCD Monitor, 40 GB HDD, DVD recorder, etc. Any help will be highly appreciated. Many Thanks, Sameer
-
Screen goes blank during windows 2003 installation.Thanks for the reply Mike. But that didn't work either. Thanks Sameer
-
Screen goes blank during windows 2003 installation.Hi, I am trying to install windows 2003 Evaluation version on my laptop (Acer). The text setup works ok. When the system reboots, I can see windows 2003 logo for a little amount of time and then the screen goes blank; very similar as if I have shutdown my computer. I tried flashing the ROM, but no joy. I think it has something to do with display. Can anyone help me out in this ? I know there are couple of techies all round here...can anyone please guide me. Thanks Sameer
-
handling validatiors in javascriptHi, Make sure the EnableClientScript is true (it is by default) if it then .NET takes care of rendering javascript and doing all the clearing. Also make sure the Display is set to dynamic. hope this helps. thanks, Sameer
-
how to use css in asp.netHi, You probably might have missed the Style attribute, check the below code: /* .Style1 { FONT: 700 12pt verdana; COLOR: orange }
Label
*/ P.s. this is just a fragment of code and you need to write this in .aspx page. Hope this help. Thanks Sameer
-
how to use css in asp.netYou can declare it either in .aspx or create a CSS file. Thanks Sameer
-
JavaScript can be used in ASP.net ?Hi, Have a look: /*
<!-- function PopMe() { alert ('Test'); } //--> */
-
how to use css in asp.netHi, Consider you have a style defined in CSS file.. something like: .Style1 { font: 12pt verdana; font-weight:700; color:orange; } you can then use the cssClass like: TextBox id="TextBox1" ForeColor="Red" CssClass="Style1" You can even make use of codebehind file if you want to change it during runtime..but it will be available only for server controls. Hope this helps. Thanks Sameer Sameer
-
dll errorHi, For every com component .NET tries to create a Com Callable Wrapper (CCW) in the form of Interop.xxxx. If it fails to generate CCW you may get a warning / error. The workaround would be to generate an interop assembly from the COM component using TLBIMP.exe . Hope this helps. Thanks Sameer
-
validation summary in javascriptHi, The validation summary has a property "EnableClientScript" which is true by default. This will render javascript and takes care of validation. If you set it to false no client side script is rendered and the control updates itself only on postbacks. Hope this helps. Thanks, Sameer
-
JavaScript can be used in ASP.net ?Hi, Yes you can surely do that. You need to add a client side script block in .aspx page and then you can write a javascript code block (functions..etc) there. Hope this helps. Thanks. Sameer