Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. DerPflug

    Dynamic Reports

    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...
  2. DerPflug

    Tie Breaker Query

    Sorry, the DateConfirmed field is indeed a date/time field.
  3. DerPflug

    Tie Breaker Query

    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...
  4. DerPflug

    COM Interop and Binary Compatibility

    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...
  5. DerPflug

    Calling .NET Assembly From VB6

    What I mean by that is that I dragged the DLL from the build folder to the 'Windows/assembly' folder.
  6. DerPflug

    Calling .NET Assembly From VB6

    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...
  7. DerPflug

    Interop VB6 Interface to .NET

    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"...
  8. DerPflug

    Show XML Like Internet Explorer

    Resolved...a pretty useful link: http://www.geekzilla.co.uk/ViewD245BBE0-2EAB-44C0-9119-8038467926EE.htm
  9. DerPflug

    Show XML Like Internet Explorer

    Is there an easy(ish) way to show XML in an ASP.NET (2.0) page in a manner similar to that of internet explorer?
  10. DerPflug

    Substitution Regular Expression

    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?
  11. DerPflug

    Loading DataGridView with CheckBox Column

    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...
  12. DerPflug

    MethodInfo.Invoke Return Values

    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...
  13. DerPflug

    Editing a text file and passing in memory

    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...
  14. DerPflug

    Reflection and Interfaces [2005]

    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...
  15. DerPflug

    Reason Code 2393

    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...
  16. DerPflug

    Trap Enter Key in Input Box

    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?
  17. DerPflug

    Handling Events

    What's the best way to pass a variable value from one form to another when an event fires on the first form?
  18. DerPflug

    Checked Listbox Quandry

    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...
  19. DerPflug

    Dynamic SQL?

    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...

Part and Inventory Search

Back
Top