<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>Udvikleren.dk - Seneste [visual-basic] forum tråde</title>
    <description>De seneste forum tråde i [visual-basic] på Udvikleren.dk</description>
    <link>http://www.udvikleren.dk/</link>
    <pubDate>Tue, 28 Apr 2026 12:21:35 GMT</pubDate>
    <docs>http://backend.userland.com/rss</docs>
    <generator>Udvikleren.dk RSS Feeder</generator>
    <ttl>60</ttl>
    <item>
      <title>nedlåsning af filer</title>
      <description>Jeg bruger microsoft visual ultimate 2013&lt;br /&gt;&lt;br /&gt;Hvordan nedlåser jeg mine filer i den app jeg har lavet?&lt;br /&gt;&lt;br /&gt;Altså gør koden ikke tilgængelig for brugeren.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Tak null du har været meget hjælpsom har forsøgt at svare så godt jeg kunne&lt;br /&gt;</description>
      <link>http://www.udvikleren.dk/forum/47316/nedlaasning-af-filer/</link>
      <pubDate>Thu, 08 Feb 2018 04:27:58 GMT</pubDate>
    </item>
    <item>
      <title>Konverter visual basic kode til PHP</title>
      <description>Hej,&lt;br /&gt;&lt;br /&gt;Skriver for en ven der har brug for hjælp med at konverter 3 funktioner fra visual basic til PHP.&lt;br /&gt;&lt;br /&gt;Så hvis der er en venlig sjæl derude, der gider hjælpe, vil jeg være yderst taknemlig.&lt;br /&gt;&lt;br /&gt;Forsøgte at finde en konverter online, men uden held.&lt;br /&gt;&lt;br /&gt;&lt;div class="codeboxheader" id="code_704752720" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_704752720_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;VBDotNet kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_704752720code" style="border-top: 0px; display: none;"&gt;&lt;ol&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;Calculate the Levenshtein Distance between two strings (the number of insertions,&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;deletions, and substitutions needed to transform the first string into the second)&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Public&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Function&lt;/span&gt;&lt;span style="color: #000000;"&gt; LevenshteinDistance(&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ByRef&lt;/span&gt;&lt;span style="color: #000000;"&gt; S1 &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;String&lt;/span&gt;&lt;span style="color: #000000;"&gt;, &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ByVal&lt;/span&gt;&lt;span style="color: #000000;"&gt; S2 &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;String&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; L1 &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;, L2 &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;, D() &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;Length of input strings and distance matrix&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; i &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;, j &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;, cost &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;loop counters and cost of substitution for current letter&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; cI &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;, cD &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;, cS &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;cost of next Insertion, Deletion and Substitution&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;    L1 &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Len&lt;/span&gt;&lt;span style="color: #000000;"&gt;(S1): L2 &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Len&lt;/span&gt;&lt;span style="color: #000000;"&gt;(S2)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ReDim&lt;/span&gt;&lt;span style="color: #000000;"&gt; D(&lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; L1, &lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; L2)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;For&lt;/span&gt;&lt;span style="color: #000000;"&gt; i &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; L1: D(i, &lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; i: &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Next&lt;/span&gt;&lt;span style="color: #000000;"&gt; i&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;For&lt;/span&gt;&lt;span style="color: #000000;"&gt; j &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; L2: D(&lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt;, j) &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; j: &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Next&lt;/span&gt;&lt;span style="color: #000000;"&gt; j&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;For&lt;/span&gt;&lt;span style="color: #000000;"&gt; j &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; L2&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;For&lt;/span&gt;&lt;span style="color: #000000;"&gt; i &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; L1&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            cost &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Abs&lt;/span&gt;&lt;span style="color: #000000;"&gt;(&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;StrComp&lt;/span&gt;&lt;span style="color: #000000;"&gt;(&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Mid&lt;/span&gt;&lt;span style="color: #000000;"&gt;$(S1, i, &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;), &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Mid&lt;/span&gt;&lt;span style="color: #000000;"&gt;$(S2, j, &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;), vbTextCompare))&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            cI &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; D(i &lt;/span&gt;&lt;span style="color: #000000;"&gt;-&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;, j) &lt;/span&gt;&lt;span style="color: #000000;"&gt;+&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            cD &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; D(i, j &lt;/span&gt;&lt;span style="color: #000000;"&gt;-&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #000000;"&gt;+&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            cS &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; D(i &lt;/span&gt;&lt;span style="color: #000000;"&gt;-&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;, j &lt;/span&gt;&lt;span style="color: #000000;"&gt;-&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #000000;"&gt;+&lt;/span&gt;&lt;span style="color: #000000;"&gt; cost&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; cI &lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; cD &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;Insertion or Substitution&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;                &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; cI &lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; cS &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; D(i, j) &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; cI &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Else&lt;/span&gt;&lt;span style="color: #000000;"&gt; D(i, j) &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; cS&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Else&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;Deletion or Substitution&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;                &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; cD &lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; cS &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; D(i, j) &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; cD &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Else&lt;/span&gt;&lt;span style="color: #000000;"&gt; D(i, j) &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; cS&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Next&lt;/span&gt;&lt;span style="color: #000000;"&gt; i&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Next&lt;/span&gt;&lt;span style="color: #000000;"&gt; j&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    LevenshteinDistance &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; D(L1, L2)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End Function&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="codeboxheader" id="code_1841428412" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_1841428412_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;VBDotNet kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_1841428412code" style="border-top: 0px; display: none;"&gt;&lt;ol&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #0000FF;"&gt;Public&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Function&lt;/span&gt;&lt;span style="color: #000000;"&gt; valuePhrase#(&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ByRef&lt;/span&gt;&lt;span style="color: #000000;"&gt; S1$, &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ByRef&lt;/span&gt;&lt;span style="color: #000000;"&gt; S2$)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    valuePhrase &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; LevenshteinDistance(S1, S2)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End Function&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Public&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Function&lt;/span&gt;&lt;span style="color: #000000;"&gt; valueWords#(&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ByRef&lt;/span&gt;&lt;span style="color: #000000;"&gt; S1$, &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ByRef&lt;/span&gt;&lt;span style="color: #000000;"&gt; S2$)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; wordsS1$(), wordsS2$()&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    wordsS1 &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; SplitMultiDelims(S1, &lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #800000;"&gt; _-&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    wordsS2 &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; SplitMultiDelims(S2, &lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #800000;"&gt; _-&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; word1%, word2%, thisD#, wordbest#&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; wordsTotal#&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;For&lt;/span&gt;&lt;span style="color: #000000;"&gt; word1 &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;LBound&lt;/span&gt;&lt;span style="color: #000000;"&gt;(wordsS1) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;UBound&lt;/span&gt;&lt;span style="color: #000000;"&gt;(wordsS1)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        wordbest &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Len&lt;/span&gt;&lt;span style="color: #000000;"&gt;(S2)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;For&lt;/span&gt;&lt;span style="color: #000000;"&gt; word2 &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;LBound&lt;/span&gt;&lt;span style="color: #000000;"&gt;(wordsS2) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;UBound&lt;/span&gt;&lt;span style="color: #000000;"&gt;(wordsS2)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            thisD &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; LevenshteinDistance(wordsS1(word1), wordsS2(word2))&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; thisD &lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; wordbest &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; wordbest &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; thisD&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; thisD &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;GoTo&lt;/span&gt;&lt;span style="color: #000000;"&gt; foundbest&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Next&lt;/span&gt;&lt;span style="color: #000000;"&gt; word2&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;foundbest:&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        wordsTotal &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; wordsTotal &lt;/span&gt;&lt;span style="color: #000000;"&gt;+&lt;/span&gt;&lt;span style="color: #000000;"&gt; wordbest&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Next&lt;/span&gt;&lt;span style="color: #000000;"&gt; word1&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    valueWords &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; wordsTotal&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End Function&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #808080;"&gt;''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #808080;"&gt;&lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; SplitMultiDelims&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; This function splits Text into an array of substrings, each substring&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; delimited by any character in DelimChars. Only a single character&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; may be a delimiter between two substrings, but DelimChars may&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; contain any number of delimiter characters. It returns a single element&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; array containing all of text if DelimChars is empty, or a 1 or greater&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; element array if the Text is successfully split into substrings.&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; If IgnoreConsecutiveDelimiters is true, empty array elements will not occur.&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; If Limit greater than 0, the function will only split Text into 'Limit'&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; array elements or less. The last element will contain the rest of Text.&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #808080;"&gt;''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #808080;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Function&lt;/span&gt;&lt;span style="color: #000000;"&gt; SplitMultiDelims(&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ByRef&lt;/span&gt;&lt;span style="color: #000000;"&gt; Text &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;String&lt;/span&gt;&lt;span style="color: #000000;"&gt;, &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ByRef&lt;/span&gt;&lt;span style="color: #000000;"&gt; DelimChars &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;String&lt;/span&gt;&lt;span style="color: #000000;"&gt;, _&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Optional&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ByVal&lt;/span&gt;&lt;span style="color: #000000;"&gt; IgnoreConsecutiveDelimiters &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Boolean&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;False&lt;/span&gt;&lt;span style="color: #000000;"&gt;, _&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Optional&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ByVal&lt;/span&gt;&lt;span style="color: #000000;"&gt; Limit &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;-&lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;String&lt;/span&gt;&lt;span style="color: #000000;"&gt;()&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; ElemStart &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;, N &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;, M &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;, Elements &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; lDelims &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;, lText &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Long&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; Arr() &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;As&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;String&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    lText &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Len&lt;/span&gt;&lt;span style="color: #000000;"&gt;(Text)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    lDelims &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Len&lt;/span&gt;&lt;span style="color: #000000;"&gt;(DelimChars)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; lDelims &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Or&lt;/span&gt;&lt;span style="color: #000000;"&gt; lText &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Or&lt;/span&gt;&lt;span style="color: #000000;"&gt; Limit &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ReDim&lt;/span&gt;&lt;span style="color: #000000;"&gt; Arr(&lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt;)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        Arr(&lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt;) &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; Text&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        SplitMultiDelims &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; Arr&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Exit Function&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ReDim&lt;/span&gt;&lt;span style="color: #000000;"&gt; Arr(&lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;IIf&lt;/span&gt;&lt;span style="color: #000000;"&gt;(Limit &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;-&lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;, lText &lt;/span&gt;&lt;span style="color: #000000;"&gt;-&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;, Limit))&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    Elements &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt;: ElemStart &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;For&lt;/span&gt;&lt;span style="color: #000000;"&gt; N &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; lText&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;InStr&lt;/span&gt;&lt;span style="color: #000000;"&gt;(DelimChars, &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Mid&lt;/span&gt;&lt;span style="color: #000000;"&gt;(Text, N, &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;)) &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            Arr(Elements) &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Mid&lt;/span&gt;&lt;span style="color: #000000;"&gt;(Text, ElemStart, N &lt;/span&gt;&lt;span style="color: #000000;"&gt;-&lt;/span&gt;&lt;span style="color: #000000;"&gt; ElemStart)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; IgnoreConsecutiveDelimiters &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Len&lt;/span&gt;&lt;span style="color: #000000;"&gt;(Arr(Elements)) &lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; Elements &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; Elements &lt;/span&gt;&lt;span style="color: #000000;"&gt;+&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Else&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                Elements &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; Elements &lt;/span&gt;&lt;span style="color: #000000;"&gt;+&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            ElemStart &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; N &lt;/span&gt;&lt;span style="color: #000000;"&gt;+&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;            &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; Elements &lt;/span&gt;&lt;span style="color: #000000;"&gt;+&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; Limit &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Exit&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;For&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Next&lt;/span&gt;&lt;span style="color: #000000;"&gt; N&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;Get the last token terminated by the end of the string into the array&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; ElemStart &lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; lText &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; Arr(Elements) &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Mid&lt;/span&gt;&lt;span style="color: #000000;"&gt;(Text, ElemStart)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;Since the end of string counts as the terminating delimiter, if the last character&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;was also a delimiter, we treat the two as consecutive, and so ignore the last elemnent&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; IgnoreConsecutiveDelimiters &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;If&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Len&lt;/span&gt;&lt;span style="color: #000000;"&gt;(Arr(Elements)) &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Then&lt;/span&gt;&lt;span style="color: #000000;"&gt; Elements &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; Elements &lt;/span&gt;&lt;span style="color: #000000;"&gt;-&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;ReDim&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Preserve&lt;/span&gt;&lt;span style="color: #000000;"&gt; Arr(&lt;/span&gt;&lt;span style="color: #800080;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;To&lt;/span&gt;&lt;span style="color: #000000;"&gt; Elements) &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt;Chop off unused array elements&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;    SplitMultiDelims &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; Arr&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End Function&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;</description>
      <link>http://www.udvikleren.dk/forum/47246/konverter-visual-basic-kode-til-php/</link>
      <pubDate>Fri, 15 Sep 2017 08:39:40 GMT</pubDate>
    </item>
    <item>
      <title>Hjælp til Visual Basic Programmering </title>
      <description>Hej Allesammen &lt;br /&gt;&lt;br /&gt;Jeg er netop blevet ansat i et bygge selskab som ejer, drifter og vedligeholder en del ejendomme. &lt;br /&gt;&lt;br /&gt;I den forbindelse har de fået udarbejdet et program til at registrere og systematisere deres bygningers tilstand. &lt;br /&gt;&lt;br /&gt;Det er nu 3-4 år siden dette program blev lavet og programmeret af en studerende, Programmet er så vidt jeg ved udarbejdet med Visual Basic og med en excel database. &lt;br /&gt;&lt;br /&gt;Jeg kan dog ikke få dette til at virke nu. Den kommer med følgende fejlmeldinger når jeg forsøger at åbne programmet op via det excel ark som ligger i mappen hvor han har samlet det hele. &lt;br /&gt;&lt;br /&gt;Fejlmelding nr. 1:&lt;br /&gt;Compile error:&lt;br /&gt;Cant find project or library&lt;br /&gt;&lt;br /&gt;Nedenstående kode er her hvor den umiddelbart mener fejlen skal findes&lt;br /&gt;&lt;br /&gt;Private Sub UserForm_Activate()&lt;br /&gt;    Application.Visible = False&lt;br /&gt;    Dim Counter As Integer&lt;br /&gt;    With lstEjendom&lt;br /&gt;    Do While IsEmpty(Worksheets("Ejendomme").Range("B2").Offset(Counter, 0)) = False&lt;br /&gt;       lstEjendom.AddItem Worksheets("Ejendomme").Range("B2").Offset(Counter, 0).Value&lt;br /&gt;    Counter = Counter + 1&lt;br /&gt;    Loop&lt;br /&gt;    End With&lt;br /&gt;&lt;br /&gt;    With lstBygningsdel&lt;br /&gt;    .RowSource = "Bygningsdel"&lt;br /&gt;    End With&lt;br /&gt;    &lt;br /&gt;txtDatoForTilsyn = Format(Now, "dd-mm-yyyy")&lt;br /&gt;DTPicker1.Value = Now&lt;br /&gt;    &lt;br /&gt;    With lstEnhed&lt;br /&gt;        .RowSource = "Enhed"&lt;br /&gt;    End With&lt;br /&gt;    &lt;br /&gt;    With lstTid&lt;br /&gt;        .RowSource = "Tid"&lt;br /&gt;    End With&lt;br /&gt;    &lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Når jeg så bare trykker OK og får selve vinduet åbnet, så forsvinder Visual Basic ikke i baggrunden som de øvrige lignede programmer af denne type jeg tidligere har arbejdet med. &lt;br /&gt;&lt;br /&gt;Der er dog intet i vinduet som virker, og her tænker jeg jo nok at det må være fordi at forbindelse mellem excel arket og programmet er mistet. &lt;br /&gt;&lt;br /&gt;Jeg overfører så det hele til min egen pc og sletter den del der melder fejl på, nu kan jeg igen finde bygninger, printe osv, MEN nu har jeg ikke adgang til den rigtige stig på serveren og nu vil den ikke gemme noget som helst af det arbejde jeg laver. &lt;br /&gt;&lt;br /&gt;Er der nogen som har en idé om hvad jeg kan gøre, eller hvad jeg kan prøve?`&lt;br /&gt;&lt;br /&gt;Jeg er ved at være helt lost, og tænker at det vil være for besværligt for mig at begynde at sætte mig ind i hvordan alt det her kodning og programmering fungere for så at lave det hele fra bunden af igen? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Mvh &lt;br /&gt;Kenneth </description>
      <link>http://www.udvikleren.dk/forum/47076/hjaelp-til-visual-basic-programmering-/</link>
      <pubDate>Tue, 10 Jan 2017 10:03:48 GMT</pubDate>
    </item>
    <item>
      <title>ram overaskende overskredet</title>
      <description>jeg har lavet en classe med ca 7 objekter hvoraf halvdelen er arrays det største array hedder ca.&lt;img src="/images/smileys/sad.gif" alt=":(" title=":(" /&gt;50,36,110) så er der ca tre mere på ca (50,36) jeg undre mig over at jeg løber ud af ram efter at have oprettede classen lidt over 2600gange ps. har 24gb ram og ca 48gb ledig på c drev. </description>
      <link>http://www.udvikleren.dk/forum/47042/ram-overaskende-overskredet/</link>
      <pubDate>Tue, 06 Dec 2016 19:38:24 GMT</pubDate>
    </item>
    <item>
      <title>Gem billede fra picturebox og listbox/textbox</title>
      <description>Jeg er i gang med at lave et lille simpelt program i visual basic(2015) hvor det er muligt at loade billeder ind for derefter at indtaste nogle data i textbokse og listbokse, derefter skal billedet gemmes med listbokse og textboksenes indhold, uden scrollbokse og knapper,&lt;br /&gt;&lt;br /&gt;Er det muligt med noget kode?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Det er en ven som ikke vil bruge tid på at lave det i et tegneprogram, han ønsker at det skal være så enkelt som muligt. Hvis i er i tvivl om hvad jeg mener, så søg på google på qcl kort, så dukker der en masse op omkring emnet.&lt;br /&gt;&lt;br /&gt;Han snakker i amatør-radio, og der uploader man noget der kaldes qcl kort, som fortæller hvem man er og hvilken frekvens der er snakket på.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Her er hvordan min kode ser ud :&lt;br /&gt;Public Class Form1&lt;br /&gt;    Private Sub AfslutToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles AfslutToolStripMenuItem.Click&lt;br /&gt;        Application.Exit()&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;    Private Sub HentBillederToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles HentBillederToolStripMenuItem.Click&lt;br /&gt;        OpenFileDialog1.ShowDialog()&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;    Private Sub GemBillederToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles GemBillederToolStripMenuItem.Click&lt;br /&gt;        SaveFileDialog1.ShowDialog()&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;    Private Sub SaveFileDialog1_FileOk(sender As Object, e As System.ComponentModel.CancelEventArgs) Handles SaveFileDialog1.FileOk&lt;br /&gt;        PictureBox1.Image.Save(SaveFileDialog1.FileName + ".jpg", System.Drawing.Imaging.ImageFormat.Jpeg)&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;    Private Sub OpenFileDialog1_FileOk(sender As Object, e As System.ComponentModel.CancelEventArgs) Handles OpenFileDialog1.FileOk&lt;br /&gt;        PictureBox1.ImageLocation = OpenFileDialog1.FileName()&lt;br /&gt;        PictureBox1.SizeMode = PictureBoxSizeMode.StretchImage&lt;br /&gt;    End Sub&lt;br /&gt;&lt;br /&gt;    Private Sub OmToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles OmToolStripMenuItem.Click&lt;br /&gt;        'Display the About dialog box&lt;br /&gt;        Using objAbout As New AboutBox1&lt;br /&gt;            objAbout.ShowDialog(Me)&lt;br /&gt;        End Using&lt;br /&gt;    End Sub&lt;br /&gt;End Class&lt;br /&gt;&lt;br /&gt;Er ikke kommet nærmere på at have fundet svaret på nettet.</description>
      <link>http://www.udvikleren.dk/forum/46844/gem-billede-fra-picturebox-og-listbox-textbox/</link>
      <pubDate>Fri, 29 Jan 2016 19:11:50 GMT</pubDate>
    </item>
    <item>
      <title>Visual Basic - Fra Pixel til Hex</title>
      <description>Hej alle.&lt;br /&gt;&lt;br /&gt;Jeg er i gang med at lave en Hexagon-Grid-Map, hvor man dynamisk kan sætte antal hexes i både X og Y retning, og det fungerer helt fint.&lt;br /&gt;Men hvordan får jeg min 'Mouse Position' oversat til mit HexGrid.??&lt;br /&gt;&lt;br /&gt;Jeg har støvsuget nettet for oplysninger om emnet, men kan ikke finde noget, som jeg - med mit sparsomme intellekt - kan bruge til ret meget.&lt;br /&gt;Så mit håb er, at en eller anden venlig sjæl herinde vil tage min hånd i sin, og indføre mig i 'the Mysterious World of Coordinates' &lt;img src="/images/smileys/biggrin.gif" alt=":D" title=":D" /&gt;&lt;br /&gt;&lt;br /&gt;Mine Hexes er 80 * 70&lt;br /&gt;(se billede)&lt;br /&gt;&lt;br /&gt;Venlig Hilsen&lt;br /&gt;MrLES&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://mrles.dk/udvikleren_dk/tile_single_big.png" rel="nofollow"&gt;http://mrles.dk/udvikleren_dk/tile_single_big.png&lt;/a&gt;</description>
      <link>http://www.udvikleren.dk/forum/46700/visual-basic-fra-pixel-til-hex/</link>
      <pubDate>Fri, 09 Oct 2015 15:10:57 GMT</pubDate>
    </item>
    <item>
      <title>Er VB6-udviklere en uddød race?</title>
      <description>Hej alle!&lt;br /&gt;&lt;br /&gt;Vi leder efter VB6-udviklere!&lt;br /&gt;&lt;br /&gt;Vi har en ordentlig bunke legacy-kode i VB6 som vi har udviklet på siden '98. &lt;br /&gt;&lt;br /&gt;Kundegrundlaget er fint og vi sælger vores produkt, mens vi sideløbende er ved at løfte applikationen op på .NET. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Meeen... &lt;/b&gt;hvor pokker finder man kvalificerede VB6-udviklere? Fagforeninger? Pensionistklubber? Udvikleren.dk?&lt;br /&gt;&lt;br /&gt;Kender I nogen der har en berøringsflade hos VB6ere? Vi tilbyder en arbejdsplads i vækst, midt i Århus (evt. mulighed for at arbejde fra vores Aalborg-kontor), til en fornuftig løn. &lt;br /&gt;&lt;br /&gt;Hvem har en god plan, så vi kan få nogle udviklere i arbejde?&lt;br /&gt;&lt;br /&gt;På forhånd tak &lt;img src="/images/smileys/smiley.gif" alt=":)" title=":)" /&gt;&lt;br /&gt;Thomas</description>
      <link>http://www.udvikleren.dk/forum/46677/er-vb6-udviklere-en-uddoed-race/</link>
      <pubDate>Wed, 16 Sep 2015 13:14:04 GMT</pubDate>
    </item>
    <item>
      <title>Visual Basic 2013 - Flere decimaler på udregninger, langsom applikation</title>
      <description>Hej.&lt;br /&gt;&lt;br /&gt;Jeg er ved at lave et program i visual basic 2013, men jeg har problemer med at den ikke regner helt præcist pga. manglende decimaler.&lt;br /&gt;Formlen som jeg har lavet ser sådan ud:&lt;br /&gt;&lt;br /&gt;Calcform.Label98.Text = Val(Calcform.Label97.Text) * (Val(Me.TextBox7.Text) / 100 + 1)&lt;br /&gt;&lt;br /&gt;Det er så "Label98" jeg gerne vil have til at vise flere decimaler ved denne udregning.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Det andet problem er at jeg nu har fået lavet en meget lang kode for 1 knap, og det tager nu længere tid før den viser resultatet, er der en måde man kan gøre ens appliktaion hurtigere på ??</description>
      <link>http://www.udvikleren.dk/forum/46250/visual-basic-2013-flere-decimaler-paa-udregninger,-langsom-applikation/</link>
      <pubDate>Tue, 07 Oct 2014 20:30:38 GMT</pubDate>
    </item>
    <item>
      <title>Hvordan kommer gammelt VB6 program til at virke?</title>
      <description>Hej&lt;br /&gt;&lt;br /&gt;Jeg håber, at nogen kan vejlede mig.&lt;br /&gt;&lt;br /&gt;Vi har et gammelt, omend meget vigtigt program, som for 5 års tid siden er skrevet af en ældre fritidsnørd. Programmet trækker på en Access database, og det dumper diverse opgørelse direkte til Excel og skriver til Word-filer.&lt;br /&gt;&lt;br /&gt;Det virker ganske upåklageligt med Office 2010 og tidligere. Nu vil vores cloududbyder partout opgradere til Office 2013, og vores fritidsudvikler (som i øvrigt ikke rigtig gider længere) påstår, at hans program ikke vil virke med Office 2010.&lt;br /&gt;&lt;br /&gt;Ifølge ham er programmet skrevet i VB6 og benytter kommandoen CreateObject, som ikke skulle være kompatibel med Office 2013.&lt;br /&gt;&lt;br /&gt;Han siger, at hvis man udskifter CreateObject med GetObject, så vil det sandsynligvis virker, men det vil kræve, at Excel eller Word SKAL være åbent inden kaldet. Jeg er overbevist om, at dette kun vil afstedkomme massevise af problem og programnedbrud, eftersom programmets errorhåndtering rent ud sagt er yderst ringe.&lt;br /&gt;&lt;br /&gt;Jeg vil høre, hvordan jeg kommer videre herfra.&lt;br /&gt;&lt;br /&gt;- Findes der en nyere version af Visual Basic, som har kommandoer, som er kompatible med Office 2013?&lt;br /&gt;&lt;br /&gt;- Kan VB6 opgraderes med en eller addon eller lignende til at være kompatibel med Office 2013?&lt;br /&gt;&lt;br /&gt;- Kan vores VB6-program måske konverteres til andet sprog, der har passende kommandoer til Office 2013?&lt;br /&gt;&lt;br /&gt;- Eller hvad gør vi?&lt;br /&gt;&lt;br /&gt;- Hvem kan hjælpe os?&lt;br /&gt;&lt;br /&gt;Programmet er i mange henseender meget centralt i driften af vores ganske lille biks.&lt;br /&gt;&lt;br /&gt;På forhånd tak!&lt;br /&gt;&lt;br /&gt;/ solskin</description>
      <link>http://www.udvikleren.dk/forum/46248/hvordan-kommer-gammelt-vb6-program-til-at-virke/</link>
      <pubDate>Tue, 07 Oct 2014 10:10:00 GMT</pubDate>
    </item>
    <item>
      <title>Løn som studerende VBA Udvikler</title>
      <description>Hej!&lt;br /&gt;&lt;br /&gt;Jeg er blevet indkaldt til en samtale hos et firma som udvikler i VBA til Excel.&lt;br /&gt;Det vil være mit første programmør-job, og jeg er på andet semester som Software Ingeniør. &lt;br /&gt;&lt;br /&gt;Hvad kan man forvente af løn, hvis det kommer på tale til samtalen?&lt;br /&gt;Jeg har ikke rigtig nogen idé om hvad jeg skal forlange, så håber nogen kan give mig et praj. </description>
      <link>http://www.udvikleren.dk/forum/44958/loen-som-studerende-vba-udvikler/</link>
      <pubDate>Sun, 27 Apr 2014 19:59:34 GMT</pubDate>
    </item>
    <item>
      <title>Microsoft Expression Encoder 4 Screen Capture i Visual Basic eller C#</title>
      <description>Hvordan kan jeg få Microsoft Expression Encoder 4 i Visual Basic eller C# til at optage skærmen i wmv eller mp4 video?.&lt;br /&gt;&lt;br /&gt;Jeg har prøvet med Microsoft.Expression.Encoder.ScreenCapture.ScreenCaptureJob, men den optager i Microsoft Expression Encoder Screen Capture format og ikke i wmv eller mp4 format.&lt;br /&gt;&lt;br /&gt;Her er min kode:&lt;br /&gt;&lt;br /&gt;Dim capturerec As New Microsoft.Expression.Encoder.ScreenCapture.ScreenCaptureJob&lt;br /&gt;Dim videopath As String = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) &amp; "\strandboscrrec.wmv"&lt;br /&gt;Dim audiodevices As System.Collections.ObjectModel.Collection(Of Microsoft.Expression.Encoder.Devices.EncoderDevice) = Microsoft.Expression.Encoder.Devices.EncoderDevices.FindDevices(Microsoft.Expression.Encoder.Devices.EncoderDeviceType.Audio)&lt;br /&gt;&lt;br /&gt;Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load&lt;br /&gt;    capturerec.ScreenCaptureVideoProfile.Quality = 100&lt;br /&gt;    capturerec.OutputScreenCaptureFileName = videopath&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;Private Sub Rec_Click(sender As Object, e As EventArgs) Handles Rec.Click&lt;br /&gt;    capturerec.ResetSettings()&lt;br /&gt;    Select Case True&lt;br /&gt;        Case FrameRate15.Checked&lt;br /&gt;            capturerec.ScreenCaptureVideoProfile.FrameRate = 15&lt;br /&gt;        Case FrameRate20.Checked&lt;br /&gt;            capturerec.ScreenCaptureVideoProfile.FrameRate = 20&lt;br /&gt;        Case FrameRate25.Checked&lt;br /&gt;            capturerec.ScreenCaptureVideoProfile.FrameRate = 25&lt;br /&gt;    End Select&lt;br /&gt;    Dim audiodevices As System.Collections.ObjectModel.Collection(Of Microsoft.Expression.Encoder.Devices.EncoderDevice) = Microsoft.Expression.Encoder.Devices.EncoderDevices.FindDevices(Microsoft.Expression.Encoder.Devices.EncoderDeviceType.Audio)&lt;br /&gt;    For Each item As String In CheckedListBox1.CheckedItems&lt;br /&gt;        Select Case item&lt;br /&gt;            Case "Microphone"&lt;br /&gt;                capturerec.AddAudioDeviceSource(audiodevices(0))&lt;br /&gt;            Case "Stereomix"&lt;br /&gt;                capturerec.AddAudioDeviceSource(audiodevices(1))&lt;br /&gt;        End Select&lt;br /&gt;    Next&lt;br /&gt;    If System.IO.File.Exists(videopath) Then&lt;br /&gt;        System.IO.File.Delete(videopath)&lt;br /&gt;    End If&lt;br /&gt;    capturerec.Start()&lt;br /&gt;    Rec.Enabled = False&lt;br /&gt;    CheckedListBox1.Enabled = False&lt;br /&gt;    FrameRate15.Enabled = False&lt;br /&gt;    FrameRate20.Enabled = False&lt;br /&gt;    FrameRate25.Enabled = False&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;Private Sub StopB_Click(sender As Object, e As EventArgs) Handles StopB.Click&lt;br /&gt;    capturerec.Stop()&lt;br /&gt;    Process.Start(videopath)&lt;br /&gt;End Sub</description>
      <link>http://www.udvikleren.dk/forum/42861/microsoft-expression-encoder-4-screen-capture-i-visual-basic-eller-c%23/</link>
      <pubDate>Sun, 09 Mar 2014 15:07:42 GMT</pubDate>
    </item>
    <item>
      <title>Drag Drop</title>
      <description>Hvordan kan jeg lave så man kan drag droppe filer og billeder ind i en brugerdefineret dialogboks?.&lt;br /&gt;&lt;br /&gt;Bare stil spørgsmål hvis der er noget i er i tvivl om.</description>
      <link>http://www.udvikleren.dk/forum/42860/drag-drop/</link>
      <pubDate>Sun, 09 Mar 2014 14:56:39 GMT</pubDate>
    </item>
    <item>
      <title>Screen Recorder VB</title>
      <description>Er der nogen der har en ide om hvordan man kaver en screen recorder i visual basic?.</description>
      <link>http://www.udvikleren.dk/forum/42849/screen-recorder-vb/</link>
      <pubDate>Tue, 04 Mar 2014 13:09:42 GMT</pubDate>
    </item>
    <item>
      <title>Visual Basic, C#, C++, Objective-C</title>
      <description>Er der nogen der har løst til at være med i gruppen "Programmering, VB, C#, C++, Objective-C" på facebook?.</description>
      <link>http://www.udvikleren.dk/forum/42847/visual-basic,-c%23,-c++,-objective-c/</link>
      <pubDate>Tue, 04 Mar 2014 12:40:21 GMT</pubDate>
    </item>
    <item>
      <title>Nybegynder: Gem/Load data</title>
      <description>Hej, jeg er ny til vb. Og er løbet ind i ind et lille problem.&lt;br /&gt;Jeg har en masse tekstbokse, og når jeg trykker på save skal de gemmes, hvordan gemmer man sine "strings", så man let kan overskrive de gamle data, og hente dem igen, når formen åbnes?&lt;br /&gt;&lt;br /&gt;- Jeg har pt. gemt mine "Strings" i nogle .Txt Filer, ,jeg har bare 5 stk's. Så tænkte og der ikke var en nemmere vej, altså ingen løse filer?&lt;br /&gt;&lt;br /&gt;Tak på forhånd!&lt;br /&gt;&lt;br /&gt;- Emil.</description>
      <link>http://www.udvikleren.dk/forum/40257/nybegynder-gem-load-data/</link>
      <pubDate>Mon, 26 Aug 2013 16:39:37 GMT</pubDate>
    </item>
    <item>
      <title>Hjælp til kun at tælle synlige filer</title>
      <description>Hej&lt;br /&gt;&lt;br /&gt;Jeg er ved at lave et script som tæller alle filer i en specifik mappe - herunder filer i undermapper.&lt;br /&gt;&lt;br /&gt;Scriptet virker, men tæller også alle systemfiler og skjulte filer. Hvordan få jeg den til kun at tælle de "synlige" filer?&lt;br /&gt;&lt;br /&gt;Samtidig kunne jeg også godt tænke mig at få talt alle mapper og undermapper!&lt;br /&gt;&lt;br /&gt;&lt;div class="codeboxheader" id="code_1712466592" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_1712466592_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;VBScript kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_1712466592code" style="border-top: 0px; display: none;"&gt;&lt;ol&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; VBScript&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Option&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Explicit&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; fs &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; variable declared outside a procedure (this is a global variable)&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;       &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; this is hold a reference to the file system object&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; create an instance&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Set&lt;/span&gt;&lt;span style="color: #000000;"&gt; fs &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;CreateObject&lt;/span&gt;&lt;span style="color: #000000;"&gt;(&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #800000;"&gt;scripting.filesystemobject&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; count files in windows directory&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; CountFilesResult&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;CountFilesResult &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; CountFiles (&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #800000;"&gt;C:\Test\&lt;/span&gt;&lt;span style="color: #800000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; takes a string argument containing the name of the directory&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; returns an integer contiang the nubmer of files in that direcrectory&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; and all sub directories&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Function&lt;/span&gt;&lt;span style="color: #000000;"&gt; CountFiles (ByVal StrFolder)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; ParentFld&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; SubFld&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Dim&lt;/span&gt;&lt;span style="color: #000000;"&gt; IntCount&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; note the use of the fs global variable&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Set&lt;/span&gt;&lt;span style="color: #000000;"&gt; ParentFld &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; fs.GetFolder (StrFolder)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; count the number of files in the current directory&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;    IntCount &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; ParentFld.Files.Count&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;For&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Each&lt;/span&gt;&lt;span style="color: #000000;"&gt; SubFld In ParentFld.SubFolders&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; count all files in each subfolder - recursion point&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;        IntCount &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; IntCount &lt;/span&gt;&lt;span style="color: #000000;"&gt;+&lt;/span&gt;&lt;span style="color: #000000;"&gt; CountFiles(SubFld.Path)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;Next&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #008000;"&gt;'&lt;/span&gt;&lt;span style="color: #008000;"&gt; return counted files&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;    CountFiles &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; IntCount&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;End Function&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Håber I kan hjælpe &lt;img src="/images/smileys/bounce.gif" alt=":bounce:" title=":bounce:" /&gt;</description>
      <link>http://www.udvikleren.dk/forum/39416/hjaelp-til-kun-at-taelle-synlige-filer/</link>
      <pubDate>Tue, 08 Jan 2013 10:49:21 GMT</pubDate>
    </item>
    <item>
      <title>hvordan load/save af multiline text boxe vb2010 ?</title>
      <description>Hejsa håber nogen vil hjælpe en total nybegynder i visual basic 2010&lt;br /&gt;&lt;br /&gt;Jeg har lavet et lille program med to multiline textboxe som jeg godt vil have gæmt i en fil. så man kan åbne filen igen og texten står i de rigtige text felter igen.&lt;br /&gt;Har fundet ud af hvordan med en textbox via Readtoend/writetoend men det virke jo ikke med flere textboxe&lt;br /&gt;&lt;br /&gt;Hvordan gør man så med flere multiline textboxe ?&lt;br /&gt;&lt;br /&gt;Håber i forstår mit spørgsmål &lt;img src="/images/smileys/smiley.gif" alt=":)" title=":)" /&gt;  </description>
      <link>http://www.udvikleren.dk/forum/38667/hvordan-load-save-af-multiline-text-boxe-vb2010-/</link>
      <pubDate>Sun, 26 Aug 2012 11:00:44 GMT</pubDate>
    </item>
    <item>
      <title>.net programmør søges</title>
      <description>Hej Udviklere&lt;br /&gt;&lt;br /&gt;Vi søger en dygtig og pålidelig programmør som er interesseret i at skrive et plug-in til outlook, som skal automatisere vores procedurer. Vi tænker det skal laves i .net.&lt;br /&gt;&lt;br /&gt;Kort drejer det sig om et plug in som kan scanne emails for sagsnumre, og herefter hente informationen fra mapper og excelark med tilsvarende sagsnumre/oplysninger. Informationsdelingen skal også kunne føres den anden vej, altså ændres fra outlook til excelarket.&lt;br /&gt;&lt;br /&gt;På sigt kan det dreje sig om flere og større opgaver.&lt;br /&gt;&lt;br /&gt;Vi har tidligere samarbejdet med en, som desværre viste sig at snyde os idet vi havdue betalt up-front, og han ikke leverede. Så betaling bliver "hvidt", ved levering men til gengæld til en god løn.&lt;br /&gt;&lt;br /&gt;Skriv hvis det har interesse&lt;br /&gt;&lt;br /&gt;mvh&lt;br /&gt;Moody</description>
      <link>http://www.udvikleren.dk/forum/38338/.net-programmoer-soeges/</link>
      <pubDate>Thu, 05 Jul 2012 12:46:08 GMT</pubDate>
    </item>
    <item>
      <title>Den ene shortcut virker ikke. hvorfor???</title>
      <description>Hej ALLE!!! &lt;img src="/images/smileys/smiley.gif" alt=":)" title=":)" /&gt;&lt;br /&gt;&lt;br /&gt;Sidder og nørkler med et lille problem her!!&lt;br /&gt;&lt;br /&gt;Har lavet en autoclicker med en start og en stop knap, med tilhørende shortcuts til... MEN! min start shortcut virker ikke :/&lt;br /&gt;Og da min stop shortcut virker, og lavet på præcis samme måde. forstår jeg det virkelig ikke...&lt;br /&gt;&lt;br /&gt;Nogle der har mod på at hjælpe lidt?? &lt;img src="/images/smileys/biggrin.gif" alt=":D" title=":D" /&gt;&lt;br /&gt;&lt;br /&gt;_____________________ KODEN__________________________&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick&lt;br /&gt;        Windows.Forms.Cursor.Position = New System.Drawing.Point(Windows.Forms.Cursor.Position)&lt;br /&gt;        mouse_event(&amp;H2, 0, 0, 0, 1)&lt;br /&gt;        mouse_event(&amp;H4, 0, 0, 0, 1)&lt;br /&gt;        Timer1.Interval = TextBox2.Text + 1&lt;br /&gt;&lt;br /&gt;        Dim Startkey As Boolean&lt;br /&gt;        Startkey = GetAsyncKeyState(Keys.F2)&lt;br /&gt;        If Startkey = True Then&lt;br /&gt;            Timer1.Start()&lt;br /&gt;&lt;br /&gt;        Else&lt;br /&gt;&lt;br /&gt;            Dim Stopkey As Boolean&lt;br /&gt;            Stopkey = GetAsyncKeyState(Keys.F4)&lt;br /&gt;            If Stopkey = True Then&lt;br /&gt;                Timer1.Stop()&lt;br /&gt;&lt;br /&gt;            End If&lt;br /&gt;        End If&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;    End Sub</description>
      <link>http://www.udvikleren.dk/forum/37998/den-ene-shortcut-virker-ikke.-hvorfor/</link>
      <pubDate>Mon, 28 May 2012 20:23:09 GMT</pubDate>
    </item>
    <item>
      <title>Visual Basic - Musseklik tæller</title>
      <description>Hej alle!!! &lt;img src="/images/smileys/biggrin.gif" alt=":D" title=":D" /&gt;&lt;br /&gt;&lt;br /&gt;Sidder og nørkler lidt med et lille problem her &lt;img src="/images/smileys/smiley.gif" alt=":)" title=":)" /&gt;&lt;br /&gt;&lt;br /&gt;Kunne godt tænke mig en lille boks/label/textbox med en såkaldt tæller.&lt;br /&gt;Som skriver hver gang man klikker med venstre mussetast..&lt;br /&gt;&lt;br /&gt;Nogle med en lille kode til min forespørgsel??&lt;br /&gt;På forhånd tak!!&lt;br /&gt;&lt;br /&gt;Jannich</description>
      <link>http://www.udvikleren.dk/forum/37909/visual-basic-musseklik-taeller/</link>
      <pubDate>Fri, 18 May 2012 15:52:03 GMT</pubDate>
    </item>
  </channel>
</rss>