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 strongm 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: DatabaseDude
  • Content: Threads
  • Order by date
  1. DatabaseDude

    Links to PDFs stored in DB

    I am in the process of writing code for uploading PDFs. The page will contain (1) upload control for adding new PDFs and (2) grid that lists current PDFs. The table in which PDFs will be stored contains fields named AttachmentId (int), Attachment (varbinary(MAX)) and AttachmentFileName...
  2. DatabaseDude

    AJAX help: Popup control extender not working

    I have a gridview, in which there's a notepad icon as an image. When the user mouses over the icon, I want a pop-up to display any notes associated with that record. However, nothing happens. Gridview code: <asp:ScriptManager id="ScriptManager1" enablepartialrendering ="true"...
  3. DatabaseDude

    Most efficient method of binding controls

    Which is the more efficient method of binding controls (listbox, dropdown list, gridview, etc)? - Using a SQLDataSource control for each - Creating a single connection in the codebehind page & using it to retrieve all data My first instinct is to code everything by hand, but I wanted to take...
  4. DatabaseDude

    Membership.CreateUser without password question &amp; answer

    Membership.CreateUser takes arguments for username, password, email, password question, and password answer. However, in the current project, we're not using the security question and answer. Does it matter what is entered for the question & answer? They're required, apparently. This works...
  5. DatabaseDude

    Progammatically setting &quot;Target&quot; for hyperlink columns in gridview?

    A gridview contains a list of links, a menu of sorts, for users in an app. Some are external, some are internal. (Aside from the external beginning with "http://" they are also flagged in the database with an IsUrl field.) We'd like the external links to open in a new window (target = blank)...
  6. DatabaseDude

    Problem with listbox not recognizing selection

    This is probably so simple that I'll beat myself repetitively after learning the answer :) Problem: I have a listbox, lstUrls, that is populated by a dataset. It contains a list of web sites. And there is a button, btnRemove, that attempts to recognize the currently selected record in lstUrls...
  7. DatabaseDude

    Filtering gridview based on current username

    I have a gridview that I'd like filtered by the current username. Its source is a stored procedure, taking one argument, Username (string). The datasource configuration provides the ability to select from such choices as form control and query string, but I'm not sure how to retrieve the...
  8. DatabaseDude

    Programmatically write to app settings in web.config?

    Is it possible to write settings to the web.config file? I'm deploying an app, and the smtp server name will be stored in web.config. I know that if the value changes, the web.config file can be edited per usual. However, I was wondering if this would be something that could be set by the admin...
  9. DatabaseDude

    Executing code on a schedule

    There's some code I'd like to be executed every x number of seconds. The only way my web host says it can be done is by putting it in an aspx (or ASP or CFM) page, and they can add it to Windows scheduled tasks. While this is an option, they schedule it to run far less frequently than I'd...
  10. DatabaseDude

    Access 2007 crashes when .NET component called

    I have an Access 2007 application that "watches" a folder to determine if new files or added, or if existing files are renamed. This uses the .NET FileSystemWatcher class, incorporated into a DLL wrapper named IOLib. I've downloaded all the code and made it work without error in a VB6 form...
  11. DatabaseDude

    GACUTIL error when running an install.bat file

    I've downloaded some VB code that creates a wrapper for the FileSystemWatcher class in .NET. http://msdn2.microsoft.com/en-us/library/ms364070(vs.80).aspx Included was an install.bat file to register everything. It worked great on one machine. However, on another, I got the following error...
  12. DatabaseDude

    Capturing file name from Acrobat

    Most of the time, it seems as though we're sending things to PDFs. Well, this time it's somewhat the opposite :) Here's the situation. A client wants to save scanned files as PDFs, and store the files in a database table. Since Access 2007 has the Attachment data type, that's what we're going...
  13. DatabaseDude

    Save contents of email to database?

    (Please forgive me if this isn't in the proper forum) Some support sites allow users to submit "help" requests via email. These are then loaded into the support database and case numbers issued, confirmation emails sent, etc. My question: how does the automated process access and load the...
  14. DatabaseDude

    Best practice for site setup?

    I'm designing a new paid membership-based site. It's conceivable that some subscribers will want, and pay for, customization to one or more pages. Some of the ability to customize will, of course, be built into the design (such as choose fields for creating a download), and I will make some...
  15. DatabaseDude

    Best way to fax reports with cover sheets without 3rd party software

    Bit of explanation to start: This particular client has used -- with little success -- WinFax in the past to attempt sending reports to clients via fax. He's not willing at this point to consider using anything but the fax capabilities of Windows Server 2003. What we're wanting to do...
  16. DatabaseDude

    Best way to fax reports with cover sheets without 3rd party software

    Bit of explanation to start: This particular client has used -- with little success -- WinFax in the past to attempt sending reports to clients via fax. He's not willing at this point to consider using anything but the fax capabilities of Windows Server 2003. What we're wanting to do...
  17. DatabaseDude

    Best way to fax reports with cover sheets without 3rd party software

    Bit of explanation to start: This particular client has used -- with little success -- WinFax in the past to attempt sending reports to clients via fax. He's not willing at this point to consider using anything but the fax capabilities of Windows Server 2003. What we're wanting to do...
  18. DatabaseDude

    Best use of ASP.NET membership tools and SQL logins/roles

    I'm just now learning of the membership tools available in ASP.NET 2.0 ... looks very powerful, and relatively easy to manage. It brought up some questions about how they'd relate to SQL logins and roles. An app that I am expecting to begin working on shortly will have a hosted SQL Server 2005...
  19. DatabaseDude

    Synchronize data between laptops and server?

    (Note: Please let me know if this is best asked in a different SQL forum) I'm not sure of the exact terminology ... terms such as replication and synchronization come to mind, but I want to make sure I'm speaking properly :) The situation is that users would carry a laptop or have a home PC...
  20. DatabaseDude

    Insert ADO recordset contents into table

    A custom object returns an ADO recordset to Access. I'd like the contents to be inserted into a table as quickly and efficiently as possible. I know that this can be accomplished by looping thru the records, but I was curious whether there was a more efficient operation. I'm particularly...

Part and Inventory Search

Back
Top