0
votes
0answers
23 views
Weird .NET Memory Leak in ClickOnce app that can’t repro as Desktop
In Visual Studio, are there any real differences between a "Release" build of an application, and a published version of the same application?
I have an ugly memory leak that's creeping up only in …
0
votes
3answers
67 views
TypeOf is myType
Hello. I have a function
Public MyObj as Object
Public Function Test(t as Type) as Boolean
Return TypeOf MyObj is t ' does not work
End Function
Thanks.
* EDIT
…
0
votes
2answers
44 views
Can a string encoded with Base64 not contain “+”?
I need to Base64 encode a string, but the encoded string cannot contain "+". Wikipedia mentions a modified Base64 for URL, but I can't find a .NET class which uses this.
For my application, I can't …
0
votes
2answers
34 views
VB6 convert to VB.net Variant question
I have been tasked to convert out VB6 program to VB.NET. In my research online everyone seems to say I need to go through my code and get rid of any Variants I have. I have had pretty good luck so …
0
votes
1answer
27 views
Sort blank entries to bottom of LINQ query.
I am trying to sort a LINQ to SQL query based on two fields. The first field is occasionally blank which automatically sorts to the top of an ascending query. Is there any way to make the blank …
2
votes
5answers
167 views
Proving SQL Injection
I'm trying to simply prove here that this simple function isn't good enough to prevent every sql injection in the world:
Function CleanForSQL(ByVal input As String) As String
Return …
1
vote
2answers
29 views
Changing the orientation of a Win control in VB .Net
I need to allow the user to rotate a control (the control inherits from a TextBox) in 90 degree increments so the text can be read from either side, or even upside down.
I'm guessing I could override …
1
vote
1answer
14 views
Vb.net project with c# fluent nHibernate mappings project
Having successfully tried out nHibernate, I would now like to try using Fluent for mapping. My main project is in vb.net but I would really like to use c# for the mappings since the lambda expression …
0
votes
0answers
11 views
Starting and displaying progress of multiple synchronous operations
I have a WinForms app and am trying to add the ability to start up multiple operations based on data entered in a datagridview. The operations must be run synchronously to monitor that they complete …
0
votes
4answers
36 views
Clickable URL in a Winform Message Box?
I want to display a link to help in a message box. By default the text is displayed as a non-selectable string.
0
votes
3answers
30 views
Help to convert this PHP code to VB.NET code
Hi
I have a code to send XML via POST. But this code is in PHP and I need it in VB.NET.
Any help to convert this code?
$XMLFile= (here i have created the xml file. XML is encoded ISO-8859)
$ch = …
0
votes
3answers
56 views
Visual Studio is not recognizing new classes
Hi,
I'm using visual studio 2008 SP1, I'm working with a web project in VB.NET.
the problem when I add new class file (of-course in App_Code) it doesn't recognize it. all the old class files are …
0
votes
1answer
14 views
Checking user keypresses creates a warning
I am attempting to keep user inputs into our application as clean as possible. One way I am attempting to do this is not allowing incorrect data type in fields (not allowing alpha characters when …
0
votes
3answers
45 views
Checking for an SQL result in VB.NET
I need to check if my SQL statement returned any results from the Access db I'm using to store my data.
I have this code atm:
cn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data …
4
votes
5answers
109 views
Why use System.Threading.Interlocked.Decrement instead of minus?
I converted some c# code to vb.net and the converter.telerik.com turned this:
i--;
into this:
System.Math.Max(System.Threading.Interlocked.Decrement(i), i + 1)
Whats up with all the fancy-ness?
