Re: Pass values from child form to mdi form Programming Software Development by LearnVBnet ~~~ vbnet Private Sub Listview_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Listview.DoubleClick If Not Listview.SelectedItems.Count = 0 Then With LvList.SelectedItems(0) ParentForm.Textbox1.Text = Listview.SelectedItems.Item(0).Text End With End If ~~~ VBnet - Rotate controls Programming Software Development by melodies … new to this forum and I'm a biginner in VBnet language. I'm using VB express 2008. I'm trying… of the famous game "Ticket To Ride" using VBnet language. I uploaded the map as a background image. I… VBNET Like statement Programming Software Development by joel.hahn … having issues with the syntax for a like statement in VBnet. I am using access as a back end. here is… Re: VBNET FORMS Programming Software Development by Reverend Jim Please read [this](http://www.daniweb.com/software-development/vbnet/threads/424836/read-this-before-posting) then try again. Re: VBNet read from text file Programming Software Development by HctiMitcH For encryption I recommend taking a look at this; http://www.daniweb.com/software-development/vbnet/code/366392/encryption-and-decryption-functions-in-vb.net Re: vbnet mysql datagrid duplicate data Programming Software Development by cgeier … queries. See [this post](http://www.daniweb.com/software-development/vbnet/code/445801/use-parameterized-queries-to-avoid-sql-injection-attacks… How to make a report using datagridview through vbnet 2010 and access 2007 Programming Software Development by dushidav … one to help me how I can generate reports through vbnet 2010 but related to the database that I have in… Search button in VBNET Programming Software Development by JUNG_1 Hi! My name is Jung and I'm new to VBNET I have already tried many ways to write codes for &… Capture and save vb.NET form Programming Software Development by Yasin786 …assignment for my diploma. i am creating the application in vbnet 2003 One of the tasks in the assignment is to… code but the problem is that it was written in vbnet 2005 . Dim ScreenSize As Size = New Size(My.Computer.… Sub can anyone help as i just started programming in vbnet 2003 a few months ago. dont have much experience. thank… SQL AddWithValue problems Programming Software Development by BluePaper … using the following bit of code: [code=vbnet] SQLCommand.Parameters.AddWithValue("@varAlias", Trim(… the code has been intentionally hid ;) ) [code=vbnet] 'Import some important things including the database 'wrapper'…End If End Sub End Class [/code] [code=vbnet] Imports System.Data, System.Data.SqlClient Module fSQL… Model View Controller in VB.Net Programming Software Development by Fungus1487 …a class which holds data (model) [CODE=VBNet] Public Class DataClass Private _name As String Public … two methods attach listeners using the Observer Pattern. [CODE=VBNet] ' ### ' Example 1: Interface (The way I…display on change End Sub End Class [/CODE] [CODE=VBNet] ' ### ' Example 2: Event Driven Public Class … A Popup Data Transfer Problem Programming Software Development by nolesce …passed). Here is where the code goes wonky. [CODE=VBNET](on the Parent Form) Friend WithEvents CAddress As frmClientAddress Sub…it jumps to this part of the child form. [CODE=VBNET] (on the child form) Public Sub New() MyBase.New()…I want go, from inside the sub, is: [CODE=VBNET](on the child form) Public Sub New(ByVal AddressID As… Web Site Not Responding Community Center Meta DaniWeb by Reverend Jim …this thread](http://www.daniweb.com/software-development/vbnet/threads/428320/how-to-disable-a-button-with-… [this thread](http://www.daniweb.com/software-development/vbnet/threads/428312/counting-month-left-till-due-date) … [this thread](http://www.daniweb.com/software-development/vbnet/threads/428319/listview-item-backcolor-not-updating-properly), … Re: SQL AddWithValue problems Programming Software Development by bcasp … a SqlCommand and returns a DataSet with the results. [code=vbnet] Private Function ExecuteQuery(ByVal cmd As SqlCommand) As DataSet Dim… [/code] For the actual command, it's pretty simple. [code=vbnet] Dim cmd As New SqlCommand() cmd.CommandType = CommandType.Text cmd… Re: SQL AddWithValue problems Programming Software Development by BluePaper … too well and I'm learning on the go): [code=vbnet] Dim sqlCmd As New SqlCommand() sqlCmd.CommandType = CommandType.Text… Dim sqlCmdResults As New DataSet sqlCmdResults = sqlQuery(sqlCmd) [/code] [code=vbnet] Public Function sqlQuery(ByVal dbSqlCommand As SqlCommand) As DataSet 'Set… VB.net - worthwhile to go for? Programming Software Development by red_evolve … this: [URL=http://www.c-sharpcorner.com/vbnet/vbTutorials.asp]www.c-sharpcorner.com/vbnet/vbTutorials.asp[/URL] and some others. I… Object reference not set to an instance of an object. Programming Software Development by nolesce … of course, it also doesn't show the form). [CODE=VBNET] Private Sub btnProceed_Click(ByVal sender As System.Object, ByVal e… from LoginForm. Below is the code for the frmCaseList. [CODE=VBNET] Option Strict Off Option Explicit On Imports Microsoft.VisualBasic Imports… Re: Object reference not set to an instance of an object. Programming Software Development by nolesce … by the the form I am trying to open. [code=VBNET] g.DrawImage(bm, bounds.Right - bm.Width, bounds.Y) [/code…] which is contained in this block.. [code=VBNET] 'draw the button Dim bm As Bitmap If _pressedRow = rowNum… Re: A Popup Data Transfer Problem Programming Software Development by nolesce Ok so I can change the code to something like [CODE=VBNET] Friend CAddress As frmClientAddress AddHandler txtBox.TextChanged, AddressOf TextBox_TextChanged code to handle event ...etc [/CODE] ok I'll give that ashot & see what I hit. Thanx! Re: A Popup Data Transfer Problem Programming Software Development by Stevoni … so I can change the code to something like [CODE=VBNET] Friend CAddress As frmClientAddress AddHandler txtBox.TextChanged, AddressOf TextBox_TextChanged code… Download Text File Programming Software Development by Darkicon … to download it is kinda messing the file up. [CODE=VBNet] Public Sub GetIDList() Dim wr As HttpWebRequest = CType(WebRequest.Create… formats are not supported.[/QUOTE] Code for that method: [CODE=VBNET] Public Shared Sub GetList() Try Using sr As StreamReader = New… Connection to a remote MySQL database Programming Software Development by Ragoune … following [URL="http://www.vbmysql.com/articles/vbnet-mysql-tutorials/the-vbnet-mysql-tutorial-part-3"]this tutorial[/URL] from… PHP Session and MySQL Problem Programming Web Development by TheHaxx0r1215 …;>Visual Basic</option><option value=\"vbnet\">vb.net</option><option value…;>Visual Basic</option><option value=\"vbnet\">vb.net</option><option value… Need to monitor for a change in a csv log file Programming Software Development by dannydc … this thread: [URL="http://www.daniweb.com/software-development/vbnet/threads/119377"]http://www.daniweb.com/software-development… MIDI (winmm.dll) And Callback Functions Programming Software Development by Quick2010 … post -> [URL="http://www.daniweb.com/software-development/vbnet/threads/293937"]http://www.daniweb.com/software-development…/vbnet/threads/293937[/URL] I'd really like to understand why … Strip off first character in a line in RTB if character length >8 Programming Software Development by AquaNut … me on.. [URL="http://www.daniweb.com/software-development/vbnet/threads/403994/1725770#post1725770"]http://www.daniweb.com/software…-development/vbnet/threads/403994/1725770#post1725770[/URL] I have a RTB which… DGV add New rows Insert to Database Programming Software Development by LearnVBnet … like from [URL="http://www.daniweb.com/software-development/vbnet/code/217047"]http://www.daniweb.com/software-development…/vbnet/code/217047[/URL] please help me to correct or change … Re: DGV add New rows Insert to Database Programming Software Development by Phasma … on DaniWeb. [URL="http://www.daniweb.com/software-development/vbnet/threads/410402"]http://www.daniweb.com/software-development… Saving CheckedListBox's items, filter unchecked items Programming Software Development by gozo12 [URL="http://www.daniweb.com/software-development/vbnet/threads/360388"]http://www.daniweb.com/software-development/vbnet/threads/360388[/URL] how to make a filter that only show the items that checked and unchecked don't show in checklistbox Working with Multiple Projects Programming Software Development by tontano … situation. I have 2 projects in a solution (Csharp & vbNet), now because Charp is that starting point, I needed to…, I have a form called todo.cs, Now in my vbNet project I have a form called mmenu.vb, along with…