- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 1
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
14 Posted Topics
Re: The TextBox class dosn't support the Transparent But I think you can get the same Effect by setting the backColor property for the textbox into the same color for form and ste the text box border to none [CODE]textBox1.BackColor = this.BackColor;[/CODE] | |
Re: Hi Easy with an if statement [CODE] // put this code at the top of the page to check if the page is posted back or not // and check that the value of radio is not empty if(isset($_POST['page']) && !empty($_POST['page'])){ // put your logic here } [/CODE] | |
Re: Hi Try This Editors Bluefish [URL="http://bluefish.openoffice.nl/index.html"]http://bluefish.openoffice.nl/index.html[/URL] Nvu [URL="http://www.nvu.com/"]http://www.nvu.com/[/URL] kompozer [URL="http://www.kompozer.net/"]http://www.kompozer.net/[/URL] | |
Re: You can use this method when the form load to deselect the text [CODE]textBox1.Select(0, -1);[/CODE] - Set the TextBox to be unSelectable : the TextBox CanSelect is readOnly property and it set to true, and when this property is set to true it's mean that this control can be focused … | |
Hi I'm Developing an application and I want to use the Profile Service in asp.net The problem is that I can't Find the Profile Property at the IDE Intlisence and when I type Profile.LastLogin the compiler give me an error "[COLOR="Red"]The name 'Profile' does not exist in the current context[/COLOR]" … | |
Re: This Method Give this error because the number is passed into the arg is negative so it's better to post the code to understand the problem | |
Re: Hi You Need a Class To handle The POP3 This Company Have a Class for Handling All Types of E-mail functions [URL="http://www.rebex.net/"]http://www.rebex.net/[/URL] You my find these classes on this site [URL="http://www.board4all.cz/"]http://www.board4all.cz/[/URL] Register and Search.... It's A greate Library | |
Re: Hi you can use the MODI(Microsoft Office Document Imaging) located at MDIVWCTL.DLL you have to add a reference to this COM [COLOR="Red"]1- Create a Document Instance and Assign an Image File[/COLOR] [CODE] _MODIDocument = new MODI.Document(); _MODIDocument.Create(imagefilepath); [/CODE] 2-Call the OCR Method [CODE] _MODIDocument.OCR(_MODIParameters.Language, _MODIParameters.WithAutoRotation, _MODIParameters.WithStraightenImage); [/CODE] first parameter (The … | |
Re: 1-import the nameSpace [CODE]using System.Data.SqlClient[/CODE] 2- Make a new object from SqlConnection Class [CODE] SqlConnection conn = new SqlConnection();[/CODE] 3- set the ConnectionString property of the SqlConnection; [CODE]string connString = @"Data Source=[COLOR="Red"]ServerName[/COLOR];Initial Catalog=[COLOR="Red"]DataBaseName[/COLOR];Integrated Security=True";[/CODE] set Integrated Security=True if you will use Windows Authntication you will find a good tips about … | |
Re: this link has all the information you need [URL="http://www.codeproject.com/KB/cs/timercomputershutdown.aspx?msg=1281145"]http://www.codeproject.com/KB/cs/timercomputershutdown.aspx?msg=1281145[/URL] | |
Re: Please give me you connection string it may help to solve the problem | |
Re: To add a new File for classes you choose 1- add new item 2- choose class file but if you want to # separate the methods or property from the same class to another file you have add the partial keyword for booth files like this [CODE] public [COLOR="Red"]partial [/COLOR] … | |
Re: I think you use the Procedures and Cursors to accomplish this task | |
Re: You can find a great books library at this site [url]www.safaribooksonline.com[/url] and for the video tutorial [url]www.appdev.com[/url] [url]www.cbtnuggets.com[/url] [url]www.msdev.com[/url] and you my find a good books at [url]www.ebookshare.net[/url] |
The End.