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 Chriss Miller 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 mwa

  1. mwa

    Replacement Portal

    Several years ago, I built an employee portal for my organization built on the portal starter kit found here: http://www.asp.net/downloads/archived-v11/starter-kits/portal We'd like to build a new portal using asp.net 3.5+ but don't want to reinvent the wheel. Best case scenario would be to...
  2. mwa

    Logging in to External Site from My Site

    That would mean I'd have to provide them with a file of our User ID's and Pwd's. Not sure I want to do that. What about passing a GUID that represents a user ID, then write a web-service that they can call to check the GUID and retrieve the user? mwa <><
  3. mwa

    Logging in to External Site from My Site

    My organization has an Employee Portal of sorts to retrieve paystubs, benefits info, w2's, etc.. The Portal was written in Asp.net 1.1 using Forms Authentication. We have just recently contracted with an outside vendor to provide some services to our employees. What we would like to do is have...
  4. mwa

    Embed MS Word into Windows Form

    I like the concept, but I work at a K-12 school district... i.e. No Money to spend. I'll try to look for a similar open source solution. mwa <><
  5. mwa

    Embed MS Word into Windows Form

    I've been tasked with creating a Windows application for our company that users can use to enter information about various different processes. In this form will be various different fields related to the process. One of those fields needs to be a "Notes" field. The Notes field needs to have the...
  6. mwa

    Help needed converting C# to VB

    Sweet! Thanks! mwa <><
  7. mwa

    Help needed converting C# to VB

    I just figured it out... For future reference: metadata.add (new DocAttribute() with {.name="name", .value="123"} ) A star for me! mwa <><
  8. mwa

    Help needed converting C# to VB

    My company is using a piece of software developed by another company. Their software has an API to add/remove documents from their system. They've given us a sample written in C#, and I'm in the process of converting it to VB. I'm stuck trying to understand one thing. They have the following...
  9. mwa

    Handling Special Characters

    I'll try to spare you some of the irrelevant code... Here is the Insert SP: -- Generated on: 02/26/10 15:53:47 -- Relational Database: MYSERVER -- Standards Option: DB2 UDB iSeries SET PATH "QSYS","QSYS2","MYDB" ; CREATE PROCEDURE...
  10. mwa

    Handling Special Characters

    I have an ASP.net web application that reads/writes data to a DB2 database. We have been getting numerous "Conversion Errors" when writing data. I think I have narrowed it down to users entering text containing the ' character (or char(146))... Not to be confused with the ' character (or...
  11. mwa

    Handling Special Characters in Text fields

    Yes, I am using a parameterized query: Public Function InsertEmployment(ByVal strEmpId As String, ByVal strExpBucket As String, _ ByVal strOldExpBucket As String, ByVal strFromDate As String, _ ByVal strOldFromDate...
  12. mwa

    Handling Special Characters in Text fields

    I have an asp.net web application that reads/writes data to a DB2 database. We have been logging numerous "Conversion Errors" in our error tracking utility. I've finally been able to narrow the problem down to users entering text containing the ’ character (or char(146))... Not to be confused...
  13. mwa

    Activate form

    That did it... Thanks. mwa <><
  14. mwa

    Activate form

    I have a little Task entry application that I wrote for me and my colleagues to track completed tasks throughout the day. The application stays positioned at the top of the screen and has it's height=30px and opacity=25%. When the user mouses over the form, it expands and opacity changes to...
  15. mwa

    ContentPlaceHolder in User Control?

    Got it... Thanks! mwa <><

Part and Inventory Search

Back
Top