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 bkrike 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: *

  • Users: knovak
  • Content: Threads
  • Order by date
  1. knovak

    Selecting Attributes in XSL

    I have the following template in an XSL file. I am trying to get to the attribute of the 'answer' elememt and compare in using an <xsl:choose> tag. I know my code it getting into here b/c if I put something above <xsl:choose>, it prints out. How do I select the value of an attribute? It...
  2. knovak

    Create objects from CLSID?

    I'm writing a utility for our work and one of the reqs. of this utility is to be able to create an object from knowing just the CLSID of the object. For example, when I run the following code in a function, I receive &quot;Can create ActiveX component&quot; Dim oObj As Object Set oObj...
  3. knovak

    Looking for Treeview with Columns..

    I'm looking for a TreeView control that has the ability to display columns like a grid. I've come accross some out there but they're all really expensive. Are there any freeware controls with this functionality out there? Thanks, Kyle
  4. knovak

    &quot;Reading&quot; a GUID from a COM DLL

    Is there a way to read the GUID from the actual binary file? I haven't found anything in the API to actually read a binary file for the GUID. Is there even such a thing? For example, regsvr32 will register a DLL and place the DLLs GUID in the Windows registry. How does regsvr32 find the...
  5. knovak

    &quot;Reading&quot; GUID from COM DLL

    Every DLL compiled with VB contains a GUID which uniquely identifies that DLL. Is there a way to read this GUID directly out of the DLL (binary) file? Thanks, Kyle
  6. knovak

    Passing Dates

    I'm trying to pass a date to a SQL7 procedure from VB6. The param in the stored procedure is declared as a datetime. When I pass an empty string (i.e. '') to the procedure, SQL7 wants to put in the value of 1/1/1900. I just want a null value if the date is not passed in. I also tried using...
  7. knovak

    Select Case 48 to 57 doesn't work

    The following block of code does not work in ASP, but works in a regular VB executable just fine. I get the following error message Expected statement Case 48 To 57 --------^ Here is the block of code... While (intR <= 5) intA = Int(Rnd * 93) + 33 Select Case intA...
  8. knovak

    Generating Random 6 Character String?

    I need to generate a random 6 character string? Any suggestions on how to do this? Thanks, Kyle
  9. knovak

    Run-time info of functions

    Is there a way to get the run-time information of a function? i.e. How many params the function takes and the data type of each parameter. I'm using VB 6. Thanks, Kyle
  10. knovak

    Changing Linked Tables Makes Them read only?

    I have linked Access2k tables to a SQL7 backend. They were pointing to a dev ODBC connection. I went into the Linked Table Manager and checked 'Always prompt for new location'. I then chose the prod ODBC connection. Now when I try to edit the data, I get a 'Recordset is not updatedable...
  11. knovak

    Changing Link Table ODBC Settings

    I have a bunch of linked tables to SQL7 in Access 2k. Right now each user's machine has a 'ccdata' ODBC connection which is the prod db. I want to create a test version of the Access db and point them to a differnt ODBC connection (for testing). How do I change the current linked tables from...
  12. knovak

    &quot;Filter For&quot; menu item and filtering?

    If a user right-clicks on a field and enters criteria in the &quot;Filter For&quot; box, how do I keep them on the same record if the criteria they enter is not in the current record set. I can't find any examples on MSDN that do this. Thanks, Kyle
  13. knovak

    Requery only a single field on a form?

    Is there a way to requery only a single field on a form instead of the form.requery method call? I don't want to bring all the data back over the network again, just specific fields. Is this possible? Thanks, Kyle
  14. knovak

    Strange Error with Field Updates

    I have a form which displays data through a linked table to SQL 7. When I modify a field, click Next on the navigation bar, then click Back and edit another field I receive the following message... &quot;The data has been changed Another user editted this record and saved the changes...

Part and Inventory Search

Back
Top