﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>A1VBCode Forums / General Discussion / Forum Feedback  / A1 is my favorite VB site... / Latest Posts</title><generator>InstantForum.NET v4.1.1</generator><description>A1VBCode Forums</description><link>http://www.a1vbcode.com/vbforums/</link><webMaster>forums@a1vbcode.com</webMaster><lastBuildDate>Thu, 09 Feb 2012 04:40:23 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: A1 is my favorite VB site...</title><link>http://www.a1vbcode.com/vbforums/Topic28784-12-1.aspx</link><description>&lt;div class="Quote"&gt;&lt;b&gt;Joey (6/12/2010)&lt;/b&gt;&lt;hr noshade size="1" class="hr"&gt;Looks like they fixed that problem. If you scroll down on the reply page, you now can see the last 10 posts for each thread.&lt;/div&gt;&lt;P&gt;Yes in a fasion Joey if you click the the + on the bar. To see all the posts in that topic you have to open in a new &amp;#119;indow. &lt;img align="absmiddle" src="http://www.a1vbcode.com/vbforums/Skins/Classic/Images/EmotIcons/Wink.gif" border="0" title="Wink"&gt;</description><pubDate>Sun, 13 Jun 2010 06:32:09 GMT</pubDate><dc:creator>Keithuk</dc:creator></item><item><title>RE: A1 is my favorite VB site...</title><link>http://www.a1vbcode.com/vbforums/Topic28784-12-1.aspx</link><description>&lt;div class="Quote"&gt;&lt;P&gt;Well I don't find A1vbcode the best VB site for one reason. When you reply to a topic on all the other 25 VB forums that I use is you can't see the previous posts to copy and paste text. You have to have 2 browsers open.&lt;/P&gt;&lt;P&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;Looks like they fixed that problem. If you scroll down on the reply page, you now can see the last 10 posts for each thread.</description><pubDate>Sat, 12 Jun 2010 16:23:08 GMT</pubDate><dc:creator>Joey</dc:creator></item><item><title>RE: A1 is my favorite VB site...</title><link>http://www.a1vbcode.com/vbforums/Topic28784-12-1.aspx</link><description>That sounds a bit awkward...</description><pubDate>Sat, 03 Apr 2010 06:34:20 GMT</pubDate><dc:creator>steve7680768</dc:creator></item><item><title>RE: A1 is my favorite VB site...</title><link>http://www.a1vbcode.com/vbforums/Topic28784-12-1.aspx</link><description>Welcome to A1vbcode &lt;STRONG&gt;Mark&lt;/STRONG&gt;. &lt;IMG src="http://www.a1vbcode.com/vbforums/Uploads/Images/cc0a1fb7-f97a-4e36-9b11-49cd.gif"&gt;&lt;P&gt;Well I don't find A1vbcode the best VB site for one reason. When you reply to a topic on all the other 25 VB forums that I use is you can't see the previous posts to copy and paste text. You have to have 2 browsers open.&lt;/P&gt;&lt;P&gt;The other thing is posting code&lt;/P&gt;&lt;P&gt;&lt;pre&gt;&lt;/P&gt;&lt;P&gt;Public Function IsOsVista() As Boolean&lt;/P&gt;&lt;P&gt;    ' Declare local vars...&lt;BR&gt;    Dim lMajor As Long&lt;BR&gt;    Dim lMinor As Long&lt;BR&gt;   &lt;BR&gt; ' Retrieve the actual info...&lt;BR&gt;    GetWindowsVersion lMajor, lMinor&lt;BR&gt;   &lt;BR&gt;    ' Check which OS we're on and Assign Global vars... You'll only have to call&lt;BR&gt;    ' the function once this way...&lt;BR&gt;   &lt;BR&gt;    ' OS is Vista&lt;BR&gt;If (lMajor = 6) Then&lt;BR&gt;    IsOsVista = True&lt;BR&gt;    m_IsVista = True&lt;BR&gt;    m_IsXp = False&lt;BR&gt;    m_IsW2K = False&lt;BR&gt;    Me.Caption = "Vista True"&lt;BR&gt;   &lt;BR&gt;        ' OS is XP&lt;BR&gt;ElseIf (lMajor = 5) And (lMinor &amp;gt;= 1) Then&lt;BR&gt;    IsOsVista = False&lt;BR&gt;    m_IsVista = False&lt;BR&gt;    m_IsXp = True&lt;BR&gt;    m_IsW2K = False&lt;BR&gt;    Me.Caption = "XP True"&lt;BR&gt;    ' OS is W2K&lt;BR&gt;ElseIf (lMajor = 5) And (lMinor = 0) Then&lt;BR&gt;    IsOsVista = False&lt;BR&gt;    m_IsVista = False&lt;BR&gt;    m_IsXp = False&lt;BR&gt;    m_IsW2K = True&lt;BR&gt;    Me.Caption = "Win2k True"&lt;BR&gt;End If&lt;/P&gt;&lt;P&gt;End Function&lt;BR&gt;&lt;/pre&gt;&lt;P&gt;as against&lt;DIV style="BACKGROUND-IMAGE: none; BORDER-BOTTOM: #000000 3px solid; BORDER-LEFT: #000000 3px solid; PADDING-BOTTOM: 25px; BACKGROUND-COLOR: #cccccc; PADDING-LEFT: 25px; PADDING-RIGHT: 25px; BORDER-TOP: #000000 3px solid; BORDER-RIGHT: #000000 3px solid; PADDING-TOP: 25px"&gt;&lt;FONT color=#0000cc&gt;Public&lt;/FONT&gt; &lt;FONT color=#0000cc&gt;Function&lt;/FONT&gt; IsOsVista() &lt;FONT color=#0000cc&gt;As&lt;/FONT&gt; &lt;FONT color=#0000cc&gt;Boolean&lt;/FONT&gt;&lt;BR&gt;&lt;BR&gt;    &lt;FONT color=#009900&gt;' Declare local vars...&lt;/FONT&gt;&lt;BR&gt;    &lt;FONT color=#0000cc&gt;Dim&lt;/FONT&gt; lMajor &lt;FONT color=#0000cc&gt;As&lt;/FONT&gt; &lt;FONT color=#0000cc&gt;Long&lt;/FONT&gt;&lt;BR&gt;    &lt;FONT color=#0000cc&gt;Dim&lt;/FONT&gt; lMinor &lt;FONT color=#0000cc&gt;As&lt;/FONT&gt; &lt;FONT color=#0000cc&gt;Long&lt;/FONT&gt;&lt;BR&gt;   &lt;BR&gt; &lt;FONT color=#009900&gt;' Retrieve the actual info...&lt;/FONT&gt;&lt;BR&gt;    GetWindowsVersion lMajor, lMinor&lt;BR&gt;   &lt;BR&gt;    &lt;FONT color=#009900&gt;' Check which OS we're on and Assign Global vars... You'll only have to call&lt;/FONT&gt;&lt;BR&gt;    &lt;FONT color=#009900&gt;' the function once this way...&lt;/FONT&gt;&lt;BR&gt;   &lt;BR&gt;    &lt;FONT color=#009900&gt;' OS is Vista&lt;/FONT&gt;&lt;BR&gt;&lt;FONT color=#0000cc&gt;If&lt;/FONT&gt; (lMajor = 6) &lt;FONT color=#0000cc&gt;Then&lt;/FONT&gt;&lt;BR&gt;    IsOsVista = &lt;FONT color=#0000cc&gt;True&lt;/FONT&gt;&lt;BR&gt;    m_IsVista = &lt;FONT color=#0000cc&gt;True&lt;/FONT&gt;&lt;BR&gt;    m_IsXp = &lt;FONT color=#0000cc&gt;False&lt;/FONT&gt;&lt;BR&gt;    m_IsW2K = &lt;FONT color=#0000cc&gt;False&lt;/FONT&gt;&lt;BR&gt;    Me.Caption = "Vista True"&lt;BR&gt;   &lt;BR&gt;        &lt;FONT color=#009900&gt;' OS is XP&lt;/FONT&gt;&lt;BR&gt;ElseIf (lMajor = 5) &lt;FONT color=#0000cc&gt;And&lt;/FONT&gt; (lMinor &amp;gt;= 1) &lt;FONT color=#0000cc&gt;Then&lt;/FONT&gt;&lt;BR&gt;    IsOsVista = &lt;FONT color=#0000cc&gt;False&lt;/FONT&gt;&lt;BR&gt;    m_IsVista = &lt;FONT color=#0000cc&gt;False&lt;/FONT&gt;&lt;BR&gt;    m_IsXp = &lt;FONT color=#0000cc&gt;True&lt;/FONT&gt;&lt;BR&gt;    m_IsW2K = &lt;FONT color=#0000cc&gt;False&lt;/FONT&gt;&lt;BR&gt;    Me.Caption = "XP True"&lt;BR&gt;    &lt;FONT color=#009900&gt;' OS is W2K&lt;/FONT&gt;&lt;BR&gt;ElseIf (lMajor = 5) &lt;FONT color=#0000cc&gt;And&lt;/FONT&gt; (lMinor = 0) &lt;FONT color=#0000cc&gt;Then&lt;/FONT&gt;&lt;BR&gt;    IsOsVista = &lt;FONT color=#0000cc&gt;False&lt;/FONT&gt;&lt;BR&gt;    m_IsVista = &lt;FONT color=#0000cc&gt;False&lt;/FONT&gt;&lt;BR&gt;    m_IsXp = &lt;FONT color=#0000cc&gt;False&lt;/FONT&gt;&lt;BR&gt;    m_IsW2K = &lt;FONT color=#0000cc&gt;True&lt;/FONT&gt;&lt;BR&gt;    Me.Caption = "Win2k True"&lt;BR&gt;&lt;FONT color=#0000cc&gt;End&lt;/FONT&gt; &lt;FONT color=#0000cc&gt;If&lt;/FONT&gt;&lt;BR&gt;&lt;BR&gt;&lt;FONT color=#0000cc&gt;End&lt;/FONT&gt; &lt;FONT color=#0000cc&gt;Function&lt;/FONT&gt;&lt;BR&gt;&lt;BR&gt;&lt;/DIV&gt;&lt;P&gt;This is Mark's way around it. &lt;a href="http://www.a1vbcode.com/vbforums/Topic10851-12-1.aspx" target="_blank" class="SmlLinks"&gt;Mark's Syntax.zip&lt;/a&gt;. Its a pity Mark's code doesn't work on other forums. &lt;P&gt;You will find that forums that use VB6 and VB.Net separate these two languages in different sub forums. I won't tell you which is the best VB forum on the web, I presume you have found it.  &lt;img align="absmiddle" src="http://www.a1vbcode.com/vbforums/Skins/Classic/Images/EmotIcons/Wink.gif" border="0" title="Wink"&gt;</description><pubDate>Sun, 31 Jan 2010 08:50:22 GMT</pubDate><dc:creator>Keithuk</dc:creator></item><item><title>A1 is my favorite VB site...</title><link>http://www.a1vbcode.com/vbforums/Topic28784-12-1.aspx</link><description>and I will tell you why. It seems like every-other VB site I come across has it's VB 6 and earlier code mixed with the VB.NET and later code. If it's not that, you have to do all kinds of crazy stuff just to download a snippet of code. I can not stand that, and it drives me up the walls. I am happy to join this site. This site has already provided me with a huge amount of useful code. I am here to stay. Thank you for creating this site. &lt;/P&gt;&lt;P&gt;                                                                                                            -Mark</description><pubDate>Sun, 31 Jan 2010 05:46:17 GMT</pubDate><dc:creator>MarkGriffeth</dc:creator></item></channel></rss>
