Tagged Questions
13
votes
2answers
3k views
VB.NET: What's the suffix (type character) for “Byte” numeric constants?
Just out of curiosity:
I know I can tell the compiler if I want a value to be interpreted as a certain numeric type, e.g. as Integer (32 bit signed) this way appending an "I" (type character) to the ...
2
votes
1answer
44 views
How do I access private constants in class attributes in VB.Net?
I have an API that I created and currently utilize successfully in C#. I am trying to create an example of interacting with the API in VB.NET (so that the QA without C# experience can still utilize ...
2
votes
3answers
2k views
Passing a constant array to a function in VB .NET
I know that you can easily pass an array to a function, like the code below shows
Private Sub SomeFunction(ByVal PassedArray() As String)
For i As Integer = 0 To PassedArray.Count - 1
...
2
votes
7answers
842 views
.NET enumerations of symbolic constants for string values
I have a list of rather meaningless codes that I'm processing with a VB.NET Windows application. For the business logic I'm writing to process those codes, I'd like to use meaningful constants (like ...
1
vote
2answers
96 views
Visual Basic Struct with all windows constants
Every time I do something that ends up using windows API calls in VB, I always end up having to look up the values for the windows constants.
Does anyone have a file with a class or something for VB ...
1
vote
3answers
935 views
How to obtain a list of constants in a class and their values
I have a class in VB with some constants that represent the string name of my security roles. I need to be able to call a function to return to me a string array(or collection, or whatever) of the ...
1
vote
5answers
3k views
VB.NET Assigning a binary constant
Is there a way to assign a binary value to a vb variable? All of the obvious choices don't work. I've tried prefixing with &B, appending with b but nothing seems to work. I'm not having much ...
1
vote
2answers
709 views
How to define 64 bit constants in VB?
In Visual Basic
Friend Const xxx As UInt64 = 400 * 365 * 24 * 60 * 60 ''// Number of secs in 400 years
This fails with the error
constant expression not representable in type integer
The problem ...
0
votes
2answers
230 views
VB.NET Is there a way to create a pre-processor constant that behaves as a simple text substitution?
VB.NET 2010, .NET 4
Hello,
I would like to do (something like) the following:
\#Const T = "Byte()"
Public Class MyClass
Inherits SomeGenericClass(Of T)
.. other code ..
End Class
And have ...
0
votes
1answer
247 views
How can I use CodeDom to create a decimal constant?
I have this function in my generator.
Private Sub AddBoundedValue(ByVal boundedValue As Object, ByVal type As CodeTypeDeclaration, ByVal numericType As Type, name As String)
If ...
0
votes
4answers
163 views
Overridable Constant?
Maybe I should just make this a public member, but I keep thinking it should be a constant.
SCENARIO
I have forms I'm rendering into PDFs (using iTextSharp). In code, the forms themselves all ...