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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.