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 PoppapumpJ

  1. PoppapumpJ

    Persist Password question

    I am autenticating a web app using the FormsAuthentication.RedirectFromLoginPage method once I validate my username/password combo. To invoke transactions from an API throughout my app, I must pass along the username and password. I can pull my user name from user.identity.name with no...
  2. PoppapumpJ

    Update masterpage from App_Code files

    thanks Jason, I guess what I am having trouble with is passing the object to the masterpage. Items in the App_Code are not really part of the Page namespace...So I'm having trouble hooking into the in-use instance of the master page. Sorry if I'm not using the correct vocabulary..I'm fairly...
  3. PoppapumpJ

    Update masterpage from App_Code files

    I apologize if this is somewhere else and I've just missed it. I have a footer (label control) in my MaterPage that I use to display any errors that occur during the processing of a transaction. I have opened this label control as a public property in the master page and I can add text to the...
  4. PoppapumpJ

    Add identity with ALTER TABLE SQL statement

    I recently converted a large Access database to SQL server. My web hosting company performed the migration using Access' Upsizing Wizard and the auto-increment setting was not applied to any of my primary keys. The hosting company will not tell me the IP address of the SQL server database. All...
  5. PoppapumpJ

    Everything is hidden (Tables, views)

    I am kind of new to this so I apologize if I missed something. I searched a lot before posting. I have just set-up a DNN site locally for testing using SQL server 2005 Express on an XP machine. When I go into Management studio express, I can create new databases. I can even create new tables...
  6. PoppapumpJ

    Losing Adjustment layers on when flatten

    OK, here is the part where I feel like a moron. I had used a layer to lighten some shadows on my models. The layer was set to soft light and I painted white on the areas I wanted brighter. When I flatten the image, I guess it didn't know where to apply those layers so it discarded them. Once...
  7. PoppapumpJ

    Losing Adjustment layers on when flatten

    Thanks for all the help. I tried putting all the layers into a layer set with the same result. PS = v. 7.0 OS = Windows XP
  8. PoppapumpJ

    Losing Adjustment layers on when flatten

    Thanks Andrew, I just tried all of those and I'm getting the same result. All I am does is lowering the saturation alot, upping the contrast and then adjusting the hue/saturation with colorize to add a soft blue tone. Now this is getting really frustrating. I applied my changes to a copy of...
  9. PoppapumpJ

    Losing Adjustment layers on when flatten

    I have an image that uses a couple adjustment layers, (Brightness/contrast & Hue/saturation) When I flatten the image it appears to lose the affects of the adjustment layers. Even if I attempt to SAVE AS... without applying the flatten, it still loses the information. The image is in RGB...
  10. PoppapumpJ

    File upload permission denied with permissions set

    OK, I feel like a big Bone Head. The problem here turned out to be that I was not suppling a file name. I changed my code to look like this and it worked like I expected it too. Dim strFileType As String = FileUpload1.PostedFile.ContentType Dim intFileSize As Integer =...
  11. PoppapumpJ

    File upload permission denied with permissions set

    I added NETWORK SERVICE to have full control on that folder and still no luck. I also tried uploading to different folders, some even outside of the web direcotry and still got the same error. It is weird because it lets me write profile info to my APP_DATA folder (using Access Provider) and...
  12. PoppapumpJ

    File upload permission denied with permissions set

    I apologize if this is answered somewhere else but I have been unable to find it. I am about at my wits end. I am attempting to upload a file to a folder using the file upload control. Here is the code behind my submit button Dim strFileType As String = FileUpload1.PostedFile.ContentType...
  13. PoppapumpJ

    Timer calculation bug

    Hi, I am attempting to make a record of how long it takes to run a function. I am using the Timer function to see time down to the millisecond. However the problem I am seeing is that sometimes I get a negative number. Here is an example: GenericTimer = Timer objMyObject.myFunction msgBox...
  14. PoppapumpJ

    onclick button issue?

    Try using the onMouseDown event to show the Pressed image. You'll also need to add somehthing to the onMouseUp event to display the released button. Hope that helps
  15. PoppapumpJ

    OnChange event from another Event

    hi, I have a set-up where an image is changed when the onChange event is fired for a dropdown. Everything works great when the user makes the selection. However, I would like to expand it so that the user can click a thumbnail and the option will change value. I can get the value to change...

Part and Inventory Search

Back
Top