<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>.NET General Forum RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest threads from the '.NET General' forum at Programmer's Heaven, excluding replies.</description>
    <language>en</language>
    <copyright>Copyright 2008 Programmers Heaven</copyright>
    <pubDate>Mon, 01 Dec 2008 19:28:15 -0700</pubDate>
    <lastBuildDate>Mon, 01 Dec 2008 19:28:16 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>ODBC Connection</title>
      <link>http://www.programmersheaven.com/mb/dotnet/382440/382440/odbc-connection/</link>
      <description>I am using Visual Basic 2008 Express (can't buy full Visual Studio here at work).  I have a Windows applications connecting to an Access database.  I wrote code to update records in the database (different tables).  With one table, when I include certain fields in the update command line, I get an error "field not updateable".  The database resides on a mapped drive, so is it a permissions thing?  But why on certain fields?  They are all text/string fields.</description>
      <pubDate>Mon, 01 Dec 2008 12:59:49 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>[vs 2008] create an array from a column in a datagridview</title>
      <link>http://www.programmersheaven.com/mb/dotnet/382154/382154/vs-2008-create-an-array-from-a-column-in-a-datagridview/</link>
      <description>hi there: im new to programming and i have the following code:&lt;br /&gt;
&lt;br /&gt;
Dim dt As New DataTable&lt;br /&gt;
Dim da As New SqlClient.SqlDataAdapter("SELECT FEE_NAME, convert(varchar(50), convert(money, FEE_AMOUNT), 1) FROM FEE_TABLE ", m_Connection)&lt;br /&gt;
da.Fill(dt)&lt;br /&gt;
&lt;br /&gt;
DataGridView1.DataSource = dt&lt;br /&gt;
&lt;br /&gt;
now this will show in the datagridview as:&lt;br /&gt;
&lt;br /&gt;
_______________________&lt;br /&gt;
FEE_NAME ...| FEE_AMOUNT &lt;br /&gt;
---------------------------&lt;br /&gt;
registration..| 8,000.00&lt;br /&gt;
---------------------------&lt;br /&gt;
books.........] 4,500.00&lt;br /&gt;
---------------------------&lt;br /&gt;
uniform.......| 7,300.00&lt;br /&gt;
---------------------------&lt;br /&gt;
library........| 3,000.00&lt;br /&gt;
________________________&lt;br /&gt;
(the dots are just so i could align them)&lt;br /&gt;
&lt;br /&gt;
is it possible to put all the rows from FEE_NAME into an array when its already in the datagridview. &lt;br /&gt;
&lt;br /&gt;
so the array will show &lt;br /&gt;
array1 = ["registration" , "uniform" , "books" , "library" ]&lt;br /&gt;
&lt;br /&gt;
i have reAd that i needed to use a for each statement like:&lt;br /&gt;
&lt;br /&gt;
For Each row As DataGridViewRow In DataGridView1.Rows&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #000000;"&gt;DONT KNOW WHAT TO PUT HERE. &lt;/span&gt;:D&lt;br /&gt;
&lt;br /&gt;
Next&lt;br /&gt;
&lt;br /&gt;
because i need to add the data from the array to a new table in the database or create a view. im using ms sql server 2005 as my db. a sample code will really really help me. thanks in advance.&lt;br /&gt;</description>
      <pubDate>Sun, 23 Nov 2008 04:09:47 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>[vs 2008] create an array from a column in a datagridview</title>
      <link>http://www.programmersheaven.com/mb/dotnet/382153/382153/vs-2008-create-an-array-from-a-column-in-a-datagridview/</link>
      <description>hi there: im new to programming and i have the following code:&lt;br /&gt;
&lt;br /&gt;
Dim dt As New DataTable&lt;br /&gt;
Dim da As New SqlClient.SqlDataAdapter("SELECT FEE_NAME, convert(varchar(50), convert(money, FEE_AMOUNT), 1) FROM FEE_TABLE ", m_Connection)&lt;br /&gt;
da.Fill(dt)&lt;br /&gt;
&lt;br /&gt;
DataGridView1.DataSource = dt&lt;br /&gt;
&lt;br /&gt;
now this will show in the datagridview as:&lt;br /&gt;
&lt;br /&gt;
_______________________&lt;br /&gt;
FEE_NAME ...| FEE_AMOUNT &lt;br /&gt;
---------------------------&lt;br /&gt;
registration..| 8,000.00&lt;br /&gt;
---------------------------&lt;br /&gt;
books.........] 4,500.00&lt;br /&gt;
---------------------------&lt;br /&gt;
uniform.......| 7,300.00&lt;br /&gt;
---------------------------&lt;br /&gt;
library........| 3,000.00&lt;br /&gt;
________________________&lt;br /&gt;
(the dots are just so i could align them)&lt;br /&gt;
&lt;br /&gt;
is it possible to put all the rows from FEE_NAME into an array when its already in the datagridview. &lt;br /&gt;
&lt;br /&gt;
so the array will show &lt;br /&gt;
array1 = ["registration" , "uniform" , "books" , "library" ]&lt;br /&gt;
&lt;br /&gt;
i have reAd that i needed to use a for each statement like:&lt;br /&gt;
&lt;br /&gt;
For Each row As DataGridViewRow In DataGridView1.Rows&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #000000;"&gt;DONT KNOW WHAT TO PUT HERE. &lt;/span&gt;:D&lt;br /&gt;
&lt;br /&gt;
Next&lt;br /&gt;
&lt;br /&gt;
because i need to add the data from the array to a new table in the database or create a view. im using ms sql server 2005 as my db. a sample code will really really help me. thanks in advance.&lt;br /&gt;</description>
      <pubDate>Sun, 23 Nov 2008 04:09:27 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>VB.Net Windows Service Issue</title>
      <link>http://www.programmersheaven.com/mb/dotnet/382073/382073/vbnet-windows-service-issue/</link>
      <description>Hello Everyone,&lt;br /&gt;
 &lt;br /&gt;
I am stuck with a minor issue related to a Windows Service made in VB.Net (framework 2.0). The service is working as expected for few printing documents and not for others. &lt;br /&gt;
 &lt;br /&gt;
The actual expectation for Windows Service is to periodically check for new Work Orders raised and print the respective Work Order (MS-Word) document (located on a network using UNC path) on a predefined network printer. This is done perfectly fine, barring few word documents and I am not sure for what reason. Let me know in case if you would like to have more information to help me.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Saurabh&lt;br /&gt;</description>
      <pubDate>Thu, 20 Nov 2008 08:00:38 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Html parsing with mshtml. offsets (offsetLeft etc.) always are zero</title>
      <link>http://www.programmersheaven.com/mb/dotnet/381977/381977/html-parsing-with-mshtml-offsets-offsetleft-etc-always-are-zero/</link>
      <description>Hello. I want to learn positions of all elements on a page. I do so:&lt;br /&gt;
  &lt;br /&gt;
&lt;pre class="sourcecode"&gt;  public class MsHtmlSharpParser {

    IHTMLDocument2 htmlDocument;
    public HtmlTreeNode htmlTree;

    public MsHtmlSharpParser() {
      htmlDocument = new HTMLDocumentClass();
    }
    public void LoadContent(string content) {
      htmlDocument.write(new object[] { content });
      htmlDocument.close();
      ((HTMLDocumentClass)htmlDocument).recalc(true);
      htmlTree = new HtmlTreeNode((IHTMLDOMNode)htmlDocument.body);
    }
  }



  public class HtmlTreeNode {
    public IHTMLDOMNode htmlDomNode;
    public List&amp;lt;HtmlTreeNode&amp;gt; children;

    internal HtmlTreeNode(IHTMLDOMNode htmlElement) {
      this.htmlDomNode = htmlElement;
      children = new List&amp;lt;HtmlTreeNode&amp;gt;();
      IHTMLDOMChildrenCollection collection = (IHTMLDOMChildrenCollection)htmlElement.childNodes
;
      int i1, n1 = collection.length;
      for(i1=0;i1&amp;lt;n1;i1++)
        children.Add(new HtmlTreeNode((IHTMLDOMNode)collection.item(i1)));
    }

    public void GetAbsolutePosition(out int x, out int y, out int width, out int height) {
      if (htmlDomNode is IHTMLElement) {
        x = 0;
        y = 0;
        x = ((IHTMLElement)htmlDomNode).offsetLeft;
        y = ((IHTMLElement)htmlDomNode).offsetTop;

        IHTMLElement offsetParent = ((IHTMLElement)htmlDomNode).offsetParent;
        IHTMLDOMNode parentNode = htmlDomNode.parentNode;

        while (offsetParent != null) {
          x += offsetParent.offsetLeft;
          y += offsetParent.offsetTop;
          parentNode = ((IHTMLDOMNode)offsetParent).parentNode;
          offsetParent = offsetParent.offsetParent;
        }
        width = ((IHTMLElement)htmlDomNode).offsetWidth;
        height = ((IHTMLElement)htmlDomNode).offsetHeight;
      } else
        x = y = width = height = -1;
    }
  }&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
I call LoadContent to load html page and parse it. It works successifully, the object tree is built. But if I try to call GetAbsolutePosition, I will see that offsetHeight, offsetWidth, offsetLeft and offsetTop always return zero. Why is it so and how to solve this problem?&lt;br /&gt;
&lt;br /&gt;
Thank you.&lt;br /&gt;</description>
      <pubDate>Mon, 17 Nov 2008 14:59:41 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Vb.net 2005 help for tabcontrol.........</title>
      <link>http://www.programmersheaven.com/mb/dotnet/381702/381702/vbnet-2005-help-for-tabcontrol/</link>
      <description>&lt;br /&gt;
hi.&lt;br /&gt;
really i am new to the .net programing.&lt;br /&gt;
i am developing a application in that there is a tree view on left side&lt;br /&gt;
 and i have done the coding for showing the 3 panels for 3 tree nodes...&lt;br /&gt;
i want to display a tabcontrol placed on a panel on the 4th node........&lt;br /&gt;
can some 1 help me to do that ...&lt;br /&gt;
can any one give me sample code with simplicity as  i am new to .net programming....... &lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Mon, 10 Nov 2008 09:12:25 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>vb.net application inside a chrome-like frame</title>
      <link>http://www.programmersheaven.com/mb/dotnet/381700/381700/vbnet-application-inside-a-chrome-like-frame/</link>
      <description>Hello world, &lt;br /&gt;
&lt;br /&gt;
I have a vb.net application containing a ticker and 2 listviews.&lt;br /&gt;
I have also attached a picture with the way I would like to present the ticker and the listviews. As you can see I want to present them inside a silver/chrome-like frame, just like an old monitor. &lt;br /&gt;
What's the best way to do something like this? And is it possible to do it all in vbnet, or do I have to use asp.net for example??&lt;br /&gt;
Unfortunately I'm not a layout-man so I have no clue.&lt;br /&gt;
Any help is appreciated &lt;br /&gt;
&lt;br&gt;&lt;br&gt;&lt;strong&gt;Attachment:&lt;/strong&gt; &lt;a href="http://www.programmersheaven.com/mb/DownloadAttachment.aspx?AttachmentID=324"&gt;Kwazulu Natal.jpg&lt;/a&gt; (30422 bytes | downloaded 21 times)</description>
      <pubDate>Mon, 10 Nov 2008 09:01:56 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>DHTML or Silveright please help..</title>
      <link>http://www.programmersheaven.com/mb/dotnet/381686/381686/dhtml-or-silveright-please-help/</link>
      <description>&lt;br /&gt;
 I am developing an enterprise application and I am still not sure if I should use DHTML or Silverlight. &lt;br /&gt;
&lt;br /&gt;
I have some concerns regarding Silverlight's security because it is a&lt;br /&gt;
 client-side applications.&lt;br /&gt;
&lt;br /&gt;
 Does anyone who have experienced with Silverlight applications can answer this?&lt;br /&gt;</description>
      <pubDate>Mon, 10 Nov 2008 03:52:43 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>How to Sort by 2 keys using VB.NET</title>
      <link>http://www.programmersheaven.com/mb/dotnet/381648/381648/how-to-sort-by-2-keys-using-vbnet/</link>
      <description>Using - VS 2003&lt;br /&gt;
I would like to read the below XML and sort by (SORT_ID &amp;amp; SEQ_ID)? It is work to use XSLT. However, without XSLT what's the best way for me to do? Can i use the sortedlist with multiple key (SORT_ID &amp;amp; SEQ_ID)? Thanks for reading it and welcome if you have some sample code for me to do it. Thanks&lt;br /&gt;
**************************************************
*********************&lt;br /&gt;
	&amp;lt;group_1&amp;gt;&lt;br /&gt;
		&amp;lt;first&amp;gt;Phil&amp;lt;/first&amp;gt;&lt;br /&gt;
		&amp;lt;salary&amp;gt;100000&amp;lt;/salary&amp;gt;&lt;br /&gt;
		&amp;lt;SORT_ID&amp;gt;2&amp;lt;/SORT_ID&amp;gt;&lt;br /&gt;
		&amp;lt;SEQ_ID&amp;gt;1&amp;lt;/SEQ_ID&amp;gt;&lt;br /&gt;
	&amp;lt;/group_1&amp;gt;&lt;br /&gt;
	&amp;lt;group_1&amp;gt;&lt;br /&gt;
		&amp;lt;first&amp;gt;Graham&amp;lt;/first&amp;gt;&lt;br /&gt;
		&amp;lt;salary&amp;gt;89000&amp;lt;/salary&amp;gt;&lt;br /&gt;
		&amp;lt;SORT_ID&amp;gt;1&amp;lt;/SORT_ID&amp;gt;&lt;br /&gt;
		&amp;lt;SEQ_ID&amp;gt;2&amp;lt;/SEQ_ID&amp;gt;&lt;br /&gt;
	&amp;lt;/group_1&amp;gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Sat, 08 Nov 2008 09:33:48 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>"Stealing" File Handles</title>
      <link>http://www.programmersheaven.com/mb/dotnet/381456/381456/stealing-file-handles/</link>
      <description>For a project I am working on, i need to read from a log file in real time to keep track of program activity.  Problem is, the log only flushes when the buffer of log messages reaches a certain size.  Currently, I have a FileSystemWatcher class to notify me when the log flushes, at which point i copy the log file and scan for relevant entries.  Is there a way to read the log messages as they are sent to the file IO buffer?&lt;br /&gt;</description>
      <pubDate>Fri, 31 Oct 2008 16:15:36 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>I want your advice</title>
      <link>http://www.programmersheaven.com/mb/dotnet/381280/381280/i-want-your-advice/</link>
      <description>Hi to all of you &lt;br /&gt;
I am praparing for the : &lt;br /&gt;
Microsoft Exam 70-306 &lt;br /&gt;
Developing and Implementing Windows-Based Applications with Microsoft Visual Basic .NET and Microsoft Visual Studio .NET &lt;br /&gt;
&lt;br /&gt;
and I have almost finished reading the book: &lt;br /&gt;
MCAD/MCSD Self-Paced Training Kit: Developing Windows-Based Applications with Microsoft Visual Basic.NET and Microsoft Visual C#.NET, Second Edition &lt;br /&gt;
&lt;br /&gt;
The book is very clear and good But: Does it focus on the skills needed by the Exam? &lt;br /&gt;
&lt;br /&gt;
There is a study Guide that I can buy from TestKing and it mentioned it will be very helpful to pass the exam. &lt;br /&gt;
&lt;br /&gt;
Have any of you tried it ? &lt;br /&gt;
Is it easier to study from before the exam than the book? &lt;br /&gt;
&lt;br /&gt;
Waiting for your reply &lt;br /&gt;
Thanks &lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Mon, 20 Oct 2008 08:26:27 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>ebooks</title>
      <link>http://www.programmersheaven.com/mb/dotnet/378676/378676/ebooks/</link>
      <description>ca  please assist me the tutorial for .net , java&lt;br /&gt;</description>
      <pubDate>Fri, 10 Oct 2008 22:47:06 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Using axwebbrowser control and thread locking app</title>
      <link>http://www.programmersheaven.com/mb/dotnet/378497/378497/using-axwebbrowser-control-and-thread-locking-app/</link>
      <description>When i try to run the program, it just hangs. If i remove the axwebbrowser control it works fine. &lt;br /&gt;
&lt;br /&gt;
Any ideas?&lt;br /&gt;
&lt;br /&gt;
Here is my code:&lt;br /&gt;
&lt;br /&gt;
class1.vb&lt;br /&gt;
Imports System.Windows.Forms&lt;br /&gt;
Imports System.Threading&lt;br /&gt;
&lt;br /&gt;
Public Class Class1&lt;br /&gt;
Public Shared form1 As New Form1&lt;br /&gt;
&lt;br /&gt;
Shared Sub Main(ByVal Args() As String)&lt;br /&gt;
Dim t2 As Thread&lt;br /&gt;
&lt;br /&gt;
t2 = New Thread(AddressOf screen)&lt;br /&gt;
t2.Start()&lt;br /&gt;
&lt;br /&gt;
End Sub&lt;br /&gt;
Shared Sub screen()&lt;br /&gt;
&lt;br /&gt;
form1.ShowDialog()&lt;br /&gt;
End Sub&lt;br /&gt;
End Class&lt;br /&gt;
&lt;br /&gt;
Form&lt;br /&gt;
Public Class Form1&lt;br /&gt;
Inherits System.Windows.Forms.Form&lt;br /&gt;
&lt;br /&gt;
#Region " Windows Form Designer generated code "&lt;br /&gt;
&lt;br /&gt;
Public Sub New()&lt;br /&gt;
MyBase.New()&lt;br /&gt;
&lt;br /&gt;
'This call is required by the Windows Form Designer.&lt;br /&gt;
InitializeComponent()&lt;br /&gt;
&lt;br /&gt;
'Add any initialization after the InitializeComponent() call&lt;br /&gt;
&lt;br /&gt;
End Sub&lt;br /&gt;
&lt;br /&gt;
'Form overrides dispose to clean up the component list.&lt;br /&gt;
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)&lt;br /&gt;
If disposing Then&lt;br /&gt;
If Not (components Is Nothing) Then&lt;br /&gt;
components.Dispose()&lt;br /&gt;
End If&lt;br /&gt;
End If&lt;br /&gt;
MyBase.Dispose(disposing)&lt;br /&gt;
End Sub&lt;br /&gt;
&lt;br /&gt;
'Required by the Windows Form Designer&lt;br /&gt;
Private components As System.ComponentModel.IContainer&lt;br /&gt;
&lt;br /&gt;
'NOTE: The following procedure is required by the Windows Form Designer&lt;br /&gt;
'It can be modified using the Windows Form Designer. &lt;br /&gt;
'Do not modify it using the code editor.&lt;br /&gt;
Friend WithEvents AxWebBrowser1 As AxSHDocVw.AxWebBrowser&lt;br /&gt;
Friend WithEvents Button1 As System.Windows.Forms.Button&lt;br /&gt;
&amp;lt;System.Diagnostics.DebuggerStepThrough()&amp;gt; Private Sub InitializeComponent()&lt;br /&gt;
Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(Form1))&lt;br /&gt;
Me.AxWebBrowser1 = New AxSHDocVw.AxWebBrowser&lt;br /&gt;
Me.Button1 = New System.Windows.Forms.Button&lt;br /&gt;
CType(Me.AxWebBrowser1, System.ComponentModel.ISupportInitialize).BeginIni t()&lt;br /&gt;
Me.SuspendLayout()&lt;br /&gt;
'&lt;br /&gt;
'AxWebBrowser1&lt;br /&gt;
'&lt;br /&gt;
Me.AxWebBrowser1.Enabled = True&lt;br /&gt;
Me.AxWebBrowser1.Location = New System.Drawing.Point(48, 24)&lt;br /&gt;
Me.AxWebBrowser1.OcxState = CType(resources.GetObject("AxWebBrowser1.OcxState"
), System.Windows.Forms.AxHost.State)&lt;br /&gt;
Me.AxWebBrowser1.Size = New System.Drawing.Size(300, 150)&lt;br /&gt;
Me.AxWebBrowser1.TabIndex = 0&lt;br /&gt;
'&lt;br /&gt;
'Button1&lt;br /&gt;
'&lt;br /&gt;
Me.Button1.Location = New System.Drawing.Point(440, 72)&lt;br /&gt;
Me.Button1.Name = "Button1"&lt;br /&gt;
Me.Button1.TabIndex = 1&lt;br /&gt;
Me.Button1.Text = "Button1"&lt;br /&gt;
'&lt;br /&gt;
'Form1&lt;br /&gt;
'&lt;br /&gt;
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)&lt;br /&gt;
Me.ClientSize = New System.Drawing.Size(584, 272)&lt;br /&gt;
Me.Controls.Add(Me.Button1)&lt;br /&gt;
Me.Controls.Add(Me.AxWebBrowser1)&lt;br /&gt;
Me.Name = "Form1"&lt;br /&gt;
Me.Text = "Form1"&lt;br /&gt;
CType(Me.AxWebBrowser1, System.ComponentModel.ISupportInitialize).EndInit( )&lt;br /&gt;
Me.ResumeLayout(False)&lt;br /&gt;
&lt;br /&gt;
End Sub&lt;br /&gt;
&lt;br /&gt;
#End Region&lt;br /&gt;
&lt;br /&gt;
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load&lt;br /&gt;
'Me.AxWebBrowser1.Navigate("http://www.ibm.com")&lt;br /&gt;
End Sub&lt;br /&gt;
End Class &lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Thu, 09 Oct 2008 08:01:04 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Error when connecting to mysql database</title>
      <link>http://www.programmersheaven.com/mb/dotnet/375879/375879/error-when-connecting-to-mysql-database/</link>
      <description>I posted some questions about connecting to a mysql database in vb.net 2008.&lt;br /&gt;
&lt;br /&gt;
Well it works super gr8 but theres only 1 problem :P.&lt;br /&gt;
&lt;br /&gt;
If i want to run the program on a other pc then he gets an error when starts my program:&lt;br /&gt;
&lt;br /&gt;
Zie het einde van dit bericht voor meer informatie over het aanroepen &lt;br /&gt;
van JIT-foutopsporing (Just In Time) in plaats van dit dialoogvenster.&lt;br /&gt;
&lt;br /&gt;
************** Tekst van uitzondering **************&lt;br /&gt;
System.IO.FileNotFoundException: Kan bestand of assembly MySql.Data, Version=5.2.3.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d of een van de afhankelijkheden hiervan niet laden. Het systeem kan het opgegeven bestand niet vinden.&lt;br /&gt;
Bestandsnaam: MySql.Data, Version=5.2.3.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d&lt;br /&gt;
   bij MailProgram.Form4.Button3_Click(Object sender, EventArgs e)&lt;br /&gt;
   bij System.Windows.Forms.Control.OnClick(EventArgs e)&lt;br /&gt;
   bij System.Windows.Forms.Button.OnClick(EventArgs e)&lt;br /&gt;
   bij System.Windows.Forms.Button.OnMouseUp(MouseEventAr
gs mevent)&lt;br /&gt;
   bij System.Windows.Forms.Control.WmMouseUp(Message&amp;amp; m, MouseButtons button, Int32 clicks)&lt;br /&gt;
   bij System.Windows.Forms.Control.WndProc(Message&amp;amp; m)&lt;br /&gt;
   bij System.Windows.Forms.ButtonBase.WndProc(Message&amp;amp; m)&lt;br /&gt;
   bij System.Windows.Forms.Button.WndProc(Message&amp;amp; m)&lt;br /&gt;
   bij System.Windows.Forms.Control.ControlNativeWindow.O
nMessage(Message&amp;amp; m)&lt;br /&gt;
   bij System.Windows.Forms.Control.ControlNativeWindow.W
ndProc(Message&amp;amp; m)&lt;br /&gt;
   bij System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)&lt;br /&gt;
&lt;br /&gt;
WRSCH: registratie van assembly-bindingen is uitgeschakeld.&lt;br /&gt;
Als u assembly-bindingsfouten wilt registreren, stelt u de registerwaarde [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) in op 1.&lt;br /&gt;
Opmerking: er is een prestatiestraf gekoppeld aan de registratie van assembly-bindingsfouten.&lt;br /&gt;
Als u deze functie wilt uitschakelen, verwijdert u de registerwaarde [HKLM\Software\Microsoft\Fusion!EnableLog].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
************** Geladen assembly's **************&lt;br /&gt;
mscorlib&lt;br /&gt;
    Assembly-versie: 2.0.0.0&lt;br /&gt;
    Win32-versie: 2.0.50727.1434 (REDBITS.050727-1400)&lt;br /&gt;
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50
727/mscorlib.dll&lt;br /&gt;
----------------------------------------&lt;br /&gt;
Supernova&lt;br /&gt;
    Assembly-versie: 1.0.0.0&lt;br /&gt;
    Win32-versie: 1.0.0.0&lt;br /&gt;
    CodeBase: file:///C:/Users/Robrecht/AppData/Local/Temp/Rar$E
X02.161/Supernova.exe&lt;br /&gt;
----------------------------------------&lt;br /&gt;
Microsoft.VisualBasic&lt;br /&gt;
    Assembly-versie: 8.0.0.0&lt;br /&gt;
    Win32-versie: 8.0.50727.1434 (REDBITS.050727-1400)&lt;br /&gt;
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.Vis
ualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.Visua
lBasic.dll&lt;br /&gt;
----------------------------------------&lt;br /&gt;
System&lt;br /&gt;
    Assembly-versie: 2.0.0.0&lt;br /&gt;
    Win32-versie: 2.0.50727.1434 (REDBITS.050727-1400)&lt;br /&gt;
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.
0__b77a5c561934e089/System.dll&lt;br /&gt;
----------------------------------------&lt;br /&gt;
System.Windows.Forms&lt;br /&gt;
    Assembly-versie: 2.0.0.0&lt;br /&gt;
    Win32-versie: 2.0.50727.1434 (REDBITS.050727-1400)&lt;br /&gt;
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Window
s.Forms/2.0.0.0__b77a5c561934e089/System.Windows.F
orms.dll&lt;br /&gt;
----------------------------------------&lt;br /&gt;
System.Drawing&lt;br /&gt;
    Assembly-versie: 2.0.0.0&lt;br /&gt;
    Win32-versie: 2.0.50727.1434 (REDBITS.050727-1400)&lt;br /&gt;
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawin
g/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll&lt;br /&gt;
----------------------------------------&lt;br /&gt;
System.Runtime.Remoting&lt;br /&gt;
    Assembly-versie: 2.0.0.0&lt;br /&gt;
    Win32-versie: 2.0.50727.1434 (REDBITS.050727-1400)&lt;br /&gt;
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Runtim
e.Remoting/2.0.0.0__b77a5c561934e089/System.Runtim
e.Remoting.dll&lt;br /&gt;
----------------------------------------&lt;br /&gt;
System.Windows.Forms.resources&lt;br /&gt;
    Assembly-versie: 2.0.0.0&lt;br /&gt;
    Win32-versie: 2.0.50727.1434 (REDBITS.050727-1400)&lt;br /&gt;
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Window
s.Forms.resources/2.0.0.0_nl_b77a5c561934e089/Syst
em.Windows.Forms.resources.dll&lt;br /&gt;
----------------------------------------&lt;br /&gt;
mscorlib.resources&lt;br /&gt;
    Assembly-versie: 2.0.0.0&lt;br /&gt;
    Win32-versie: 2.0.50727.1434 (REDBITS.050727-1400)&lt;br /&gt;
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50
727/mscorlib.dll&lt;br /&gt;
----------------------------------------&lt;br /&gt;
&lt;br /&gt;
************** JIT-foutopsporing **************&lt;br /&gt;
Als u JIT-foutopsporing wilt inschakelen, moet in het configuratiebestand voor deze&lt;br /&gt;
toepassing of computer (machine.config) de waarde&lt;br /&gt;
jitDebugging in het gedeelte system.windows.forms zijn ingesteld.&lt;br /&gt;
De toepassing moet ook zijn gecompileerd terwijl foutopsporing&lt;br /&gt;
was ingeschakeld.&lt;br /&gt;
&lt;br /&gt;
Bijvoorbeeld:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;configuration&amp;gt;&lt;br /&gt;
    &amp;lt;system.windows.forms jitDebugging="true" /&amp;gt;&lt;br /&gt;
&amp;lt;/configuration&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Wanneer JIT-foutopsporing is ingeschakeld, worden onverwerkte uitzonderingen&lt;br /&gt;
naar het JIT-foutopsporingsprogramma gestuurd dat op de computer is geregistreerd&lt;br /&gt;
en worden niet door dit dialoogvenster verwerkt."^&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I hope someone can help me?&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Tue, 23 Sep 2008 02:58:36 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Pinvoke DLL Need help</title>
      <link>http://www.programmersheaven.com/mb/dotnet/375376/375376/pinvoke-dll-need-help/</link>
      <description>I am trying to complete my project with third party dll using vb.net , &lt;br /&gt;
i cant call the function RDA_ReadAlarmList as below , &lt;br /&gt;
this function call return a integer value and receive the RDA_ReadAlarmList Structure and RDA_AlarmSearchParam as a parameter. &lt;br /&gt;
&lt;br /&gt;
Hope the bro here can help me on this , already headache for few week on this .. what --&amp;gt; RDS_AlarmList **outAlarmList means ? &lt;br /&gt;
Structure array ? How should i call this in vb.net ? &lt;br /&gt;
&lt;br /&gt;
Function&lt;br /&gt;
10.8.1 It acquires an alarm list ( The asynchronousness ).&lt;br /&gt;
&lt;br /&gt;
int WINAPI RDA_ReadAlarmList(RDS_AlarmList **outAlarmList, RDS_AlarmSearchParam *inAlarmSearchParam);&lt;br /&gt;
&lt;br /&gt;
Structure&lt;br /&gt;
11.8.4 The alarm list search parameter&lt;br /&gt;
typedef struct {&lt;br /&gt;
RDE_SearchDir dir; The direction of the search&lt;br /&gt;
RDE_SearchMode mode; The browse mode&lt;br /&gt;
int num; The number of the searches (1-1000)&lt;br /&gt;
bool senser[16]; The sensor true...The sensor is valid.&lt;br /&gt;
int year; The year ( The 4 digit Christian era )&lt;br /&gt;
int month; The month (1-12)&lt;br /&gt;
int day; The day (1-31)&lt;br /&gt;
int hour; The hour (0-23)&lt;br /&gt;
int minute; The minute (0-59)&lt;br /&gt;
int second; The second (0-59)&lt;br /&gt;
} RDS_AlarmSearchParam;&lt;br /&gt;
&lt;br /&gt;
11.8.4 The alarm list item&lt;br /&gt;
typedef struct {&lt;br /&gt;
int listNumber; The list supervision number (0-9999)&lt;br /&gt;
int alarmNumber; The alarm list number (1-10000)&lt;br /&gt;
bool isEnable; The alarm validity / the invalidity ( true: Valid, false: Invalid )&lt;br /&gt;
int year; The year ( 4 digits )&lt;br /&gt;
int month; The month (1-12)&lt;br /&gt;
int day; The day (1-31)&lt;br /&gt;
int hour; The hour (0-23)&lt;br /&gt;
int minute; The minute (0-59)&lt;br /&gt;
int second; The second (0-59)&lt;br /&gt;
int block; The device index&lt;br /&gt;
int field; The field number&lt;br /&gt;
int drive; The playback point drive number&lt;br /&gt;
int vol; The playback point VOLUME number&lt;br /&gt;
int camera; The camera number ( 0: The emergency, 1-: The camera number )&lt;br /&gt;
RDE_Alarm alarmType; The alarm type&lt;br /&gt;
} RDS_AlarmList;&lt;br /&gt;</description>
      <pubDate>Tue, 16 Sep 2008 13:07:14 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Solution of all type of .NET programming error</title>
      <link>http://www.programmersheaven.com/mb/dotnet/375351/375351/solution-of-all-type-of-net-programming-error/</link>
      <description>Dear Friends,&lt;br /&gt;
&lt;br /&gt;
get solution of all type of programming bugs in AJAX, VS.NET,ASP.NET,Web service, Sql server and much more&lt;br /&gt;
&lt;br /&gt;
Click below link to get solution.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://bugtrace.blogspot.com"&gt;http://bugtrace.blogspot.com&lt;/a&gt;&lt;br /&gt;</description>
      <pubDate>Mon, 15 Sep 2008 21:57:44 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Word to PDF By Programmatically</title>
      <link>http://www.programmersheaven.com/mb/dotnet/375033/375033/word-to-pdf-by-programmatically/</link>
      <description>Dear All,&lt;br /&gt;
&lt;br /&gt;
Greetings~&lt;br /&gt;
&lt;br /&gt;
We have new project and its objective is to convert word document into PDF using C#.&lt;br /&gt;
&lt;br /&gt;
Step 1: Open the Word Document &lt;br /&gt;
Step 2: Initialize the settings for printing*&lt;br /&gt;
Step 3: Print the document to PDF.&lt;br /&gt;
&lt;br /&gt;
*&lt;br /&gt;
Layout: same as word document&lt;br /&gt;
margin: All margins 1 Inches&lt;br /&gt;
Paper Size: Letter&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I have doubt in Step 2 and Step 3.  Could you help me to complete step 2 and step 3.  Any suggestions would be really a great help for me since i am beginner in C#.&lt;br /&gt;
&lt;br /&gt;
Thanks in advance&lt;br /&gt;
Ram&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Tue, 09 Sep 2008 00:19:03 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Need some career advice.</title>
      <link>http://www.programmersheaven.com/mb/dotnet/375020/375020/need-some-career-advice/</link>
      <description>&lt;a href="http://www.abington.psu.edu//psasite/ce/ocprodev/net.html#intro"&gt;http://www.abington.psu.edu//psasite/ce/ocprodev/net.html#intro&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I am thinking of getting into programming. I have been in IT support for the last 8 years (I am sure that experience is not helpful). To be honest I am a bit scared. My fear, "Is this the right choice for me?" I know I want to get into programming, but there are so many choices. What kind of traits do you need to be a programmer? Thanks in advance for your responses. &lt;br /&gt;</description>
      <pubDate>Mon, 08 Sep 2008 12:40:33 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>DOT NET Interview Questions</title>
      <link>http://www.programmersheaven.com/mb/dotnet/374992/374992/dot-net-interview-questions/</link>
      <description>Dear Friends,&lt;br /&gt;
&lt;br /&gt;
Huge collection of DOT NET Interview questions including ASP.NET,ADO.NET,Visual Source safe, DOT NET Framework,OOPS. this material will be very helpful to you in interview.&lt;br /&gt;
&lt;br /&gt;
Visit &lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://aspnet2008.blogspot.com/"&gt;http://aspnet2008.blogspot.com/&lt;/a&gt;&lt;br /&gt;</description>
      <pubDate>Sun, 07 Sep 2008 22:35:10 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Free IT Books, Free Java books, Free J2EE books, Free .NET books</title>
      <link>http://www.programmersheaven.com/mb/dotnet/374652/374652/free-it-books-free-java-books-free-j2ee-books-free-net-books/</link>
      <description>Dear Friends,&lt;br /&gt;
&lt;br /&gt;
You are free to download ebooks of AJAX, ASP.NET, VB.NET, SQL Server, PHP, JAVA, software, oracle, Unix, Google Adsense, Linus, SAP, Pearl and much more.&lt;br /&gt;
&lt;br /&gt;
Download from &lt;br /&gt;
&lt;a href="http://freedownload12.blogspot.com/"&gt;http://freedownload12.blogspot.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Fri, 29 Aug 2008 23:38:22 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>FREE .NET EBOOKS</title>
      <link>http://www.programmersheaven.com/mb/dotnet/374542/374542/free-net-ebooks/</link>
      <description>hi,&lt;br /&gt;
&lt;br /&gt;
You can find really helpful .NET books at the following link...&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://books-pdf.blogspot.com/search/label/Free%20.NET%20eBooks"&gt;http://books-pdf.blogspot.com/search/label/Free%20.NET%20eBooks&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://books-pdf.blogspot.com"&gt;http://books-pdf.blogspot.com&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://freebooksandmagazines.blogspot.com"&gt;http://freebooksandmagazines.blogspot.com&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.ebooksboard.com/"&gt;http://www.ebooksboard.com/&lt;/a&gt;</description>
      <pubDate>Tue, 26 Aug 2008 12:10:53 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Windows Mobile Applications</title>
      <link>http://www.programmersheaven.com/mb/dotnet/374521/374521/windows-mobile-applications/</link>
      <description>Which namespace i can use for database connectivity in .NET 2.0 for windows mobile applications &lt;br /&gt;</description>
      <pubDate>Mon, 25 Aug 2008 23:40:22 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Using Interop to Interact with VB6 ActiveX (COM) Objects</title>
      <link>http://www.programmersheaven.com/mb/dotnet/374236/374236/using-interop-to-interact-with-vb6-activex-com-objects/</link>
      <description>I'm having an Interop problem that can be simplified to the following scenario:&lt;br /&gt;
&lt;br /&gt;
DLL A, written in VB6, exposes a COM object named Widget.&lt;br /&gt;
&lt;br /&gt;
DLL B, written in VB6, references DLL A and exposes a COM object named Test with a method named TakeIt that takes a parameter that is an array of Widgets.&lt;br /&gt;
&lt;br /&gt;
Program C, written in VB.NET, imports DLL A and DLL B.  It creates an array of Widget objects and passes it to the TakeIt method of a Test object.&lt;br /&gt;
&lt;br /&gt;
This generates a System.ArgumentException with a parameter name of typeName@0.&lt;br /&gt;
&lt;br /&gt;
Individual Widget objects can be passed without problem.  If the Widget object is exposed by DLL B rather than DLL A, so that Test and Widget are defined in the same DLL, array passing succeeds.&lt;br /&gt;
&lt;br /&gt;
If anyone would like sample code demonstrating this problem, I can provide it.&lt;br /&gt;</description>
      <pubDate>Mon, 18 Aug 2008 09:40:13 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Server's COM in client context</title>
      <link>http://www.programmersheaven.com/mb/dotnet/374128/374128/servers-com-in-client-context/</link>
      <description>Hello.&lt;br /&gt;
&lt;br /&gt;
I'm trying to create COM object (ASP.NET) - server side that will be in the context of the client's web configuration.&lt;br /&gt;
&lt;br /&gt;
Is it a IIS configuration?   Assembly config?&lt;br /&gt;
&lt;br /&gt;
Any help will be great.&lt;br /&gt;</description>
      <pubDate>Wed, 13 Aug 2008 07:01:03 -0700</pubDate>
      <category>.NET General</category>
    </item>
    <item>
      <title>Issue with WCF service</title>
      <link>http://www.programmersheaven.com/mb/dotnet/374100/374100/issue-with-wcf-service/</link>
      <description>&lt;br /&gt;
We have a WCF service running on IIS in one of the machine. This service is supposed to write a file on another machine.&lt;br /&gt;
&lt;br /&gt;
We follow the windows credentials for authenticating the client and carry the same credentials to write a file on the other machine.&lt;br /&gt;
&lt;br /&gt;
Our  network setup doesn’t allows to do so. When we try to access a remote machine with the client credentials it does throws an exception as stated below.&lt;br /&gt;
&lt;br /&gt;
==================================================
==================================================
===================&lt;br /&gt;
&lt;br /&gt;
System.UnauthorizedAccessException: Access to the path '\\....\.....\abc.txt' is denied.&lt;br /&gt;
&lt;br /&gt;
==================================================
==================================================
==================&lt;br /&gt;
&lt;br /&gt;
When we try to mount the client and the server in the same machine, it works out well. In another case when we try having a client and server in two different machines and write a file on server it works well &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Problem arises when we try to have all three in 3 different machines.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When we tried in Microsoft Knowledge base and other codeplex sites, it stated,&lt;br /&gt;
&lt;br /&gt;
            Use Delegation to Access Network Resources &lt;br /&gt;
&lt;br /&gt;
                If your WCF service runs under the Network Service account, configure your computer account in Active Directory to be trusted for delegation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Even we tried this but result is the same.Can anyone help me on this.Pls provide the settings that should be provided for the delegation in the web.config and app.config.&lt;br /&gt;
&lt;br /&gt;</description>
      <pubDate>Tue, 12 Aug 2008 03:42:04 -0700</pubDate>
      <category>.NET General</category>
    </item>
  </channel>
</rss>