I am brand new to SSRS so this might be universally known as a bad question :) I did an extensive project with Access reports about a year ago so I have an idea of the crazy tree I'm barking up; I just want to make sure I don't want to waste any time going down a path that has nothing good at...
I have a non-normalized table that I'm trying to get certain results from and its posing a bit of a problem. The table is organized as follows (all fields are text):
ID FirstName LastName Address1 City State Zip DateConfirmed
12345 Bugs Bunny 123 Hello Street Topeka KS 22222...
I have a VB6 DLL that is referenced by many other VB6 clients. This DLL has binary compatibility set. Is it possible to write a .NET replacement for this DLL (with the same name, methods, etc.) and make it 'binary compatible' with the VB6 version such that I wouldn't have to re-reference and...
What is the most straightforward way to do this? I have created a .NET assembly, clicked 'Register for COM Interop' on the properties page, strongly named it and compiled it. Then I GAC'd the .NET DLL manually. Calling the .NET assembly from my VB6 code with...
Is it possible to create a VB6 interface that can be implemented in a .NET class? I have the need to call a method in an existing VB6 class that behind the scenes will call either a VB6 or .NET class that utilize the same interface. For instance....
MyObject.Type = "clsVB6"...
I have some specific text that when found I want to return a numeric value using a regular expression. For instance, if I have the following text:
"No money available"
I want to (using a regular expression) find this specific text and return a zero, not the found text. Is this possible?
I want to create a datagridview that has two columns. They will be populated from a table that has two fields; one being a string and the other being a boolean. Since I'm creating my datagridview columns programmatically how do I attach my datasource to this grid and set my values accordingly...
I am having a problem returning a value from an invoked method. The class I'm instantiating is as follows:
Public Class DoItClass
Public Function GetAValue(ByVal p_intType As Integer, ByRef p_strWhichType As String) As String
Select Case p_intType
Case 1...
I want to read in a text file, edit the rows of that text file, and pass that edited "document" in memory to another process without writing the text file and having the other process read in the edited text file. I know I could write the edited file to a string variable and pass that string to...
I have a situation where I have table that contains an id field and a class name field:
id class_name
1 ParseExcelFile.dll
2 ParseTextFile.dll
What I want to do is load one of these classes dynamically from a windows application based on the id I request from the...
I am running amqsputc in MQ Series Client v5.3 to test the connection between my server and a customer's server. I am getting the message "MQCONN ended with reason code 2393". AMQERR01.LOG says:
"AMQ9643: Remote SSL peer name error for channel '%XX.XXXX01.SSL'.
EXPLANATION:
The remote end...
I have an input box on a classic ASP form in which I want to capture whether or not the Enter key has been pressed when that input box has focus. Can I do this?
I'm loading a checked listbox dynamically from a list of statuses from a table with similar values:
ID Description
1 Pending
2 Done
3 Processing
4 Dead
etc.
I have another table with a pipe-delimited string that is a list of default statuses to be...
I need to run a query where the results can be filtered by a value ranging from 1 to 11 or any combination thereof. For example:
SELECT * FROM MyTable WHERE Status in (1,2,3)
SELECT * FROM MyTable WHERE Status in (2,4,8,9)
How do I implement this kind of filter in the context of a stored...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.