VB Allows Non-type Template Parameters
Mar 30, 2010
1) VB Allows non-type template parameters
2) VB supports explicit specialization
3) VB allows the type parameters to be used as the base class for the generic type
4) VB allows a generic type parameter itself to to be a generic
5) VB enforces that all codes are valid for all types of parametrs what would be the Best Choice ?
View 4 Replies
ADVERTISEMENT
Dec 10, 2010
<ItemsControl DockPanel.Dock="Top" ItemsSource="{Binding Path={x:Static vmc:clsPersonViewModel.ChildrenPath}, Mode=OneWay}">
<ItemsControl.ItemTemplate>
[Code].....
In the code above, if there are no children (the ChildrenPath property returns NULL), nothing is rendered in the view. In the code below, when ChildrenDataSetPath is NULL the XamDataGrid still gets rendered. How do I achieve the same for a single object (as opposed to a collection) as the datacontext?
<DataTemplate DataType="{x:Type vmb:clsPersonViewModel}">
<igDP:XamDataGrid DataSource="{Binding Path={x:Static vmb:clsPersonViewModel.ChildrenDataSetPath}}">
[Code].....
View 2 Replies
Jun 7, 2011
I have a storedproc accepts parameters in XMLtype as
CREATE OR REPLACE PROCEDURE GetDetails(
p_para IN XMLTYPE,
[code].....
View 1 Replies
Mar 12, 2012
I am having some issue here, and I am not too sure how to handle it. If you could lead me in the right direction
[Code]....
View 1 Replies
Mar 30, 2010
1) VB Allows non-type template parameters2) VB supports explicit specialization 3) VB allows the type parameters to be used as the base class for the generic type4) VB allows a generic type parameter itself to to be a generic 5) VB enforces that all codes are valid for all types of parametrs
View 1 Replies
Jun 11, 2012
I need to create a function which have either 1 parameter with a string as data type or 2 parameters with double as data type.Something like the substring method.
View 2 Replies
Jul 15, 2010
I have an open source project I converted to vb.net. I solved all the errors, except for one. This is the C# line
[Code]....
View 4 Replies
Aug 20, 2011
In VB.NET,I want to create template at runtime and save it the template with name. for ex : Administrator design a page with 5 fields like using firstname, lastname, dob,nationality and job. He want to assign this page to the user with some restriction like user1 need to enter the all the fields and save it the forms as user1profile, but user2 need to enter only firstname and lastname and save it as user2profile.(in features, he can remove the fields from the form).
View 1 Replies
Feb 26, 2012
For each column in data table i want to add parameter with same data type as column data type. But looks it's not that simple.
Dim cmd As New SqlCommand
Dim dType As New System.Data.SqlDbType
For Each cl As DataColumn In DataTable1.Columns
[CODE]...
How can I do this?
View 4 Replies
Aug 4, 2010
I'm working on my first T4 code generation tool to add some Stored Procedure helper code to my project. I've created custom types (e.g. StoredProcedure and StoredProcedureParameter to help with my code generation and have included the assembly and namespace references in my code:
<#@ template debug="false" hostspecific="false" language="VB" #>
<#@ output extension=".generated.vb" #>
<#@ assembly name="$(TargetPath)" #>
<#@ import namespace="StoredProcCodeGenerator" #>
This allows me to use my custom types in my T4 template code. However, because my custom types exist in the same project as the T4 template code, I can't recompile my project once I run the template code without restarting Visual Studio. This isn't very much fun.
I read a great article that addresses this exact issue by using the T4 Toolbox, but it's not working. Either I'm implementing the VolatileAssembly directive wrong or the T4 toolbox simply didn't get installed. I'm not sure that the toolbox got installed correctly (I'm using VS 2010 on Win XP).
View 3 Replies
Dec 10, 2009
Public Function manyarrays(ByVal ParamArray ints() As Integer,ByVal strs() As String) End Function But it is error . How can i fix it ?
View 3 Replies
Mar 9, 2011
I want to have a "template" function that can receive different parameter and a type parameter, like:[code]But Vb told me that tupeList is not defined... is there a way I can do that?
View 2 Replies
Apr 8, 2010
I have a storedproc accepts parameters in XMLtype as
CREATE OR REPLACE PROCEDURE GetDetails(
p_para IN XMLTYPE,
i have to pass 4 parameters to this proc how to do this?
i am passing param as db.Parameters("p1", Oracle.DataAccess.Client.OracleDbType.Varchar2, _
' LN.Length, CObj(LN), Data.ParameterDirection.Input)
[code]....
View 4 Replies
May 23, 2010
Using the following code:
[Code]...
View 6 Replies
Jun 19, 2010
I am trying to use the right function in VS 2008. I am simply trying to get the right 5 characters of a string.
VendorID = Right(cboVendors.Text, 5)
I am getting an error when I type that:
Error1'Public ReadOnly Property Right() As Integer' has no parameters and its return type cannot be indexed.
View 3 Replies
Nov 2, 2009
when I search for a customer, it can search but the problem is that when I search for customer and I wanted to update or delete, It has an error which says "OleDbCommand.Prepare method requires all parameters to have an explicitly set type." What does that mean? Here is the code that I am using:
Public Class EditingCust
Dim cmd As OleDbCommand
Dim myAdapter As New OleDbDataAdapter[code].....
View 5 Replies
May 13, 2011
I'm writing a query to select all records that has any part of parameter. I have one table called Employees. Some people have name like this: John David Clark If the parameter is
[Code]....
I should be able to get result back as long as there's a match in the parameters. If I use Function Contains (q.FirstName & " " & q.LastName).Contains(employeeName), I will not get any result back if employeeName is "John Clark" Function Contains looks only for next words from left to right. It doesn't match a single word at a time. So that's why I used this in the Linq to SQL:
[Code]....
View 2 Replies
Aug 30, 2010
I am getting error [07002] the # binded parameters < the # of parameters makers, i checked both parameters were perfect even though i am getting this error here is my code
[Code]...
View 1 Replies
Jul 21, 2010
I am getting an error: OleDbCommand.Prepare method requires all parameters to have an explicitly set type.
on the last line of the code below.I have seen things saying you have to set the datatype of each parameter but how can i do that when it being generated by the command builder?
[Code]...
View 1 Replies
Feb 6, 2012
Basically Commands has Parameters and parameters has functions like Add, AddWithValue, and etc. In all tutorials i've seen, i usually noticed that they are using Add instead of AddWithValue.
[Code]...
since it saves my coding time. So which is better to use? Which is safe to use? Does it improves performance?
View 2 Replies
Aug 6, 2011
is there a way to get the GET parameters and POST parameters in just one function or Collection in ASP.NET? Like using $_REQUEST in PHP? I'm using VB.NET.
View 3 Replies
Aug 8, 2011
I am just starting out on VB so this is a very elementary question. If I want parse a file and store results in a csv format, which template do I use? Console Application? Empty Project?
View 1 Replies
Nov 9, 2009
I would like to have windows CE devices available and am unable to see how to select that option.
Under tools > options > device tools - Windows CE device is listed.
I'm new to this and unsure how to do this. I created a project, but it's not right for windows ce and does not deploy.
Do I need a windows ce template or how can it be selected under new project?
View 3 Replies
Mar 22, 2011
I have been working on a inventory management system for a friend of mine. It has to be able to keep track of incoming and outgoing stock from his business.
I have already got all the programing done, working great! But now it has got to the stage, that I need the program to print out invoices from the program. I have the program extract certain records from an attached database, and will most probably pass them into a variable in the function.
NOW... I have a template of the tax invoice page setup in MS word. I was going to make a macro in word that will automatically fill in all the "static" information, but I was wondering if passing the variables from the main program into the word macro is: 1. possible and 2. the best way of doing this.
I am still a noob when it comes to VB so please excuse the next question, but is there a way to set up a page to be printed including tables, logo, different font styles.. etc within the VB program?
View 5 Replies
Apr 18, 2010
I managed to export my data to an excel file, by using a excel template that I created beforehand. But I'd rather have that the excel file will be create when I press the button instead going to my file.
Dim ApExcel As Object
ApExcel = CreateObject("Excel.application")
ApExcel.Visible = True
[Code]....
View 2 Replies
Jul 24, 2008
On creating a new project in Visual Basic 2008 Express Edition (Version 9), where you get to choose a template, I can't find Standard EXE anywhere.
View 5 Replies
Nov 21, 2009
I'm making a signup application to go along with a website I'm making with HTML. I've already made one version of it with a WPF Browser application template, but it's not working the way I'd like it to. Is this the template I should be using or should I make it in the generic windows form application?
View 1 Replies
Jan 31, 2011
I am using Visual Studio 2008 Express, and I was wonder which Visual Studio Installed Template I should use just to execute VB code? Previously, I generated a project using Window Form template with a button to start, and it has references which made my .exe not to execute in any directory structure. Someone indicated that it must not have other absolute references and I think this was using absolute references? All I need to is to execute VB Code. What template would you suggest? Where do I put the start of the VB program to execute at? Since I don't need a form, there is no on event for me?
View 6 Replies
Jul 18, 2010
I'm trying to create my own templated helpers but I got stuck on TextBoxFor syntax. In C# its:
<%= Html.TextBoxFor(model => model) %>
And I cannot figure out (or google it) - how to write that in vb.net?
View 2 Replies
Dec 22, 2009
Try5Times will try a function for 5 times.that function can have any number of argument and return a boolean.
If the function return false, try again.
If the function return true, stop.
How to make such function and delegate? Is there a general delegate?
View 3 Replies