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. Turchan

    Looking for good ASP.NET spell check control...

    Thank you for advices. User does not mind to pay for .NET control and we are looking for an "easy implement" spell checker as it will be integrated to several projects. I have checked several controls like: Wintertree spelling server (www.wintertree.com), Chado-Software spellserver.NET...
  2. Turchan

    Looking for good ASP.NET spell check control...

    Has anyone used spell-check controls in their ASP.NET application? I need to implement spell-check functionality in my ASP.NET application so I would appreciate your opinion on different controls you may worked with. Any input will be appreciated. -Thank you.
  3. Turchan

    ADO.Net Direct Connect or In Memory Tables?

    Jason, You may want to look at Microsoft Application Blocks (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/daab-rm.asp)that is distributed royalty free by Microsoft. If you use that you can benefit from using Dataset. It acts as a virtual databse that can hold...
  4. Turchan

    Moving .aspx From Dev to Production Web Site

    You right. I should have made myself clearer I meant code-behind files. Front-end includes, xml, ascx files should stay. Thanks for bringing more light on it.
  5. Turchan

    Moving a Web Project to a different directory

    Are you releasing the project to a web server or just changing you working directory?
  6. Turchan

    Moving .aspx From Dev to Production Web Site

    ...you do noy need PBS files in bin directory - delete them. These are debugging files. You can also delete all but .aspx and web.config files in web files folder. Kevin.
  7. Turchan

    tabStrip question?

    If you Ok with bulding apps for IE only I would recommend you to go with Microsoft IE Web Controls. They do work, very easy to work with, work on both .NET Framework 1.0 and 1.1 (haven't had problems so far - even thoug MS says that they do not support it anymore), and royalty free. You can...
  8. Turchan

    ASP variables

    ...well then you can add a VB Module into your project: something like 'common.vb' and declare your variable as "Friend" inside of it. It'll be seen everywhere within the project: Module common friend ClientID as String End Module In this case you need to remember that other users...
  9. Turchan

    ASP variables

    Is it ASP or ASP.NET that you use? You may want to consider using Session variable as you can access it everywhere you want within the application and it lives as long as Browser is open and can only be accessed by user who has a current session. session("ClientID") =...
  10. Turchan

    Internet Explorer Web Controls and the Framework 1.1

    I am successfuly running an application on .NET Framework 1.1 that utilizes IE Web Controls (TabStrip, MultiPage, and TreeView) however I haven't tried to develop anything in this environment. Kevin.
  11. Turchan

    Server Application Unavailable...

    Ladies and Gents! I am using CRViewer on my ASP.NET page, assigning a report object to it's ReportSource property that has a lot of records. CRViewer shows first number of pages and dies when I try to print report or navigate to the last page. It gives me Server Application Unavailable and app...
  12. Turchan

    Server Application Unavailable...

    Please help! Getting Server Application Unavailable while processing records in CRViewer. Event Log says: aspnet_wp.exe (PID: 1660) was recycled because memory consumption exceeded the 306 MB (60 percent of available RAM). It only happens when 'large' amount of records is being processed...
  13. Turchan

    IE Web Controls on different .NET Framework builds

    Ladies & Gentlemen: I am using IE Web Controls (TreeView, TabStrip, MultiPage, and ToolBar) in my APS .NET applications. The Microsoft site says that: <b>This product is only compatible with machines running builds of the .NET Framework (1.0.3705.0) and Visual Studio® .NET (7.0.9466).<b> and...
  14. Turchan

    Disable Database Repair and Compact

    I'd like to restrict users from repairing and compacting Access97 database. Is there anything I could do to MDB file in order to prevent users from repairing and compact the DB besides disabling toolbar in MS Access Application? Any help will be appreciated.
  15. Turchan

    Will CR8.5 work with just OUT parameter and not IN OUT parameter?

    I use CR8.5 and Oracle8 Stored Procedure (SP) that feeds it. Right now I have IN-OUT parameter in SP that confuses Crystal Enterprise - the report constantly fails with an error: &quot;Information is needed before this report can be processed&quot; (without Enterprise just in CR8.5 the report...
  16. Turchan

    Stored proc returns too long field name - report truncates it....

    I use CR8.5 with Oracle8 stored procedure. I call function in stored procedure twice with different parameters. The function has a very long name and when I bind report to stored procedure the &quot;field name&quot; (the whole blown function call) gets truncated after 35th character. So I...
  17. Turchan

    Convert to use Stored Procedures?

    I use CR8.5 and have the same problem as mmarsten. Tried to follow balves's advise but looks like report didn't pick up the stored proc - still runs off the query... Is there any tricks that I can exercise to get rid of embeded SQL?
  18. Turchan

    Refresh default values dynamically. Cant that be done?

    The report that I am working on is using different DB schemas depending on logon. I need to refresh default values for parameter every time user loges on to a different schema. Is there any way to do it? I appreciate any help on that.

Part and Inventory Search

Back
Top