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

    Arrays and sessions

    will someone please tell me why I'm getting the 'type mismatch' error on this piece of code. the error comes from the 'for i= 0 to ubound(sysmods)' line. thanks DIM QRY2, RST2, SYSMODS QRY2= "select P.PRE_SYSMOD_NO, F.TAPE_NO from FIXPRE P, FIX F where P.SYSMOD_NO ='" &...
  2. nam4520

    .net odbc connection successful but....

    i guess i found the solution to this problem myself. instead of using .net matrix, i put the code in a text file and it no longer gets rid of the reference.
  3. nam4520

    include a file in asp.net

    i want to include this code snippet in an asp.net file and include it in every page where I need to open up my database. it was straightforward in asp. how do i get it done in asp.net? thanks 'this opens up my database sub page_load(sender as object, e as eventargs) Dim strConnectionString As...
  4. nam4520

    Getting Started with .Net

    also new to asp.net. but i'm using webmatrix instead of the visual studio.net. But i believe you can use visual interdev as well to develop your apps as long as you save the txt files with an aspx extension, that if, if you love a lot of coding.make sure you save the files in your server...
  5. nam4520

    .net odbc connection successful but....

    i downloaded the .net odbc dll from microsoft.com. i was able to access data from my interbase database by making a reference to the dll. putting in your code <%@ Page CompilerOptions='/R:&quot;C:\Program Files\Microsoft.NET\Odbc.Net\Microsoft.data.odbc.dll&quot;' Debug=&quot;True&quot...
  6. nam4520

    Help with dll

    Hey Baddos, I just registered it in the registry. How do you register it with component services? Anyway, I found that vbscript can interact with the registry by using the server.createobject(&quot;wscript.shell&quot;) code. This also works excellently when i run it in vb but not on...
  7. nam4520

    wscript.shell

    this is the code that i'm trying to execute <% dim WshShell Set WshShell = Server.CreateObject(&quot;WScript.Shell&quot;) WshShell.RegWrite &quot;HKEY_CURRENT_USER\Software\ADOBE\Acrobat PDFwriter\PDFFileName&quot;, &quot;c:\pdfwriter\test.pdf&quot;, &quot;REG_SZ&quot; Response.Write...
  8. nam4520

    wscript.shell

    Hey People, Does anyone know why i'm getting this error. I know the root is correct. I'm using an IIS server and my platform is windows 2000 professional. Please help. Error Type: WshShell.RegWrite (0x80070005) Invalid root in registry key &quot;HKEY_CURRENT_USER\Software\ADOBE\Acrobat...
  9. nam4520

    Help with dll

    I have dumped the local computer idea. I'm no longer interested in having the dll access a local computer's registry from the server. But now, the dll doesn't work on the server machine either. it recognizes that the dll is there but won't do anything with the variables that i'm passing. I could...
  10. nam4520

    Help with dll

    Hey Baddos, That's my intention, to change the registry setting on a local PC. Why should n't it work? Is there another way to do it? thanks
  11. nam4520

    Help with dll

    Hey Guys, I'm new to COM. I don't even know if what i'm trying to do is possible. I want clients to be able to change their registry settings from a server. The code that i'm using works as a vb standard exe. but then, when i make a new project and then use the same code to make a dll which...
  12. nam4520

    Why XML? Why not databases?

    Hey, Reading your postings also helped me explain somethings about xml. i'm new to it and I've been wondering why i should use it instead of the database. it just seems to be an extra and unnecessary step to take in presenting data. I'll continue to delve into it. Thanks
  13. nam4520

    special characters in database

    The XML page cannot be displayed Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later. -------------------------------------------------------------------------------- End tag 'note_body' does not match the start tag...
  14. nam4520

    special characters in database

    I have special characters such as &,<,>,&quot; already in the data i'm trying to read from my database. I am using ASP with xml. I can use a &quot;Replace function&quot; to replace some of these characters with the replacement entities such as &quot;&lt;&quot; as I loop through to output the...

Part and Inventory Search

Back
Top