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!

Search results for query: *

  • Users: mwa
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. mwa

    ContentPlaceHolder in User Control?

    From what I understand, it is not possible to use a ContentPlaceHolder outside of a MasterPage. But I would like to be able to create user Control that has an area that is similar to a ContentPlaceHolder. In this content area, I would like to add various different controls, based on the page...
  9. mwa

    pdf ContentType not displaying

    I have an application that uses the following to display a PDF document: MyFileStream = New FileStream(HttpContext.Current.Session("filePath"), FileMode.Open, FileAccess.Read, FileShare.Read) FileSize = MyFileStream.Length Dim Buffer(CInt(FileSize)) As Byte...
  10. mwa

    Call Page function from Child Control

    I have a .aspx page that has multiple User Controls. There is a sub on the page that is called to show/hide the correct UC: Public Sub ShowModules(ByVal uc As Integer) Select Case uc Case 1 WebUserControl11.Visible = True...
  11. mwa

    Update Statement - Use Case to choose update col

    Is it possible to use a case statement to choose the column to update? For instance, in the following example I have 4 columns. I want the parameter @p_name to go into the first non-null column of those 4: update InterviewSlots set case when isnull(slot1_reserved_by,'')= '' then...
  12. mwa

    Transaction across 2 DB platforms

    I have function in an ASP.net application that performs an insert into 2 different database platforms... One inserts into a SQL Server database, and a second into a DB2 database. The problem is that if either of the inserts fail, I need to rollback both. I've only ever done transactions with...
  13. mwa

    Applicant Registration - Design Help

    I'm in the process of designing an ASP.net application that would allow Job Applicants to register and submit applications for vacancies via the web. There is one requirement that I'm getting stuck on. In order for an Applicant to apply for vacancies, they must have an "Applicant" record in our...
  14. mwa

    Access 2007 - OpenQuery in Macro for Make Table

    Trying to run a Make Table query via a Macro. I set the Action to OpenQuery, Query Name to the Name of my query, View to Datasheet, Data Mode to Edit. When I run the Macro, I get the message "The action query <name> cannot be used as a row source." What am I doing wrong? How do I run a Make...
  15. mwa

    Make MDI Child Modal?

    I have an MDI parent that has 2 child forms (frmScan and frmRoomList). I would like for frmScan to remain modal so that the user can not access frmRoomList. It is only there to show a list of items. All the work should be done on frmScan. The following returns an error: Dim frmScan As New...
  16. mwa

    Disconnected DB Application

    I have been tasked with writing an Asset Inventory application in VB.net/VS2008 that will be loaded on to laptops. The laptops will have bar code scanners attached via Bluetooth. The application will be connected to our network and will download the current inventory into a local database from a...
  17. mwa

    Update iframe after 2nd iframe loads

    I have an aspx page that contains 2 iframes that split the page horizontally. In the top iframe I load an aspx page that contains a "Please Wait" message. In the second iframe I load a aspx page that streams a pdf file. The pdf file takes 10 - 20 seconds to load. Once it is done loading, I would...
  18. mwa

    CE Scheduled Report processes slowly

    I have inherited a .Net application that does the following: ' create the parameter objects Dim objVal As CrystalDecisions.Enterprise.Desktop.ReportParameterValue ' create a report object Dim objReport As CrystalDecisions.Enterprise.Desktop.Report ' create an infoobject object and an...
  19. mwa

    Image Storage and recollection

    I have a client that would like to begin digitizing some large documents (blue prints). He is willing to purchase/rent a scanner and begin scanning these documents into files and would like for me to design a web application that he can use to catalog these images. My question is, what is the...
  20. mwa

    Update returning error

    I am running the following update satement: update dbo.SECTION125 set status = 'C' where emp_id in (select emp_id from Enrollment_Confirmation) And I get the following error: "Subquery returned more than 1 value. This is not permitted when the subquery follows =,!=,<,etc." I've never had a...

Part and Inventory Search

Back
Top