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

    How do I make a page with multiple AJAX custom controls?

    My web app has two custom controls, each of which uses a toolkitscriptmanager. When either one is on a page, it runs fine, but a page that has both of them triggers a "Only one instance of a ScriptManager can be added to the page." exception. What needs to added to the page with both controls to...
  2. weberm

    How do I keep the Favorites bar from reappearing in Windows 10?

    No matter what I do, I cannot seem to keep the Favorites Bar from appearing in IE11 on my Win 10 desktop. I had the same problem with my previous one, which had Windows 7, but the fix doesn't seem to work now. I tried unchecking "Favorites Bar" after right-clicking on the menu bar and I ran the...
  3. weberm

    Problems with the text file generated by exporting Access 2013 to a delimited text file

    I am attempting to export a somewhat large Access 2013 table to a delimited text file, with the intention of using the file to load an ORACLE table, but sometimes, it acts like there was a "data hiccup" of some sort that causes a rows to appear to be left or right shifted. I thought perhaps it...
  4. weberm

    How do I make a TextBox RangeValidator with a MaximumValue set to a Label?

    I have an ASP Label which shows the total number of items in an inventory system that is available for requisitions. I am working on a way to check the value entered in a TextBox is less than or equal to the number in the Label, which is loaded from an ORACLE database. I created a...
  5. weberm

    How does one graphically print aspx files?

    I have a project in VS2008 and would like to print the screens as defined by the aspx files, but I don't want to see the HTML code, I want to see how that code will be rendered, like when you're using "design" view of an aspx file...
  6. weberm

    Creating a CSV file converter in C#

    I have an accounting application that uses three data files. These files contain a file header and file footer with data records grouped by sub-headers and sub-footers. The first is the Invoice File which comes from our business and contains invoices to be paid. The second is the Payment File...
  7. weberm

    IE11 -- buggy as hell?

    I have IE11 on two computers and it doesn't work very well on either. Is anyone else encountering trouble with it and is it because websites aren't compliant with it yet or is it just a poor product?
  8. weberm

    Converting a C Windows program to C++ using MFC

    I have an old Windows program written in C that was partially converted to C++ but doesn't use MFC. I wondered if anyone's had experience converting such a program to use MFC before to judge if it's worth the effort or if it's better to leave well enough alone or to start a new version from scratch.
  9. weberm

    Is there software to create C# Solution reports?

    I'm looking for a way to create and print reports on C# Solutions but not having any luck checking Google. Is there an addon or program or feature in .NET that could print the windows in a Solution, the objects on it with their properties and events, the classes and how they are related, etc?
  10. weberm

    Where is the file read by GetPrivateProfilestring located?

    I have a VB3 program which uses GetPrivateProfileString to read an INI file containing the paths to data files it uses. The compiled version, which runs with the INI file in the same directory, has no problem finding the INI file but when I run it from within VB3 in debug mode, it complains...
  11. weberm

    Is there a way to print a solution with the forms as graphics?

    I'm not sure if this is the right place to ask, but is there a way to produce a print out of a solution which includes the source code but displays the forms as graphics (i.e., how they appear when painted) instead of or in addition in a textual form? A quick Google search came up with...
  12. weberm

    Data Recovery Recommendations

    Can anyone recommend a good data recovery service for a dead hard drive? I have a Windows XP machine whose two hard drives died. Ironically, the drives died the day I was going to make my quarterly backups. I took them to a local computer shop and they said the hard drives died ("unreadable")...
  13. weberm

    How to create an Outlook 2007 rule based on attachment content

    My application has a job that produces an email containing the job output and status ("Success" or "Fail") in an attached PDF file. Is there a way to create a rule which would scan the attachment and act on the contents?
  14. weberm

    Problem with Windows losing focus

    I recently noticed a problem with my computer losing focus and wondered if anyone else is experiencing the same thing. I thought it was the newest version of AVG I installed (2013) but I noticed this recently started happening on other computers as well and they don't have AVG installed. The...
  15. weberm

    VB3 conversion questions about VBX

    I am trying to revive an old project written in VB3 years ago and convert it to VB6 but my copy seems to be missing a license to use some VBX files. How can I obtain a VB.LIC file and what are the various VBX files sppsd to do? I noticed that when I converted directly into VB6 it replaced some...
  16. weberm

    Upgrading VB3 program with Tabbed dialog to VB6

    I have an old Visual Basic 3 program I'd like to upgrade but when I attempted to use the upgrade wizard, it complained about being unable to convert TABBED.VBX and changed it to PictureBox. I noticed that I can add the Tabbed Dialog component (TABCTL32.OCX?) to the toolbar in VB6, but it's not...
  17. weberm

    Rolling up subtypes within a Grouping

    I am writing a query for a report that reads a table containing receipts and gives totals by payment type: SELECT CASE WHEN payment_type_an = 'A' THEN 'AMEX ' WHEN payment_type_an = 'C' THEN 'CASH/CHECK ' WHEN payment_type_an = 'D' THEN 'DISCOVER '...
  18. weberm

    Uploading files via FTP OK, but SFTP is not

    I am converting some UNIX shell scripts that use FTP to upload a load file produced by a PL/SQL script to the mainframe via SFTP instead of FTP, but when I replaced FTP with SFTP, it's making the records "wrap around". Making this even stranger, I have other accounts on this UNIX server that are...
  19. weberm

    Upgrading older VB programs (sans Project Files) to VB.NET

    I have some old Visual Basic programs I'd like to upgrade to .NET because they currently require obsolete drivers like "VBRUN300.DLL" to run. I attempted to use the upgrade wizard but it appears it requires a project file and I only have .FRM, .FRX, and Make files, like this one: VERSION 2.00...
  20. weberm

    Resetting an ORACLE Sequence Generator

    I have an ORACLE sequence generator that periodically has to be reset (it feeds into a fixed-length field of a COBOL app). I do this by running a script that drops the sequence and the creates it: DROP SEQUENCE RCPTNUM_SEQ; CREATE SEQUENCE RCPTNUM_SEQ START WITH 1 MAXVALUE 99999 MINVALUE...

Part and Inventory Search

Back
Top