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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by oldwen

  1. oldwen

    Adding a code file to the master page

    Does anyone know how to add a code behind file to a Master Page that is already been created? Thanks for your help.
  2. oldwen

    Program - Not in Task Manager Application Tab, but still in Processes

    Yes... You can do this using .NET. Import the System.Diagnostics and use the Process.GetProcessByName function. Example.... Imports System.Diagnostics If Not Process.GetProcessByName("theprocess") Is Nothing Then MsgBox("Process is going....") Else Whatever else. End If Hope this...
  3. oldwen

    AZMAN with VB.NET and .NET Framework 1.1

    ?Can anyone provide me with some examples of how to use AZMAN with VB.NET in the 1.1 Framework? LINKS to literature and code samples would be great. Thank you.
  4. oldwen

    DTS Win32 Process Question

    I have a DTS package which runs an .exe file. When I run the DTS package, the .exe errs and execution fails, however, when I run the .exe by simply double clicking, the execution is successful. Can anyone help me to understand why the exe would fail from DTS, but not when running directly...
  5. oldwen

    CSS in ASP application

    Hello all, I am having some difficulty with css on my site. I have a simple style.css file on an .asp page as an include. When I run the page the css does not appear to fire. Now, when I push the file to another development server, the css now fires without having modified any code. My css...
  6. oldwen

    Data Report - Data Environment - Data Command - Param Query Problem

    Hello all, I need some expertise creating a parameterized query for my data command in my data environment. I followed the instructions from this site ....... http://www.windowsitpro.com/Articles/Print.cfm?ArticleID=5114 ......... BUT, when I get to the section to click on the parameters tab...
  7. oldwen

    VB6 and FoxPro

    Can anyone tell me how to create a MS FoxPro table using VB6. Basically I have an application that has a FoxPro backend and I need some data to be pulled from an oracle database, then create a table and insert that data into the newly created FoxPro table. Can this be done? Oldwen
  8. oldwen

    Form Validation and Querystring Rendering Methods

    Looked like a great idea, but the server.transfer method did not work. The page still post back to itself.
  9. oldwen

    Form Validation and Querystring Rendering Methods

    Hello fellow professionals. I have a problem with form validations and my web development method. I am using VS.NET 2003 and 1.1 Framework. My website is filtered entirely through my default.aspx page and content is rendered based upon the querystring provided. Example... <HTML> <Body> <%...
  10. oldwen

    Dreamweaver and VS.NET difference

    Hello fellow developers. I have a question about some basic development. I have been developing ASP apps in Dreamweaver for years now, and I am beginning to transition to VS.NET. I am somewhat confused on how this is done. Let me ask some basic questions here. 1) In Dreamweaver I can set up...
  11. oldwen

    ASP.NET and mySQL

    Hello all, I am trying to connect to a mySQL db using vb.net. I have been unsuccesful. In addition to this, I am growing increasing frustrated at the fact that there is little documentation on this. SOMEONE please help. HOW do you get ASP.NET(VB) and mySQL to work? I have download the odbc...
  12. oldwen

    Recordsets from ASP to ASP.NET

    Hello all, I need some expertise here. I am trying to learn this .NET stuff and I am confused about recordsets. Traditionally I would use a recordset like this.... Dim objComm, objComm2 Set objComm = Server.CreateObject("ADODB.Command") Set objComm2 =...
  13. oldwen

    Send Object Method

    Yes, that did the trick. Can you maybe break this down for me. Why does this allow you to send the message?
  14. oldwen

    Send Object Method

    Hello all. I am experiencing trouble with the send object method in MS Access. I get and error message that I was unable to send the message. My code compiles without error. Maybe there is a reference that I am missing or something. Any advice would be appreciated. Code: Private Sub...
  15. oldwen

    Power Point Notes Pane

    Looks like this code could work, but I am recieving a message that I have macros disabled. I don't find any documentation on how to enable macros, any advise. Thank you.

Part and Inventory Search

Back
Top