2,383 Posted Topics
![]() | |
Re: does this thread solved?? if yes please share the answer.. so others can learn from your thread friend. Thank you :) | |
Re: Set [B]IsMdiContainer [/B]in Parent form properties as [B]True[/B]. | |
Re: using system.io to write/read file. put in top of code. try this following code : [code=vb.net]Imports System.IO ... Public Function SaveTextToFile(ByVal strData As String, _ ByVal FullPath As String, _ Optional ByVal ErrInfo As String = "") As Boolean Dim Contents As String Dim bAns As Boolean = False Dim … | |
Re: if this thread for .net please post in vb.net section. | |
| |
Re: This code running good in desktop application, you can try in web application : [code] Dim i As Integer Dim Con As Control For i = 0 To Me.Controls.Count - 1 Con = Me.Controls(i) If TypeOf Con Is TextBox Then Con.Text = 0 End If Next[/code] | |
| |
Re: try to post your question on [URL="http://www.daniweb.com/forums/forum129.html"]Oracle section[/URL] too... | |
Re: Hi Anthony...Welcome to Daniweb Friend :) You can post your problem in [URL="http://www.daniweb.com/forums/forum61.html"]C# section[/URL] | |
Re: post your code... will help much to understand | |
Re: Hi Kathy...Welcome to Daniweb Friend :) | |
| |
Re: you cannot delete thread. just moderator can do this. you just can mark thread to solved. | |
Re: [B]Introduction[/B] When should you use CType and when should you use DirectCast and which one preforms better? The short answer is: DirectCast is twice as fast for value types (integers...etc), but identical for reference types. [B]Background[/B] The first thing to understand is that CType and DirectCast are not the same … | |
Re: Hi System.String is immutable; System.StringBuilder was designed with the purpose of having a mutable string where a variety of operations can be performed. StringBuilder is faster when Compared to string String each time it creates an object.Hence its called Mutable that is changable Stringbuilder just appends instead of creating new … | |
Re: why you don't make user to do not input string/char inputs? make them to input numbers only. so you don't have to convert input from text to number. | |
| |
Re: [QUOTE]private void button1_ON_Click(object sender, EventArgs e) { serialPort1.Write(new byte[] { 0xFF, 0x01, 0x01 }, 0, 3); panel1.BackColor = Color.Lime; }[/QUOTE] C# code above become in this following code : [code=vb]Private Sub button1_ON_Click(ByVal sender As Object, ByVal e As EventArgs) serialPort1.Write(New Byte() {255, 1, 1}, 0, 3) panel1.BackColor = Color.Lime End … | |
Re: Go to Google and search that!!! who want to give u a FULL code? | |
Re: [code]Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Textbox1.Text = "What Ever You Want to Write" End Sub[/code] | |
Re: Hi...Welcome to Daniweb Friend :) Hope you will enjoy in this Forum. you can Visit [URL="http://www.daniweb.com/forums/forum118.html"]C Section[/URL], [URL="http://www.daniweb.com/forums/forum4.html"]VB Section[/URL] or[URL="http://www.daniweb.com/forums/forum58.html"] VB.Net Section[/URL] in [B]Software Development [/B]and [URL="http://www.daniweb.com/forums/forum17.html"]PHP Section[/URL] in [B]Web Development[/B]. Post your problem and many people will help u. What your Collage Name? | |
Re: Please Post in current section on [URL="http://www.daniweb.com/category31.html"]Web Development[/URL] | |
Re: don't save to registry. its not good, will make your system unstable if you did not careful. | |
Re: so, your checkbox on listview is true... |
The End.