<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="https://purl.org/rss/1.0/modules/content/" xmlns:dc="https://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[BP Forums - Programming Help]]></title>
		<link>https://bpforums.info/</link>
		<description><![CDATA[BP Forums - https://bpforums.info]]></description>
		<pubDate>Fri, 10 Apr 2026 11:27:31 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Running an embeded EXE .NET 2013]]></title>
			<link>https://bpforums.info/showthread.php?tid=836</link>
			<pubDate>Tue, 14 Oct 2014 12:48:59 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=420">Worf</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=836</guid>
			<description><![CDATA[Hi.<br />
<br />
I'm currently working on a new project for working with .PK3 - .DMD &amp; .MD2 files.<br />
<br />
Now, I have an EXE (cv.exe) that I would like to embed into my program and execute through the routine below.<br />
<br />
I've tried different methods found on the internet without any luck.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>' This routine runs MD2Tool with the selected tasks. (Convert)&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
Private Sub RunMD2tool(ByVal path As String, ByVal file As String, ByVal tasks As String)&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
Dim p As New Process()&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
Dim infs() As String = {"""" &amp; path &amp; "&#92;" &amp; (file) &amp; """" &amp; tasks}&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
With p.StartInfo&nbsp;&nbsp;&nbsp;&nbsp;<br />
For f = 0 To infs.Count - 1&nbsp;&nbsp;&nbsp;&nbsp;<br />
.Arguments = infs(f)&nbsp;&nbsp;&nbsp;&nbsp;<br />
.FileName = "cv.exe"&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
' Hide the window ?&nbsp;&nbsp;&nbsp;&nbsp;<br />
p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden&nbsp;&nbsp;&nbsp;&nbsp;<br />
p.Start()&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
Do While Not p.HasExited&nbsp;&nbsp;&nbsp;&nbsp;<br />
Application.DoEvents()&nbsp;&nbsp;&nbsp;&nbsp;<br />
Loop&nbsp;&nbsp;&nbsp;&nbsp;<br />
Next&nbsp;&nbsp;&nbsp;&nbsp;<br />
End With&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
MsgBox("Convertion complete.")&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
SinglePath.Text = Nothing&nbsp;&nbsp;&nbsp;&nbsp;<br />
Label7.Text = Nothing&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
End Sub</code></div></div><br />
Many thanks for your help.<br />
<br />
Regards<br />
<br />
Tony]]></description>
			<content:encoded><![CDATA[Hi.<br />
<br />
I'm currently working on a new project for working with .PK3 - .DMD &amp; .MD2 files.<br />
<br />
Now, I have an EXE (cv.exe) that I would like to embed into my program and execute through the routine below.<br />
<br />
I've tried different methods found on the internet without any luck.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>' This routine runs MD2Tool with the selected tasks. (Convert)&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
Private Sub RunMD2tool(ByVal path As String, ByVal file As String, ByVal tasks As String)&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
Dim p As New Process()&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
Dim infs() As String = {"""" &amp; path &amp; "&#92;" &amp; (file) &amp; """" &amp; tasks}&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
With p.StartInfo&nbsp;&nbsp;&nbsp;&nbsp;<br />
For f = 0 To infs.Count - 1&nbsp;&nbsp;&nbsp;&nbsp;<br />
.Arguments = infs(f)&nbsp;&nbsp;&nbsp;&nbsp;<br />
.FileName = "cv.exe"&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
' Hide the window ?&nbsp;&nbsp;&nbsp;&nbsp;<br />
p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden&nbsp;&nbsp;&nbsp;&nbsp;<br />
p.Start()&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
Do While Not p.HasExited&nbsp;&nbsp;&nbsp;&nbsp;<br />
Application.DoEvents()&nbsp;&nbsp;&nbsp;&nbsp;<br />
Loop&nbsp;&nbsp;&nbsp;&nbsp;<br />
Next&nbsp;&nbsp;&nbsp;&nbsp;<br />
End With&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
MsgBox("Convertion complete.")&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
SinglePath.Text = Nothing&nbsp;&nbsp;&nbsp;&nbsp;<br />
Label7.Text = Nothing&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
End Sub</code></div></div><br />
Many thanks for your help.<br />
<br />
Regards<br />
<br />
Tony]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[View 3D Models in VB .NET]]></title>
			<link>https://bpforums.info/showthread.php?tid=835</link>
			<pubDate>Fri, 26 Sep 2014 13:50:32 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=420">Worf</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=835</guid>
			<description><![CDATA[Hi.<br />
<br />
Are there any addons for VB .NET to allow the viewing of 3D Models in different formats including MD2 filesas this is something I want to in my application?<br />
<br />
Many Thanks for you help]]></description>
			<content:encoded><![CDATA[Hi.<br />
<br />
Are there any addons for VB .NET to allow the viewing of 3D Models in different formats including MD2 filesas this is something I want to in my application?<br />
<br />
Many Thanks for you help]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Open Zip files into a listview box]]></title>
			<link>https://bpforums.info/showthread.php?tid=833</link>
			<pubDate>Tue, 09 Sep 2014 13:12:38 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=420">Worf</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=833</guid>
			<description><![CDATA[Hi.<br />
<br />
I'm working on my DMD To MD2 Converter program o add more features to it.<br />
<br />
One of them is to open a zip file and list the contents into a listview box and allow the user to select any files to extract.<br />
<br />
I've searched around but couldn't find what im looking for.<br />
<br />
Thank you for you help.<br />
<br />
Tony]]></description>
			<content:encoded><![CDATA[Hi.<br />
<br />
I'm working on my DMD To MD2 Converter program o add more features to it.<br />
<br />
One of them is to open a zip file and list the contents into a listview box and allow the user to select any files to extract.<br />
<br />
I've searched around but couldn't find what im looking for.<br />
<br />
Thank you for you help.<br />
<br />
Tony]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[NullReferenceException when adding item to generic list]]></title>
			<link>https://bpforums.info/showthread.php?tid=831</link>
			<pubDate>Thu, 17 Apr 2014 19:28:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=162">brco900033</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=831</guid>
			<description><![CDATA[I have a little problem that I can't seem to solve.<br />
When I try to add a value (integer) to a generic list (of integer), I always get a NullReferenceException.<br />
<br />
This is my code:<br />
[code2=vbnet]Dim listIndexes As List(Of Integer) = Nothing<br />
        For Each i As ListViewItem In Me.listKeys.Items<br />
            For Each i2 As ListViewItem In Me.listKeys.Items<br />
                If i.Text = i2.Text Then<br />
                    listIndexes.Add(i.Index) 'The error persists here: NullReferenceException<br />
                    listIndexes.Add(i2.Index) 'and propably an error here too<br />
                End If<br />
            Next<br />
        Next<br />
        Me.SelectKeys(listIndexes) 'This line just selects the items in the listview[/code2]<br />
<br />
I've discovered that the index of these two items in the listview are both zero.<br />
<br />
Hope someone can help,<br />
brco]]></description>
			<content:encoded><![CDATA[I have a little problem that I can't seem to solve.<br />
When I try to add a value (integer) to a generic list (of integer), I always get a NullReferenceException.<br />
<br />
This is my code:<br />
[code2=vbnet]Dim listIndexes As List(Of Integer) = Nothing<br />
        For Each i As ListViewItem In Me.listKeys.Items<br />
            For Each i2 As ListViewItem In Me.listKeys.Items<br />
                If i.Text = i2.Text Then<br />
                    listIndexes.Add(i.Index) 'The error persists here: NullReferenceException<br />
                    listIndexes.Add(i2.Index) 'and propably an error here too<br />
                End If<br />
            Next<br />
        Next<br />
        Me.SelectKeys(listIndexes) 'This line just selects the items in the listview[/code2]<br />
<br />
I've discovered that the index of these two items in the listview are both zero.<br />
<br />
Hope someone can help,<br />
brco]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[multiple csv files add sql server tables via VB.NET]]></title>
			<link>https://bpforums.info/showthread.php?tid=830</link>
			<pubDate>Mon, 14 Apr 2014 21:02:04 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=1075">secilsengul</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=830</guid>
			<description><![CDATA[How can i multiple csv files import to database table with VB.NET ? This an important for me. Pls help]]></description>
			<content:encoded><![CDATA[How can i multiple csv files import to database table with VB.NET ? This an important for me. Pls help]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Auto-generating Drop Menus from User Input]]></title>
			<link>https://bpforums.info/showthread.php?tid=824</link>
			<pubDate>Mon, 27 Jan 2014 00:56:08 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=1027">MadManMallard</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=824</guid>
			<description><![CDATA[I was hoping someone could help me with this. I am semi-experienced in coding, but I'll let you know if I don't understand something.<br />
<br />
I want to make the drop down menus under the menu strip buttons have traits/names based on previously entered information from text boxes.<br />
<br />
I'm trying to make a trading system for a game. So under the Trade tab, I would like it to list the names of the players that are entered manually in separate text boxes beforehand. Then, in each name, have the submenus generated by other previously entered information.<br />
<br />
I hope this is explained well enough.<br />
<br />
Thanks to all who reply! (If you need images, just request them)<br />
<br />
-Blake]]></description>
			<content:encoded><![CDATA[I was hoping someone could help me with this. I am semi-experienced in coding, but I'll let you know if I don't understand something.<br />
<br />
I want to make the drop down menus under the menu strip buttons have traits/names based on previously entered information from text boxes.<br />
<br />
I'm trying to make a trading system for a game. So under the Trade tab, I would like it to list the names of the players that are entered manually in separate text boxes beforehand. Then, in each name, have the submenus generated by other previously entered information.<br />
<br />
I hope this is explained well enough.<br />
<br />
Thanks to all who reply! (If you need images, just request them)<br />
<br />
-Blake]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Problems with dividing a string]]></title>
			<link>https://bpforums.info/showthread.php?tid=816</link>
			<pubDate>Sat, 19 Oct 2013 20:09:27 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=162">brco900033</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=816</guid>
			<description><![CDATA[I have already another question, I'm not asking how to do something for a change.<br />
<br />
I have written something but it seems that it doesn't work properly and I don't know what the problem is.<br />
<br />
The purpose of the code is to divide a key (length of key can varie) into parts of each 4 characters.<br />
[code2=vbnet]Dim strings As New List(Of String)<br />
        'Just an example of the key, this string will be generated randomly<br />
        Dim s As String = "p6s0arJHmuOQmUhIczfnynRS1dOrRxYm0EF05b5Vk1YR7TQVItShNjFJQ1L3d"<br />
        Dim i As Integer = 0<br />
        Dim intMaxNumber As Integer = CInt(Math.Round((s.Length / 4), 0))<br />
        For i = 0 To intMaxNumber Step 4<br />
            strings.Add(s.Substring(i, 4))<br />
        Next<br />
        For Each srtininglist As String In strings<br />
            MessageBox.Show(srtininglist)<br />
        Next[/code2]<br />
Everything goes fine when I debug it but it seems that the code only returns 4 parts, and it should (in this case) be about 16 parts.<br />
<br />
I'm probably making a logical mistake but I can't figure out what I'm doing wrong.<br />
<br />
<br />
Hope someone can help me out,<br />
Brecht]]></description>
			<content:encoded><![CDATA[I have already another question, I'm not asking how to do something for a change.<br />
<br />
I have written something but it seems that it doesn't work properly and I don't know what the problem is.<br />
<br />
The purpose of the code is to divide a key (length of key can varie) into parts of each 4 characters.<br />
[code2=vbnet]Dim strings As New List(Of String)<br />
        'Just an example of the key, this string will be generated randomly<br />
        Dim s As String = "p6s0arJHmuOQmUhIczfnynRS1dOrRxYm0EF05b5Vk1YR7TQVItShNjFJQ1L3d"<br />
        Dim i As Integer = 0<br />
        Dim intMaxNumber As Integer = CInt(Math.Round((s.Length / 4), 0))<br />
        For i = 0 To intMaxNumber Step 4<br />
            strings.Add(s.Substring(i, 4))<br />
        Next<br />
        For Each srtininglist As String In strings<br />
            MessageBox.Show(srtininglist)<br />
        Next[/code2]<br />
Everything goes fine when I debug it but it seems that the code only returns 4 parts, and it should (in this case) be about 16 parts.<br />
<br />
I'm probably making a logical mistake but I can't figure out what I'm doing wrong.<br />
<br />
<br />
Hope someone can help me out,<br />
Brecht]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Rename application file]]></title>
			<link>https://bpforums.info/showthread.php?tid=815</link>
			<pubDate>Sat, 12 Oct 2013 14:25:19 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=162">brco900033</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=815</guid>
			<description><![CDATA[Hi<br />
<br />
Is there a way of renaming the application file itself while it is running? I saw somewhere a code snippet to do it and I think it is possible but I can't remember how.]]></description>
			<content:encoded><![CDATA[Hi<br />
<br />
Is there a way of renaming the application file itself while it is running? I saw somewhere a code snippet to do it and I think it is possible but I can't remember how.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Usage value of properties]]></title>
			<link>https://bpforums.info/showthread.php?tid=809</link>
			<pubDate>Sat, 31 Aug 2013 14:13:13 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=162">brco900033</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=809</guid>
			<description><![CDATA[Hi, I have a little question here<br />
<br />
I'm using a lot of properties but I don't know what value to use in my other subs. I find it hard to explain so I have an example:<br />
<br />
[code2=vbnet]'This is the property itself<br />
Private _TextCancelButton As String = "Cancel"<br />
    &lt;Category("TextFields"), Description("The text shown in the Cancel button"), DefaultValue("Cancel")&gt;<br />
    Public Property TextCancelButton() As String<br />
        Get<br />
            Return _TextCancelButton<br />
        End Get<br />
        Set(value As String)<br />
            _TextCancelButton = value<br />
            cmdCancel.Text = _TextCancelButton<br />
        End Set<br />
End Property[/code2]<br />
<br />
Now what should I use know to change the text of the Cancel button, for example when another button is clicked?<br />
<br />
[code2=vbnet]cmdCancel.Text = _TextCancelButton<br />
'or<br />
cmdCancel.text = TextCancelButton[/code2]<br />
<br />
<br />
I think it is the same, or not?<br />
<br />
Thanks, Brecht]]></description>
			<content:encoded><![CDATA[Hi, I have a little question here<br />
<br />
I'm using a lot of properties but I don't know what value to use in my other subs. I find it hard to explain so I have an example:<br />
<br />
[code2=vbnet]'This is the property itself<br />
Private _TextCancelButton As String = "Cancel"<br />
    &lt;Category("TextFields"), Description("The text shown in the Cancel button"), DefaultValue("Cancel")&gt;<br />
    Public Property TextCancelButton() As String<br />
        Get<br />
            Return _TextCancelButton<br />
        End Get<br />
        Set(value As String)<br />
            _TextCancelButton = value<br />
            cmdCancel.Text = _TextCancelButton<br />
        End Set<br />
End Property[/code2]<br />
<br />
Now what should I use know to change the text of the Cancel button, for example when another button is clicked?<br />
<br />
[code2=vbnet]cmdCancel.Text = _TextCancelButton<br />
'or<br />
cmdCancel.text = TextCancelButton[/code2]<br />
<br />
<br />
I think it is the same, or not?<br />
<br />
Thanks, Brecht]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[how do you make a register system in VB using Dropbox]]></title>
			<link>https://bpforums.info/showthread.php?tid=805</link>
			<pubDate>Thu, 15 Aug 2013 01:49:52 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=498">Cecilio</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=805</guid>
			<description><![CDATA[I want to make a register system but can't seem to think of the code I made a login system so that's it downloads a string from Dropbox and compares the text from the text box and the text from the account text file but I can't seem to edit the account text file from VB to create an account or a register system hope this makes sense because its hard to do help me please]]></description>
			<content:encoded><![CDATA[I want to make a register system but can't seem to think of the code I made a login system so that's it downloads a string from Dropbox and compares the text from the text box and the text from the account text file but I can't seem to edit the account text file from VB to create an account or a register system hope this makes sense because its hard to do help me please]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Downloading from FTP server doesn't work]]></title>
			<link>https://bpforums.info/showthread.php?tid=803</link>
			<pubDate>Mon, 12 Aug 2013 16:50:59 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=162">brco900033</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=803</guid>
			<description><![CDATA[I have been working on a little project that requires downloading a file from an FTP server. The problem is that it just doesn't want to work. I have uploaded my project so you guys can read the whole code because I found a library online.<br />
<br />
Also you can acces the FTP I'm using for this test project, it is just a test server so you can't acces any of my normal files, only the file that has to be downloaded.<br />
<br />
Now the problem; in this test project I created two buttons, the first one downloads the file with the standard future of VB.NET(FtpWebRequest). <span style="font-style: italic;" class="mycode_i">The problem is that it says that the file is downloaded but the file isn't saved anywhere on the harddisk.</span><br />
<br />
The second button downloads the file using the library I've found online. Everything goes fine until it gives me the error that the file doesn't exist or that I don't have the rights to acces the file (<span style="font-style: italic;" class="mycode_i">Error code 550</span>).<br />
<br />
I had some more problems with downloading this file but found a solution by myself but this just won't work. I really have no clue on what I'm doing wrong.<br />
<br />
Hope someone can help me with this one,<br />
Brecht<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://bpforums.info/images/attachtypes/unknown.png" title="Unknown" border="0" alt=".rar" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=127" target="_blank" title="">TestDownloadFTP.rar</a> (Size: 157.83 KB / Downloads: 677)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[I have been working on a little project that requires downloading a file from an FTP server. The problem is that it just doesn't want to work. I have uploaded my project so you guys can read the whole code because I found a library online.<br />
<br />
Also you can acces the FTP I'm using for this test project, it is just a test server so you can't acces any of my normal files, only the file that has to be downloaded.<br />
<br />
Now the problem; in this test project I created two buttons, the first one downloads the file with the standard future of VB.NET(FtpWebRequest). <span style="font-style: italic;" class="mycode_i">The problem is that it says that the file is downloaded but the file isn't saved anywhere on the harddisk.</span><br />
<br />
The second button downloads the file using the library I've found online. Everything goes fine until it gives me the error that the file doesn't exist or that I don't have the rights to acces the file (<span style="font-style: italic;" class="mycode_i">Error code 550</span>).<br />
<br />
I had some more problems with downloading this file but found a solution by myself but this just won't work. I really have no clue on what I'm doing wrong.<br />
<br />
Hope someone can help me with this one,<br />
Brecht<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://bpforums.info/images/attachtypes/unknown.png" title="Unknown" border="0" alt=".rar" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=127" target="_blank" title="">TestDownloadFTP.rar</a> (Size: 157.83 KB / Downloads: 677)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Building or Publishing]]></title>
			<link>https://bpforums.info/showthread.php?tid=801</link>
			<pubDate>Wed, 07 Aug 2013 16:13:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=162">brco900033</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=801</guid>
			<description><![CDATA[I have a little question but didn't know where to place it on the forum. Because this is about programming I decided to place it here, hope it's the right place...<br />
<br />
So my question is what the difference is between the executable that has been built or the executable that has been published. Except from the installer where the published exe is stored in I don't know the difference.<br />
<br />
Thanks, Brecht]]></description>
			<content:encoded><![CDATA[I have a little question but didn't know where to place it on the forum. Because this is about programming I decided to place it here, hope it's the right place...<br />
<br />
So my question is what the difference is between the executable that has been built or the executable that has been published. Except from the installer where the published exe is stored in I don't know the difference.<br />
<br />
Thanks, Brecht]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Edit cell of DataGridView]]></title>
			<link>https://bpforums.info/showthread.php?tid=800</link>
			<pubDate>Wed, 07 Aug 2013 16:08:23 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=162">brco900033</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=800</guid>
			<description><![CDATA[Like the title itself already says: how can I edit a specific cell of a DataGridView (cell set as textbox).<br />
<br />
PS: by editing I mean changing the text.<br />
<br />
Thanks in advance, Brecht!]]></description>
			<content:encoded><![CDATA[Like the title itself already says: how can I edit a specific cell of a DataGridView (cell set as textbox).<br />
<br />
PS: by editing I mean changing the text.<br />
<br />
Thanks in advance, Brecht!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Exceptions help]]></title>
			<link>https://bpforums.info/showthread.php?tid=799</link>
			<pubDate>Sun, 04 Aug 2013 16:28:05 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=162">brco900033</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=799</guid>
			<description><![CDATA[Hello everyone<br />
<br />
I have two questions that are bothering me now for a long time but can't find any answers to it. These questions are about Exceptions in VB.NET.<br />
<br />
- I know what the Try...Catch block does, it catches any errors, but how far do you have to go? For example you want to open a file but it is<br />
possible that the file doesn't exist then you use the Try...Catch, I know that. Is it also needed for example changing the text of a textbox or editing items in a treeview...<br />
<br />
- The second question is about the Finally block. Let's say we've downloaded a file but there occurres an error during the downloading process, the Catch block catches the error... and then I want to remove the downloaded file if it exists. Then there is a possibility that the file doesn't exist so if I write<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>My.Computer.DeleteFile(pathFile)</code></div></div>in the Finally block it throws a second exception right? or does VB.NET take care of that automatically?<br />
<br />
<br />
Thanks, Brecht]]></description>
			<content:encoded><![CDATA[Hello everyone<br />
<br />
I have two questions that are bothering me now for a long time but can't find any answers to it. These questions are about Exceptions in VB.NET.<br />
<br />
- I know what the Try...Catch block does, it catches any errors, but how far do you have to go? For example you want to open a file but it is<br />
possible that the file doesn't exist then you use the Try...Catch, I know that. Is it also needed for example changing the text of a textbox or editing items in a treeview...<br />
<br />
- The second question is about the Finally block. Let's say we've downloaded a file but there occurres an error during the downloading process, the Catch block catches the error... and then I want to remove the downloaded file if it exists. Then there is a possibility that the file doesn't exist so if I write<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>My.Computer.DeleteFile(pathFile)</code></div></div>in the Finally block it throws a second exception right? or does VB.NET take care of that automatically?<br />
<br />
<br />
Thanks, Brecht]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How do you use this?]]></title>
			<link>https://bpforums.info/showthread.php?tid=797</link>
			<pubDate>Wed, 10 Jul 2013 06:06:19 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://bpforums.info/member.php?action=profile&uid=363">Ecnarf</a>]]></dc:creator>
			<guid isPermaLink="false">https://bpforums.info/showthread.php?tid=797</guid>
			<description><![CDATA[I recently downloaded Bass from &lt;!-- m --&gt;&lt;a class="postlink" href="http://www.un4seen.com/"&gt;http://www.un4seen.com/&lt;/a&gt;&lt;!-- m --&gt; and I am trying to figure out how to stream audio from a url with it and make a visualizer. I haven't been able to find a single tutorial and it is driving me insane.]]></description>
			<content:encoded><![CDATA[I recently downloaded Bass from &lt;!-- m --&gt;&lt;a class="postlink" href="http://www.un4seen.com/"&gt;http://www.un4seen.com/&lt;/a&gt;&lt;!-- m --&gt; and I am trying to figure out how to stream audio from a url with it and make a visualizer. I haven't been able to find a single tutorial and it is driving me insane.]]></content:encoded>
		</item>
	</channel>
</rss>