2
votes
1answer
74 views
What is the VB equivalent of this C# syntax, dealing with delegates?
Is it possible to translate the following C# code into VB.NET, using VB 9.0?
delegate Stream StreamOpenerDelegate(String name);
void Exec1()
{
WorkMethod( x => File.OpenRe …
1
vote
1answer
22 views
Transform date represented as String to Date in Visual Basic
I am using SSIS and I need to transform a date.
How can I transform a date in String format (e.g. 14/09/1980) to the same but in date format in VB.NET?
I would like the datetime f …
0
votes
1answer
36 views
Memory leak in VB file reader
I'm currently coding a file reader for fixed-width tables in VB, and the compiled application seems to be sucking down memory like there's no tomorrow. I'm working with a series of …
0
votes
0answers
14 views
Data report in VB 6.0
I'm using data report in VB 6 and trying to display images from database. It retrieves the image but showing the same image for all output
the code i'm using are given below
Dim r …
0
votes
3answers
127 views
Delphi to Visual basic conversion utility
Is there any code conversion tool for converting Delphi to Visual Basic? Please advice.
Thank you very much.
0
votes
2answers
59 views
Convert this to VB .Net?
Hi,
Can any one help me to change the below code to VB .Net.
var(query = From row In dtInvoice.AsEnumerable())
group row by new { InvNo = row.Field< string …
1
vote
5answers
50 views
VB/VBA Variable Declaration Coding Standard - White Space
What is the significance of declaring variables in VB/VBA like so:
Private m_sName As String
Private m_lAge As Long
As opposed to;
Private m_sName As String
Pr …
0
votes
1answer
52 views
How to pass NULL or empty strings to stored procedure input parameter with ADO and VB?
I have a stored procedure in Sql Server 2005 with a varchar input parameter defined as:
@Value varchar(24) = NULL
in my VB6 application I try to set the parameter with an ADO fu …
0
votes
7answers
74 views
+100
ASP page displaying old request.
I have an ASP.net page which has fields for filtering a dataset. When I apply the filter (through a button), the results load fine. If I navigate to another page (on the same sessi …
1
vote
1answer
81 views
High-level multithreading/concurrency abstractions for .NET
I just wondered why, unlike Scala, F# or Haskell, the basic .NET framework (as available in C# or VB) seems to have very little native support for higher level concurrency patterns …
1
vote
4answers
60 views
Visually remove/disable close button from title bar .NET
I have been asked to remove or disable the close button from our VB .NET 2005 MDI application. There are no native properties on a form that allow you to grey out the close button …
1
vote
10answers
310 views
Simple VB or C# questions for an interview?
I'm conducting an interview in 45 min (my second ever!) for a candidate who's pretty junior and states she knows VB and C#. I do not have any experience in either of those languag …
0
votes
2answers
46 views
How to create a popup menu in visual basic.net?
How can I create a popup menu in vb 2008 for use as a context sensitive menu for when I right-click?
0
votes
2answers
28 views
Auto FTP from a Directory
I want to monitor a directory and FTP any files that are place there to an FTP location. does anyone know how to do this in c#?
Thanks
0
votes
2answers
31 views
Visual Basic & Context Menu
Is there a way to add a Header to the popup menu? I don't find a property for this.
