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 SkipVought 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. FoxyBOA

    Resin plugin for Eclipse under Windows Xp

    Hello! I have Windows XP and try use Resin plug-in for Eclipse (Improve Resin Plug-in for Eclipse). But when I run my project I got error: unknown argument `-conf' usage: HttpServer [-conf resin.conf] All ideas are welcome!
  2. FoxyBOA

    Crystal Reports causes VB progam to crash under Windows 2000

    Hi ! I highly recommended upgrade your VB projects to CR8.5. It's more stable and more predictable than CR8. From the very begining CR8 has not been tested for Win2k. After some service packs and monthly hot fixes it works fine (but sometimes has unpredictable crash). I upgrade my project to...
  3. FoxyBOA

    How can I check if my application is already running?

    Hi ! if (System.Diagnostics.Process.GetProcessesByName(System.Diagnostics.Process.GetCurrentProcess().ProcessName).Length > 0) { this.Close(); }
  4. FoxyBOA

    Native .NET Report Generator

    Hi stravis! I got use Crystal Report for 3 year (for both COM and .NET). But now I highly disappointed CR's prospective, support and policy. We write ordinary client/server applications and I need simple report generator (sometime not so simple) with possibility dynamically manipulate report's...
  5. FoxyBOA

    C# versus VB question

    Hi! I think you should learn both of them. Why? Because some peculiarities give you real power of .NET and some dummy limitation sometimes highly disappoint. For example C# don't have optional parameters (so you can't easily run MS Word as Com object but from VB.NET you could do it easy). I...
  6. FoxyBOA

    Why do the handles on some events disapear?

    Hi ! Such behaviour could be if use try handle event that has been hidden from event pages at VS (you could do it via Designer class). Solution is inherit your class from base and show event which you wanna handle.
  7. FoxyBOA

    Deploying Crystal Report In C#

    Hi! Please Identify version of your VS and CR. The easiest way to deploy VS2002 + CR for VS2002 the hardest VS2003 + CR9. PS Several links, maybe useful: How to use Crystal Reports 9 with Visual Studio .NET 2003 http://support.crystaldecisions.com/library/kbase/articles/c2013041.asp Crystal...
  8. FoxyBOA

    Query To Retrieve All Sub Categories from a self referencing table

    Hi! IMHO the easiest way add column to your table (or if it's impossible create temp table), which would describe full path to your item at the hierarchy. All Table ... Add ItemPath varchar(...) 1, NULL, Books, '.1.' 2, 1, Computers, '.1.2.' 3, 2, Programming, '.1.2.3.' 4, 3, T_SQL...
  9. FoxyBOA

    Can I execute a stored procedure without getting a result?

    Hi! If you procedure searchEvent return single recordset you could declare temp table and store result into it. DECLARE #t (...) INSERT INTO #t(COLUMN NAMES) EXEC searchEvent '...' But signifficatly easy from my point of view declare out parameter and return in from SP (such sollution also...
  10. FoxyBOA

    Locking

    Hi ! Begin Tran SELECT @v_Count = COUNT(*) FROM Template tpt (ROWLOCK, HOLDLOCK) WHERE tpt.OID = @pi_TemplateOID ...other sql statements Commit tran
  11. FoxyBOA

    Native .NET Report Generator

    Hello ! I strongly need your advice. Which report generator is most valuable for .NET ? I develop client/server windows software. So I wanna have thick client with ability show report in preview mode and print some data direct to printer. Another requirement is possibility export to pdf, rtf...
  12. FoxyBOA

    Native .NET Report Generator

    Hello ! I strongly need your advice. Which report generator is most valuable for .NET ? I develop client/server windows software. So I wanna have thick client with ability show report in preview mode and print some data direct to printer. Another requirement is possibility export to pdf, rtf...
  13. FoxyBOA

    MSDE 2000 for Developers Using Visual Studio .NET

    Hi 581235242 and mmatsumura ! You could use osql.exe utility to connect to your MSDE database (i.e. osql -S SERVERNAME -Usa) After that you could use system stored procedure sp_password to change SA's password (i.e. exec sp_password @new ='new_password', @loginame = 'sa'). After you push enter...
  14. FoxyBOA

    How can i store files in an SQL 2000 SERVER table?

    Hello, BogdanMBM! You have several possibilities to exec SP via ADO. One of them via adoConnection (which you mention) another one via adoCommand. dim Conexiune as ADODB.Connection Conexiune.ConnectionString = "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=" & txtUser &...
  15. FoxyBOA

    How can i store files in an SQL 2000 SERVER table?

    You need ado version at least 2.5 I use it in such way: adoCommand.Parameters.Item().Value = adoStream.Read
  16. FoxyBOA

    How can i store files in an SQL 2000 SERVER table?

    Hi ! This extract code to load data from stream and save it to DB. If you wanna store non text file then change stream type to adTypeBinary. Dim adoStream As ADODB.Stream Set adoStream = New ADODB.Stream 'adoStream.Charset = "Windows-1251" ' I need it for correct load data from text...
  17. FoxyBOA

    Changes in datasource(DataSet) Urgent

    Hello! I use xsd schemas of DataSets and for such case solutions is: 1.Open designer 2. Select your Table from xsd file 3. Choose "Verify table" and point to new xsd schema file of your dataset
  18. FoxyBOA

    Failed to start print engine.

    Thanx pgtek. But problem is in some CR dll (I think at Cr.Engine). I could not install them correctly or some of them are missing.
  19. FoxyBOA

    specification for laptop to run SQL Server 2000

    Computer: Intel or compatiblePentium 166 MHz or higher. Memory (RAM)[1]: -Enterprise Edition: 64 MB minimum, 128 MB or more recommended -Standard Edition: 64 MB minimum -Personal Edition: 64 MB minimum on Windows 2000, 32 MB minimum on all other operating systems -Developer Edition: 64 MB...
  20. FoxyBOA

    Failed to start print engine.

    Hello! I use Crystal Report 9.0 and VS.NET 2003. I hardly need run such code at my client PC (it's just one report). CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocument m_oReport= new CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocument(); m_oReport.ReportAppServer =...

Part and Inventory Search

Back
Top