active questions tagged vb.net - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T03:46:24Zhttp://stackoverflow.com/feeds/tag/vb.nethttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/663338/how-can-i-access-a-methods-parameter-from-an-associated-attribute0How can I access a method's parameter from an associated attribute?pistacchio2009-03-19T18:03:11Z2009-11-30T03:00:03Z
<p>Hi. Given the following classes, how can i intercept Class1.SampleMethod's Value from SampleAttribute?
Thanks</p>
<pre><code>Public Class Class1
<SampleAttribute()> _
Public Function SampleMethod(ByVal Value As Integer) As Boolean
Return True
End Function
End Class
<AttributeUsage(AttributeTargets.Method)> _
Public Class SampleAttribute
Inherits System.Attribute
Private _Value As Integer
Property Value() As Integer
Get
Return _Value
End Get
Set(ByVal value As Integer)
_Value = value
End Set
End Property
Public Sub New()
End Sub
End Class
</code></pre>
<p><hr /></p>
<p>EDIT:</p>
<p>Given Andrew Hare's answer, maybe I'm trying to use the wrong construct. I have a long list of similar methods and i need to execute a set of operations every time one of them is called. I thought that attaching an attribute to each of them would be the most straight-forward solution. Any suggestion?</p>
http://stackoverflow.com/questions/1817515/what-programming-book-for-a-hobbyist-learning-a-new-language-vb-net0What programming book for a hobbyist learning a new language (vb.net)?Chris Sobolewski2009-11-30T01:50:11Z2009-11-30T02:16:55Z
<p>It will be a gift for a family member. He's older, a retired school teacher and likes to tinker with programming mostly as a mental excersize to stop the old brain cells from gelatinizing.</p>
<p>I've seen him make some pretty creative and moderately complex games in BASIC (QBASIC to be precise), and I believe he's making the hop to vb.net this year. I'd like to get him a good book to help make the transition, and perhaps a copy of Visual Studio 2008. He's a bright guy and shouldn't have a problem picking it up, but he will need some help getting used to the differences in the languages, as well as help understanding just what OOP is all about.</p>
<p>Can anyone make any book recommendations?</p>
http://stackoverflow.com/questions/1817416/readonly-property-listview-in-listviewitem-how-is-implemented0ReadOnly Property ListView in ListViewItem - How is implemented?saw2009-11-30T01:11:18Z2009-11-30T02:08:21Z
<p>Maybe someone know how ListView pointer is stored/removed at ReadOnly Property ListView in ListViewItem? How is it implemented? I know ListViewItems are stored in ListViewItemCollection which has constructor New(owner as ListView) but I dont know how pointer to ListView is add/remove in ReadOnly Property in ListViewItem... </p>
http://stackoverflow.com/questions/1814940/how-to-export-a-datagridview-to-excel-format-in-vb-net2How to export a DataGridView to Excel format in VB.NETEias.N2009-11-29T07:47:39Z2009-11-29T23:32:59Z
<p>I'm using OLE to connect to a database using VB.NET, and show the results in a DataGridView.<br>
I want to export the data that is in the DataGridView to an Excel format file, i.e., <strong>the user can save the content of the DataGridView as MS Excel file.</strong></p>
http://stackoverflow.com/questions/1649672/sql-filestream-update-problems0Sql Filestream Update problemsPanos2009-10-30T12:55:37Z2009-11-29T23:29:01Z
<p>Hello, i have implemented the filestream feature of sql server 2008 in a vb.net application.
I can insert files , and then retrieve/view them just fine. However i have huge problems trying to update a file.</p>
<p>Eg. The user selects a file from the grid which i execute via process.start .If that file is a .txt file, the user may choose to edit it. In case that happens, i need to save the changed file back to the database.So far i have failed to do that.</p>
<p>What I do, is take the retrieved file, copy it (cause i got some errors about it being used), and then Process.Start it. After that via .NET filestream i converte the file to bytes and try to update the record. SQL Profiler and a manual SELECT on the varbinary(max) column tell me that the file is updated properly, but the very next try to retrieve it i get an unchanged file.</p>
<p>After that i also tried to update the file by changing its File-System Version, but still file wouldnt seem to update. Anyone has a code sample of how i can achieve this operation? Like 500 sites on the internet have exampled of how to Insert And Retrieve the file, but not a single example on how to update.</p>
<p>This is how my second attempt of trying to update the file via the filesystem looks like. The code for inserting/retrieving is very similar and it works properly</p>
<pre><code>Public Sub UpdateFile(ByVal intGUID As Guid, ByVal strName As String)
Dim objConnection As SqlConnection = GetConnection()
Dim objTransaction As SqlTransaction = objConnection.BeginTransaction()
Dim cmd As New SqlCommand("SELECT [FLE_Data].PathName(), GET_FILESTREAM_TRANSACTION_CONTEXT() " + _
"FROM TSKt_File " + _
"WHERE File_ID = @ID", objConnection)
cmd.Transaction = objTransaction
cmd.Parameters.Add("@ID", SqlDbType.UniqueIdentifier).Value = intGUID
Dim rdr As SqlDataReader = cmd.ExecuteReader(CommandBehavior.SingleRow)
rdr.Read()
Dim strFilePath As String = rdr.GetString(0)
Dim trxID As Byte() = DirectCast(rdr(1), Byte())
rdr.Close()
Using fs As IO.FileStream = IO.File.OpenWrite(strName)
Using sqlFS As New SqlTypes.SqlFileStream(strFilePath, trxID, IO.FileAccess.ReadWrite)
Dim buffer As Byte() = New Byte(512 * 1024) {}
Dim intPos As Integer = sqlFS.Read(buffer, 0, buffer.Length)
Do While intPos > 0
fs.Write(buffer, 0, intPos)
intPos = sqlFS.Read(buffer, 0, buffer.Length)
Loop
End Using
End Using
objTransaction.Commit()
objConnection.Close()
End Sub
</code></pre>
http://stackoverflow.com/questions/1815478/new-line-in-vb-net1New line in VB.NETNight Walker 2009-11-29T12:59:49Z2009-11-29T19:31:09Z
<p>Why, when I do im my code:</p>
<pre><code>"Land Location \\r\\n Roundoff (C)"
</code></pre>
<p>I see the <code>\\r\\n</code> and not a new line feeder at the output?</p>
<p>Any idea how to do that?</p>
<p>As I said I must have only one string there, without using a "&". Can I put that <code>vbCrLf</code> inside of my string somehow?</p>
http://stackoverflow.com/questions/756462/elapsed-time-with-environment-tickcount-avoiding-the-wrap0Elapsed Time with Environment.TickCount() - Avoiding the wrapneodymium2009-04-16T14:45:30Z2009-11-29T18:47:05Z
<p>Does the absolute value protect the following code from the Environment.TickCount wrap?</p>
<pre><code>
If Math.Abs((Environment.TickCount And Int32.MaxValue) - StartTime) > Interval Then
StartTime = (Environment.TickCount And Int32.MaxValue)
.
.
.
End If
</code></pre>
<p>Is there a better method of guarding against the Environment.TickCount() wrap?</p>
<p>(This is .NET 1.1.)</p>
<p><em>Edit</em> - Modified code according to Microsoft <a href="http://msdn.microsoft.com/en-us/library/system.environment.tickcount.aspx" rel="nofollow">Environment.TickCount</a> help.</p>
http://stackoverflow.com/questions/1804585/how-to-compile-vb-2005-code-containing-default-instances-using-nant0How to compile VB 2005 code containing "default instances" using nantAdrian2009-11-26T16:18:35Z2009-11-29T18:31:29Z
<p>I've got some VB code that's using a <a href="http://www.panopticoncentral.net/archive/2005/01/17/7052.aspx" rel="nofollow">default instance</a> of a Form. It compiles fine within VS but when I try compiling using the nant <strong>vbc</strong> task it throws this error,</p>
<blockquote>
<p>error BC30469: Reference to a
non-shared member requires an object
reference.</p>
</blockquote>
<p>Here's the relevant section of my nant script,</p>
<pre><code><vbc target="exe" output="${basename}.exe" rootnamespace="${basename}">
<imports>
<import namespace="Microsoft.VisualBasic"/>
....
</imports>
<sources>
<include name="**/*.vb" />
</sources>
<references>
.....
</vbc>
</code></pre>
<p>The VB code looks like this,</p>
<pre><code>m_PlanID = MDIParent.PlanDetails.PlanID
</code></pre>
<p>Any idea what I'm doing wrong?</p>
<p>Ideally I'd prefer not to be using default instances at all but that's a job for another day.</p>
http://stackoverflow.com/questions/1815177/dependencyproperty-callback-method-not-called0DependencyProperty Callback-Method not calledChameleon2009-11-29T10:21:28Z2009-11-29T16:03:44Z
<p>Hi,</p>
<p>I create a UserControl (TableWithFilter.xaml) with a dependency property (source). The UserControl is a Table with a source property for the different items. I created the XAML and set the source property via the XAML Binding. So far so good.</p>
<p>But if the value of the dependency property is changed, the defined callback method is not called. Therefore I cannot update the entries in my table. Has anyone an idea why the callback method is not called?</p>
<p>Here is the definition of my property in the class "TableWithFilter":</p>
<pre><code>Public Shared ReadOnly SourceProperty As DependencyProperty = _
DependencyProperty.Register("Source", GetType(List(Of TableViewItem)), GetType(TableWithFilter), _
New FrameworkPropertyMetadata(Nothing, New PropertyChangedCallback(AddressOf TableWithFilter.ChangeSource)))
</code></pre>
<p>and the Callback method:</p>
<pre><code> Private Shared Sub ChangeSource(ByVal source As DependencyObject, ByVal e As DependencyPropertyChangedEventArgs)
Dim table As TableWithFilter = source
table.Source = e.NewValue
End Sub
</code></pre>
<p>and here the XAML:</p>
<pre><code><Border Grid.Row="1" Grid.Column="1" BorderBrush="{StaticResource ElementBorder}" BorderThickness="1">
<local:TableWithFilter x:Name="SearchResultTable" Source="{Binding Source={StaticResource contentFacade}, Path=ContentList}" />
</Border>
</code></pre>
<p>If the attribute "ContentList" is changed I expet that the "ChangeSource" method in the TableWithFilder class is called. But this is not the case. After I changed the ContentList attribute, I Raise the following Event:</p>
<pre><code>RaiseEvent PropertyChanged(Me, New PropertyChangedEventArgs("ContentList"))
</code></pre>
<p>Thx for any ideas.</p>
http://stackoverflow.com/questions/1279697/radgrid-and-radformdecorator0Radgrid and RadFormDecoratoricemanind2009-08-14T19:19:40Z2009-11-29T16:00:03Z
<p>Guys,</p>
<p>I have an ASP.NET application using the Telerik Q1 2009 controls. I have a masterpage, which has a FormDecorator control in the master page. In my ASPX page, I have a RadGrid, with the following definition:</p>
<pre><code><telerik:RadGrid ID="gridExclusions" runat="server" AllowPaging="True" AllowSorting="True"
GridLines="None" AutoGenerateColumns="False" PageSize="5">
<MasterTableView>
<Columns>
<telerik:GridTemplateColumn>
<ItemTemplate> <asp:Button runat="server" ID="btnEdit" Text="Delete"
CommandName="SelectSelect" CommandArgument='<%#GetEmployeeExID(DataBinder.Eval(Container,"DataItem")) %>'
/>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Date" AllowFiltering="true">
<ItemStyle HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
<ItemTemplate>
<%#GetExDate(DataBinder.Eval(Container, "DataItem"))%>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Exclusion?" AllowFiltering="true">
<ItemStyle HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
<ItemTemplate>
<%#GetExclusionFlag(DataBinder.Eval(Container, "DataItem"))%>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Reason" AllowFiltering="true">
<ItemStyle HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
<ItemTemplate>
<%#GetReason(DataBinder.Eval(Container, "DataItem"))%>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Paid?" AllowFiltering="true">
<ItemStyle HorizontalAlign="Center" />
<HeaderStyle HorizontalAlign="Center" />
<ItemTemplate>
<%#GetPaidStatus(DataBinder.Eval(Container, "DataItem"))%>
</ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
</MasterTableView>
<HeaderContextMenu>
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</HeaderContextMenu>
<PagerStyle Mode="NextPrevAndNumeric" />
<FilterMenu>
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</FilterMenu>
</telerik:RadGrid>
</code></pre>
<p>I also have a button that refreshes this radgrid:</p>
<pre><code>Me.txtExcludeDate.Clear()
Me.gridExclusions.Rebind()
Me.txtExcludeDate.Focus()
</code></pre>
<p>The problem is, when I push the button to refrsh it, it works fine, except the button inside the radgrid seems to lose its Web20 Skin Look and Feel. It looks like a normal button. Any ideas?</p>
http://stackoverflow.com/questions/1807343/difficulty-in-using-vb-code-dom-having-if-expressions-in-generated-code0Difficulty in using VB Code Dom (having If expressions in generated code)cless2009-11-27T08:09:07Z2009-11-29T15:56:12Z
<p>Hi guys,</p>
<p>I have difficulty in using the vb code dom. Basically, I want to compile this piece of code dynamically:</p>
<pre><code>Imports System
Imports System.Collections.Generic
Imports Microsoft.VisualBasic
Namespace Formula
Public Class TsCalculator
Public Sub New()
End Sub
Public Shared Function Evaluate(ByVal Ts As Dictionary(Of String, Decimal)) As decimal
Dim result = If((Ts("sss")+Ts("zzz")) <> 0, (Ts("KWHD") - Ts("zzzz"))*Ts("sdsd")/(Ts("sds")+Ts("1ANGAT_M-DISPATCH")), (Ts("sdsd") - Ts("sdsd"))*(.5D + .5D))
Return result
End Function
End Class
End Namespace
</code></pre>
<p>And for compiling this code, i use this function:</p>
<pre><code> Public Shared Function CompileCode(ByVal classname As String _
, ByVal inputname As String, _
ByVal compiler As CodeDomProvider, _
ByVal snippetcode As String) As Calculator(Of Decimal, Decimal)
Dim compilerargs = New CompilerParameters()
Dim code = BuildCodeString("Solver", inputname, snippetcode)
Dim currassembly = Reflection.Assembly.GetAssembly(GetType(FormulaCompiler))
With compilerargs
.TreatWarningsAsErrors = False
.ReferencedAssemblies.Add("System.dll")
.GenerateInMemory = True
.WarningLevel = 4
End With
Dim ss As Func(Of Dictionary(Of String, Decimal), Decimal)
Dim compiledresults = compiler.CompileAssemblyFromSource(compilerargs, code)
With compiledresults
If .Errors.HasErrors Then
Throw New InvalidExpressionException()
Else
Dim inputtypes = New Type() {GetType(Dictionary(Of String, Decimal))}
Dim formss = compiledresults.CompiledAssembly.GetType(String.Format("Formula.{0}", "Solver"))
Dim evalinfo = formss.GetMethod("Evaluate", inputtypes)
ss = CType([Delegate].CreateDelegate(GetType(Func(Of Dictionary(Of String, Decimal), Decimal)) _
, evalinfo), Func(Of Dictionary(Of String, Decimal), Decimal))
End If
End With
Dim calculator As New Calculator(Of Decimal, Decimal)(classname, ss)
Return calculator
End Function
</code></pre>
<p>Did is miss some assemblies? </p>
<p>Cheers!</p>
http://stackoverflow.com/questions/1814918/vb-listview-change-header-height0VB - ListView - Change Header Height?bochur12009-11-29T07:33:52Z2009-11-29T14:23:03Z
<p>Useing Winform and VB.Net - how can I change the column header height? </p>
http://stackoverflow.com/questions/1815347/create-coded-webtests0Create coded webtestsanne2009-11-29T11:59:03Z2009-11-29T13:39:10Z
<p>Hi,
I'm looking for a tool that plugs into the browser and records user actions and then saves a webtest in either c# or vb.net. Then the tests can be compiled and run without a browser, ie tests use httpwebrequest with extraction rules etc.</p>
<p>I only have Visual Studio 2005 professional, I know that the functionality I'm after is available in I think VS 2008 Team Suite or VS for testers.</p>
<p>Is anyone aware of a tool for this functionality?</p>
<p>Hope I was clear enough.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1812775/asp-net-mvc-strongly-typed-view-convert-from-c-to-vb-net0ASP.NET MVC strongly typed view convert from C# to VB.NETren332009-11-28T15:24:51Z2009-11-29T13:37:46Z
<p>I'm starting to learn ASP.NET MVC and since I work in a VB.NET shop I'm converting an example from C#. I'm trying to implement a strongly typed view and the example I'm looking at shows the following:</p>
<pre><code><tr>
<td>Name:</td>
<td><%=Html.TextBox(x => x.Name)%></td>
</tr>
</code></pre>
<p>I've come up with the following in VB.NET:</p>
<pre><code><tr>
<td>Name:</td>
<td><%=Html.TextBox((Function(x As Contact) x.Name).ToString)%></td>
</tr>
</code></pre>
<p>Is this conversion correct? This seems really cumbersome (I know, I know, VB.NET is more cumbersome than C#, but I have no choice in the matter). If it is correct, is it the best way?</p>
http://stackoverflow.com/questions/1807311/linq-to-sql-generic-class-for-insert-and-delete-operation0LINQ to SQL Generic Class for Insert and Delete operationBayonian2009-11-27T07:55:01Z2009-11-29T13:28:23Z
<p>Hi,</p>
<p>I have been writing same code for insert, update, delete with LINQ over and over again. I want to have some sort of generic function for Insert, Update, Delete operation. I read a post <a href="http://www.willasrari.com/blog/linq-lambda-and-generics-insertt-and-deletet/000240.aspx" rel="nofollow">here</a> like the following :</p>
<pre><code> public static void Insert<T>(T entity) where T : class
{
using (OrcasDB database = new OrcasDB())
{
database.GetTable<T>().Add(entity);
database.SubmitChanges();
}
}
public static void Delete<T>(Expression<Func<T, bool>> predicate)
where T : class
{
using (OrcasDB database = new OrcasDB())
{
T instance = (T) database.GetTable<T>().Where<T>(predicate).Single();
database.GetTable<T>().Remove(instance);
database.SubmitChanges();
}
}
How to Use
// insert
Employee will = new Employee
{
Username = "will.asrari",
EmailAddress = "me@willasrari.com",
CanCode = true
};
LinqHelper.Insert<Employee>(will);
// delete
LinqHelper.Delete(emp => emp.EmployeeId.Equals(3));
</code></pre>
<p>Yes, I would like to write something like in VB.NET. Is the code above good to follow? Can anyone show me any LINQ to SQL generic class for Insert, Delete, Update written in VB.NET?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1815137/linq-to-sql-a-member-defining-the-identity-of-the-object-cannot-be-changed0LINQ to SQL A member defining the identity of the object cannot be changed.Bayonian2009-11-29T10:00:27Z2009-11-29T12:38:30Z
<p>Hi,</p>
<p>I'm writing a Generic for LINQ to SQL CUD. I</p>
<p>'Generic Insert</p>
<pre><code>Public Shared Sub Add(Of T As Class)(ByVal entity As T)
Using db As New APIUDataContext()
db.GetTable(Of T)().InsertOnSubmit(entity)
db.SubmitChanges()
End Using
</code></pre>
<p>The genric Insert is working good.</p>
<p>'Generic Update</p>
<pre><code>Public Shared Sub Update(Of T As Class)(ByVal oldEntity As T, ByVal newEntity As T)
Dim db As New DemoDataContext()
db.GetTable(Of T)().Attach(newEntity, oldEntity)
db.SubmitChanges()
End Sub
</code></pre>
<p>'Use Generic Update</p>
<pre><code> Dim oldEntity As New TestAuthor
oldEntity.Id = 4
oldEntity.FirstName = "James"
Dim newEntity As New TestAuthor
newEntity.FirstName = TextBox1.Text
newEntity.LastName = TextBox2.Text
GenericCUD.Update(oldEntity, newEntity)
</code></pre>
<p>Error message from Generic Update.</p>
<p>Value of member 'Id' of an object of type 'TestAuthor' changed.
A member defining the identity of the object cannot be changed.
Consider adding a new object with new identity and deleting the existing one instead.</p>
<p>What do I need to modify the Generic Update? Thank you.</p>
http://stackoverflow.com/questions/1815032/vb-net-byte-string-conversion-error-problem0VB.NET byte <-> string conversion error/problemBrian2009-11-29T08:41:15Z2009-11-29T08:56:39Z
<p>I am reading data from a socket (as bytes) and storing this data in a string. Then later i need to access specific bytes within the string and do some math with them. However the bytes that I read back from the string are not what I am expecting.</p>
<p>Here's code to demonstrate my problem:</p>
<pre><code> Dim bytTest() As Byte = {131, 0}
Dim strTest As String
strTest = System.Text.ASCIIEncoding.ASCII.GetString(bytTest)
MsgBox(bytTest(0) & " = " & Asc(strTest.Substring(0, 1)))
</code></pre>
<p>This produces "131 = 63", but I would have expected it to produce "131 = 131". Can somebody explain to me why and how I can fix this? Thanks</p>
http://stackoverflow.com/questions/1814015/was-visual-studio-2008-or-2010-written-to-use-multi-cores0Was Visual Studio 2008 or 2010 written to use multi cores?Erx_VB.NExT.Coder2009-11-28T22:46:31Z2009-11-28T23:27:37Z
<p>basically i want to know if the visual studio IDE and/or compiler in 2010 was <em>written</em> to make use of a multi core environment (i understand we can target multi core environments in 08 and 10, but that is not my question).</p>
<p>i am trying to decide on if i should get a higher clock dual core or a lower clock quad core, as i want to try and figure out which processor will give me the absolute best possible experience with Visual Studio 2010 (ide and background compiler).</p>
<p>if they are running the most important section (background compiler and other ide tasks) in one core, then the core will get cut off quicker if running a quad core, esp if background compiler is the heaviest task, i would imagine this would b e difficult to seperate in more then one process, so even if it uses multi cores you might still be better off with going for a higher clock cpu if the majority of the processing is still bound to occur in one core (ie the most significant part of the VS environment).</p>
<p>i am a vb programmer, they've made great performance improvements in beta 2, congrats, but i would love to be able to use VS seamlessly... anyone have any ideas?</p>
<p>thanks,</p>
<p>erx</p>
http://stackoverflow.com/questions/1806567/a-list-of-all-the-sql-types-and-their-net-mapping0A list of all the SQL types and their .NET mapping?Shimmy2009-11-27T03:03:18Z2009-11-28T21:13:54Z
<p>I need a list of all the SQL types and their .NET (vb would be preferred, but C# also works for me) equivalent.</p>
http://stackoverflow.com/questions/1812367/hierarchical-menu-using-unordored-list0Hierarchical Menu using unordored listCuriosa2009-11-28T12:02:14Z2009-11-28T20:50:44Z
<p>Hi,
What I'm want to accomplish is to build a hierarchical menu build on my custom sql sitemapprovider. Now when I just write down the structure using recursion it builds up correctly like this:</p>
<p><strong>Main<br>
-- Item1<br>
-- Item2<br>
Second<br>
-- Item1<br>
-- Item2<br>
---- Sub1<br>
---- Sub2<br>
Third</strong> </p>
<p>But what I would like to accomplish is that the childeren only show when I'm on the requested page. Lik this:</p>
<p>When I click on Main and go to the main page the structure must render like this<br>
<strong>Main<br>
-- Item1<br>
-- Item2<br>
Second<br>
Third</strong> </p>
<p>When I click on Item(of Main) and go to that page the structure renders like this<br>
<strong>Main<br>
-- Item<br>
---- Sub1<br>
---- Sub2<br>
-- Item2<br>
Second<br>
Third</strong> </p>
<p>As you can see the children are only shown when navigated to the request page.
Like expanding a client tree navigation, but then server-side. (Like <a href="http://msdn.microsoft.com/en-us/library/default.aspx" rel="nofollow">menu</a> on left side)
I'm using VB.NET and a recursive function to render the structure
The code I'm currently using is this, but this just builds up the hierarchical structure of an unordered list and shows the child items of each node at the bottom of the list.
Maybe someone knows how I could build this incremental menu so it shows the correct parent
child relations when requesting a page.</p>
<pre><code>Private _map As MySiteMapProvider = _
DirectCast(SiteMap.Providers("CustomSitemap"), MySiteMapProvider)
Private Function RenderNodes() As String
Dim currentNode As SiteMapNode = _map.CurrentNode
Dim rootNode As SiteMapNode = _map.RootNode
Dim nodeBuilder As New StringBuilder
Dim nodeStack As Stack(Of SiteMapNode) = New Stack(Of SiteMapNode)
'Find Parent nodes of current node
While Not currentNode.Equals(rootNode)
nodeStack.Push(currentNode)
currentNode = currentNode.ParentNode
End While
'Iterate through stack and build child nodes recursive
For Each node As SiteMapNode In nodeStack
With nodeBuilder
.Append(RenderChildNodes(node, node.ChildNodes))
End With
Next
Return nodeBuilder.ToString
End Function
Private Function RenderChildNodes(ByVal parent As SiteMapNode, ByVal coll As SiteMapNodeCollection) As String
Dim mapBuilder As New StringBuilder
For Each node As SiteMapNode In coll
mapBuilder.AppendLine("<li>")
mapBuilder.AppendFormat("<a href=""{0}"">{1}</a>", node.Url, node.Title)
If node.HasChildNodes _
And _map.CurrentNode.IsDescendantOf(parent) Then
mapBuilder.AppendFormat("<ul>{0}</ul>", RenderChildNodes(node, node.ChildNodes))
End If
mapBuilder.AppendLine("</li>")
Next
Return mapBuilder.ToString
End Function
</code></pre>
http://stackoverflow.com/questions/1813606/vb-net-word-document0vb.net word documentunknown (yahoo)2009-11-28T19:56:35Z2009-11-28T19:56:35Z
<p>I can add a bullet in word document through vb.net by using applybulletDefault() method but how can i remove it in next line??</p>
http://stackoverflow.com/questions/1776229/visual-foxpro-and-vs2008-do-not-show-all-dbf-records-a-separate-build-does1Visual FoxPro and VS2008 do not show all DBF records. A separate build does.kfrej2009-11-21T18:02:14Z2009-11-28T19:35:12Z
<p>Hi,</p>
<p>I am working on a project in Visual Studio 2008 (in vb.net). The app needs to import data from a Visual FoxPro database (dbc file). Do not ask why FoxPro. It needs to be vfp and the database is updated daily by another application; therefore, I cannot use any other database format.</p>
<p>I connect to the database through OleDb FoxPro driver (the latest version). Everything is ok (apart from the speed). I can import data from all the tables I need (dbf files). I load it into a dataset and then operate on the dataset itself not to loose time on reconnecting (I just need to read data at this stage).</p>
<p><strong>The problem is:</strong>
Not all records are being shown when I compile and run the code.</p>
<p>However, when I run a compiled version from the <em>Release</em> folder (in the <em>bin</em> directory), the app displays more records.</p>
<p>What is more puzzling, when I open the same datatable file in Visual FoxPro 9.0, I can see only the data that is being shown in VS2008 (not in the Realease version).
However, if I open the dbf in OpenOffice Calc, it shows all the records - that is, the same records as the Release version of my app.</p>
<p>My first thought was: if it does not show everything in VFP 9, the files must have been created in a different version of VFP, so I should change my connection string. However, why would the compiled Release version show all the correct data? The connection string must be ok.</p>
<p>I downloaded <a href="http://www.alexnolan.net/software/dbf.htm" rel="nofollow">DBF Viewer Plus</a> to have a look at my dbfs in another app but it cannot see all the records either.</p>
<p>I have no idea why it behaves this way. And it is rather annoying, because I need to make a build of my app every single time I want to test it.</p>
<p>I'm developing on Windows Vista.</p>
<p>Thank you for all your help!</p>
http://stackoverflow.com/questions/913571/using-objectdatasource-and-dataobjecttypename-how-do-you-handle-delete-methods-w0Using ObjectDataSource and DataObjectTypeName, How Do You Handle Delete Methods With Just An Id Parameter?Laz2009-05-27T01:40:24Z2009-11-28T19:00:02Z
<p>If I have an ObjectDataSource setup like:</p>
<pre><code><asp:ObjectDataSource
ID="ObjectDataSource1"
runat="server"
DataObjectTypeName="Employee"
InsertMethod="Insert"
UpdateMethod="Update"
DeleteMethod="Select"
TypeName="EmployeeDB">
</asp:ObjectDataSource>
</code></pre>
<p>and a data/business object with methods like:</p>
<pre><code>public class EmployeeDB
{
public void Insert(Employee emp)
public int Update(Employee emp)
public bool Delete(int id)
}
</code></pre>
<p>How do I get the objectdatasource to use the Delete method with the parameter that is not an Employee object?</p>
<p>If this is not possible, what is the recommended alternative architecture?</p>
<p><strong>Edit:</strong></p>
<p>To clarify, I want to use the method signature on my data/business object as shown above, however if I try to allow an Employee object to be passed into some of the methods using DataObjectTypeName, then I seemingly lose the ability to have some methods take just an integer id for instance.</p>
<p>If I do not use the DataObjectTypeName, then I have to place all the method parameters in the ObjectDataSource and change the methods on the data/business object to match, this seems like a bad design choice because as the Employee object changes I will have to update each of these methods.
Is there a better architecture?</p>
http://stackoverflow.com/questions/1812725/how-convert-byte-to-decimal-1How convert byte to decimal?Mohd Rizal2009-11-28T15:07:36Z2009-11-28T17:05:04Z
<p>Hi...</p>
<p>Please guide me how make convert that input to decimal.tq.</p>
<pre><code>BF C2 FF 12
65 E4 EE
17 BF C2 64 F2 41 84 11
C1 C4 38 41 14 10 C1 04 10 49 04 18 41 06 72 B5 FF
17 BF C2 64 72
41 84 11 C1 85 19 C1 07 17 7D C2 5F 3D 5E FD DE 57 FD 10 E1 94 30 B5 FF
17 BF C2 FF 12
65 CC 76
17 BF C2 FF 12
69 FC 77
</code></pre>
http://stackoverflow.com/questions/491318/how-to-do-mailmerge-in-openoffice-using-vb-net0How to do Mailmerge in Openoffice using Vb.netSavan Parmar2009-01-29T11:56:12Z2009-11-28T17:00:04Z
<p>Hey All,</p>
<p>Its 5th Question and apart of one i didnt get response from the experts....</p>
<p>Hope this time i will get the helping hand.</p>
<p>I want to do mailmerge in openoffice using Vb.net and i am totally new with openoffice.
i searched on net for some help to understand how to use openoffice with vb.net but all i get is half info.....So can u plz help me and give me code for mailmerge in vb.net for openoffice.</p>
http://stackoverflow.com/questions/1812283/how-to-print-records-using-crystal-report0How to print records using crystal report?mitkram2009-11-28T11:17:58Z2009-11-28T15:14:32Z
<p>Hi Guyz!</p>
<p>I'm trying to print a record in vb.net(vb2008 express edition) and what I'm familiar with printing was using data report way back when i was in
vb6.0 but when i moved to vb.net lately i heard about using crystal report but im not familiar with it so i don't really know how to start with.I know it sounds like im depending too much but what im just trying to ask is a little favor just
to give me a brief heads up to start with it in a first place and i'll do the rest. For example,I would like to print a line of
text which is "I'm a sweet lover". Please give me a complete procedures on how to start with it in setting these all up using crystal report which detects the default printer as well as its simple codes which corresponds to it.</p>
<p>I would really appreciate if you could give me a brief heads up to start with it...</p>
http://stackoverflow.com/questions/1812254/how-can-i-check-whether-datareader-has-data-or-not0How Can I check whether DataReader has Data or not?RedsDevils2009-11-28T11:04:11Z2009-11-28T11:07:02Z
<p>Hi All, Again I have problem with checking whether DataReader object has data or not? </p>
<pre><code>Dim cmd as SqlCommand
Dim drd as SqlDataReader
cmd = New SqlCommand ("SELECT * FROM Stock", conx)
drd = cmd.ExecuteReader()
''HERE I WOULD LIKE TO CHECK WHETHER drd has Data or not
While (drd.Read())
{
txtName.Text = drd.Item("StockName")
}
</code></pre>
<p>How can I check that? Please Help me! Thanks all in advcance!</p>
http://stackoverflow.com/questions/1811751/how-to-vb-net-programmatically-specify-connection-string-in-dataset-xsd-in-vs20050how to vb.net programmatically specify connection string in dataset.xsd in vs2005 ashok2009-11-28T06:11:41Z2009-11-28T11:00:39Z
<p>I want to create a dataset.xsd in vs2005, and I am using access database, so I cant know where my client save the application. Hence I used application.startuppath() to get the application folder and appended "Data\db.msd" to the application.startuppath() so i got the target location for the access databse in client machine. Now to create crystal reports I need the dataset.xsd but while creating a new dataset.xsd it was asking the path for the access database, how to programmatically specify the connection string in dataset.xsd so that i can create a connection string. and use that dataset for creating crystal reports.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1091492/how-to-use-windows-search-service-instead-of-the-old-indexing-service-to-index-fi1How to use Windows Search Service instead of the old indexing service to index files?Marcus2009-07-07T10:14:05Z2009-11-28T10:00:02Z
<p>In the past I had the indexing service installed on a Windows Server 2003 and used it to index files for my website. I did this by executing an OleDbCommand with a query and a connection string.</p>
<p>How do I accomplish the same thing with the new "Windows Search Service" (Windows Server 2008) by using VB.NET? Does this work the same way so that I only need to change the Provider name which has been "MSIDXS.1" up to now? Case true, what is the new Provider name?</p>
<p>Thanks in advance! :)</p>
http://stackoverflow.com/questions/284708/creating-a-dataset-designer-vb-from-xsd0Creating a dataset.designer.vb from xsdKen2008-11-12T17:39:24Z2009-11-28T06:09:26Z
<p>I have an xsd, , vb, xsc, and xss file for a dataset in VS 2008 that I copied over from another VS project, however I need to make changes to the dataset. Thus I got into the xsd file, created new columns, deleted ones that aren't needed, etc., etc. However I realized when I attempted to use the new dataset I did not have the vb code behind the scenes. This code is typically found in dataset.designer.vb. When I copied the old one over of course it is no longer valid since columns have changed. </p>
<p>Any idea How I can force VS 2008 to use a xsd and to have it create/update its designer code?</p>
<p>THANKS</p>