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!

Search results for query: *

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

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

    Printer.print Line Wrap

    I get the feeling this is something obvious I am just not seeing. But... I am writing a report using VB's printer.print function. The problem is that I have a long string of text that needs to be printed but it is cutting off at the edge of the page. So, my question is: Is there a way to make...
  10. PoppapumpJ

    Printer.print Line Wrap

    I get the feeling this is something obvious I am just not seeing. But... I am writing a report using VB's printer.print function. The problem is that I have a long string of text that needs to be printed but it is cutting off at the edge of the page. So, my question is: Is there a way to make...
  11. PoppapumpJ

    Printing within ASP/IIS

    I have a VB DLL that generates different prints. Basically, you pass a property of what printer you want it sent to, then call the method of what you want printed. The report then comes out on that printer. This works fine from a VB application. However, when I use the same code in ASP/IIS...
  12. PoppapumpJ

    Printing DLL returns error message when accessed from ASP

    Hi, I have written a DLL to generate the prints of certain print outs. The Printer to print to is supplied as a property. Everything works fine when accessing through a VB application. However, when I run the same code in ASP, it returns the following error: Problem getting printer...
  13. PoppapumpJ

    Package/Deployment - reference install location

    Hey Guys, I have some files that need to be installed to a specific location during installation. I have edited VB standard installation program to do this copy. However, I am unable to reference the path the setup.exe is being run from. I have tried app.path and that always returns...
  14. PoppapumpJ

    Delete/Remove element

    I am looking to completely remove an element from the page and memory. The example I have shown ACTS like what I want. When you click the button, the table goes away. However it is just being hiddin. Does anyone know how to remove it completely from the DOM? Thanks <HTML> <HEAD> <META...
  15. PoppapumpJ

    Attaching event

    Can anyone tell me why this does not work. It looks the same as other examples, however the function does not execute when the event happens The addRow function is called from a row in a table. It is creating another row for that table <script> function ShowMenu(){ alert('got here'); }...
  16. PoppapumpJ

    Submitting value of dynamically created element

    I have a table with a hardcoded table and textboxes. The user can click the &quot;Add Row&quot; button and a new row will be added to the table for them to input text. Now the question is, why is the data collected in that newly created text box not passed during the submit. For want it's...
  17. PoppapumpJ

    Building Print line

    I am looping through a flex grid to generate a report. For every cell in a row I have been using this line Printer.Print .Text & vbTab; the row builds fine, but I need to be align the columns. I have tried this: Printer.Print .Text & Space(7 - Len(.Text)) that seems like it would space...
  18. PoppapumpJ

    Debugging problem

    I am in the process of writing a web application on my desktop. Debugger and everything else runs fine. However, I recently got a lap top and I want to transfer the project to that to continue working. I installed Framework and VS.NET. Then I copied the application directory from the desktop...
  19. PoppapumpJ

    Type mismatch error that should be working

    I have an include file with a function to build a string of all the error messages that occur. It takes 3 paramaters and builds the error message, then tacks it onto the end of any previous messages. now, the problem is when I call this function it says 'Type mismatch error'. Everything works...
  20. PoppapumpJ

    Customize Package and deployment

    I have an Excel Add-in Completed and it works great. I just want to do one thng during installation and I can find very little documentaion on the VB6 Package & deployment wizard. All I want to do is open Excel. Preferably just before it says &quot;Installation complete&quot; Is there a file...

Part and Inventory Search

Back
Top