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 TouchToneTommy 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: *

  1. ProfReynolds

    VB6 XML Reader Class

    I'm looking for a good way to implement an XMLReader-style class in VB6. I have a 30 megabyte XML file that I don't want to load in to memory in order to parse through. Any suggestions? Thanks!
  2. ProfReynolds

    Track Password Changes

    Does anyone know of a way to determine the most recent time a password was changed on an account in Windows 7? I'm not trying to recover the password, log in without a password, or anything like that... A customer of mine is concerned that someone may have changed that password on a system...
  3. ProfReynolds

    slow file move using Scripting.FileSystemObject

    I am experiencing v-e-r-y slow copies from one XP machine to another. Especially when the file count approaches 200. Half of the files are 1KB or less, most of the rest <500KB, a few may reach 1.5MB. I am using VBA to make the copy. I cannot DOS copy *.* because only a subset of the source...
  4. ProfReynolds

    Records written not imediately available

    I have a Microsoft Access application (local machine) that writes records to a table in a second Access database (on another computer). I then immediately generate a report via Crystal Reports in a separate (local) application. The problem is that the last record does not print in the report...
  5. ProfReynolds

    Using a legacy VB6 ActiveX DLL or EXE in a new C# project

    I am trying to integrate a set of legacy VB6 ActiveX components into a new C# project. They are currently compiled as EXE servers, but could be recompiled as DLLs. Also, if possible they should be loaded dynamically... But not required. I'm at a bit of a loss. Any help would be appreciated.
  6. ProfReynolds

    Debugging ASP.Net DCOM problems

    Network setup: Both computers are on the same subnet within the same domain. The user on both machines are in the Administrators group for both computers The remote server is Windows 2008 64-bit, running the 64-bit version of Visual Studio Remote Debugging Monitor The local computer is Windows...
  7. ProfReynolds

    SQL Server Replication from Workgroup to Standard

    If I have done my research correctly, this should work, but I'm hoping to get some confirmation. Essentially, I would like to set up a SQL Server Standard instance as a Distributor\Subscriber in a transactional replication model. It would be running on a full Server 2003 system in one office...
  8. ProfReynolds

    Using SQL Server 2005 Standard Edition on Small Business Server 2003

    Has anyone experienced any issue running SQL Server 2005 Standard Edition on Windows Small Business Server (SBS) 2003? I found a blog, which lists the Workgroup edition as fully supported, but it says that Standard was not tested. Thanks!
  9. ProfReynolds

    Need to render a PrintDocument as a PDF

    I am willing to purchase a component or dll or whate-have-you... I have a National Instruments Waveform Graph that I need to render to a PDF. I am successfully rendering it as a PrintDocument, and would like to be able to simply print it directly to a pdf. I can even capture the MetaFile of...
  10. ProfReynolds

    Problem sharing SOME of my folders

    Okay, I am totally flumoxed at this point. I am using Microsoft File and Printer Sharing Simple File Share is turned off Firewall is turned off 6 folders are shared "Everyone" is listed in all folders with full access The problem is that although 3 folders work just fine, 3 of them give...
  11. ProfReynolds

    Adding an errorProvider onClick event

    Is it possible to add an onClick event handler to errorProvider? I need to make some way that a user can display an error message and keep it visible until they are finished reading it. Generating a message box would be okay, but I would prefer some kind of extended length toolTip or something.
  12. ProfReynolds

    Set focus of crystalReportViewer to body of report in VS 2008

    When I load the crystal report viewer, I want the body of the report to be the default focus (without clicking in the body) so that users can use their scroll wheel to scroll down the report. How do I do this?
  13. ProfReynolds

    Deploy a project update without uninstalling previous version

    I'm using Visual Studio 2008 to develop a C# project, which is deployed via .msi distributed on a CD or via ftp transfer. I need to be able to upload or send out the latest version, and have it update the program without requiring the user to uninstall the old copy through Add\Remove programs...
  14. ProfReynolds

    XHTML 1.0 Strict Java Applet

    Okay, I want to use a JAVA applet, and have XHTML 1.0 Strict compliance. The page can be seen here: http://vle2.capella.edu/1126823/index.html I have the original code, here: <APPLET ARCHIVE="VerticalTicker.jar" codebase="http://vle1.capella.edu/1126823/Templates/Java/"...
  15. ProfReynolds

    Painfully slow spooling graphic intensive statements

    I need to embed a front-back graphic (two graphics) on all of my statements. This is a full page graphic so the sooled output is trying to save 8.5 x 11 x 300^2 x 3 bytes per side (300 DPI). This is going to a PDF using the standard Crystal PDF output DLLs. Crystal 9. I'd like to embed a...
  16. ProfReynolds

    RSS Java Applet

    Can anyone tell me if it is possible to create an RSS Parser as a Java Applet? I know how to do it in PHP or ASPX, and I can find applets that create ticker-style feeds, but I would like to implement a Java Applet version for a class I am in. I need it to parse the RSS feed into a format which...
  17. ProfReynolds

    Missing Parameter

    I have several reports which are all called through the same report viewer. They all use 2 parameters: Parameter 1: "Remarks" Parameter 2: "GroupID" Parameter 2 changes based on the report, but Remarks is always present. The code I am using to load the parameters is as follows: class...
  18. ProfReynolds

    Select based on data type

    Is there a way to select rows based on the type of data that is in them??? For instance: SELECT * FROM Table WHERE FieldName.DataType NOT AN INTEGER I would settle for something like SELECT * FROM Table WHERE CAST(FieldName AS int) == ErrorCode Thanks!
  19. ProfReynolds

    Format a string with escape characters

    Is there a way to take a string and format it such that it will be accepted in a SQL XML cell? I had thought that httpUtility.HTMLEncode would do the trick, but it doesn't quite handle it. Thanks!
  20. ProfReynolds

    Tab Leader (dot-dot-dot) like uSofft Word

    I'm preparing a membership directory and need to have a ... leader between the name and phone number. I'd really like this to function just like Microsoft Word. I've done a couple of tricks, but everything falls apart when the name is long and wraps to the next line.

Part and Inventory Search

Back
Top