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 Andrzejek 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. neilkonitzer

    Send Ascii Control-A and Control-B

    In C#, how do I create an ASCII Control-A And Control-B variable? Neil Konitzer Freisoft Consulting Services, Inc. www.freisoft.com
  2. neilkonitzer

    .NET Compact Framework - Send Email

    Am I correct in assuming that the .NET Compact Framework does not include any native functionality for sending SMTP email? I have found code samples that shows how to do it using TCP sockets. Thanks in advance!
  3. neilkonitzer

    VB.NET 2005 WebBrowser Control Button Click

    You are correct if I were using the COM component; however, I am using the WebBrowser control that comes part of .NET 2.0. Neil Konitzer Freisoft Consulting Services, Inc. www.freisoft.com
  4. neilkonitzer

    VB.NET 2005 WebBrowser Control Button Click

    Greetings, I am now using VB.NET 2005 and have a Winforms application with a WebBrowser control. I am trying to programmatically simulate entering in values on the web form and then following it by clicking a button on the form. While I have no problem populating the text controls on the form...
  5. neilkonitzer

    HHCRTL.OCX Not Registering

    I have a VB6 application that uses the hhctrl.ocx component. During installation on a client machine, the Install window shows - Copying Files. Please standby. Processing hhctrl.ocx (3 of 3) Then this window Pop Up appears- "Setup cannot continue because some system files are out of date...
  6. neilkonitzer

    Install Error (HRESULT 2147024770)

    I am attempting to deploy a VB.NET application using the setup project within VS.NET. Our project uses third party COM components. The installs work fine on XP systems; however, our Windows 2000 users are receiving the following error during the install... Error 1904 Module C:\Program...
  7. neilkonitzer

    Server 2003 SP1 - Lost ICS

    In the past, we have been using Internet Connection Sharing (ICS) here in the office so that we can all have internet access while still having all the advantages of being attached to our local domain. Yesterday afternoon, I installed SP1 of Windows Server 2003. Upon doing so, we seemed to have...
  8. neilkonitzer

    Point SQL Command to Different Server

    Thanks, but as I stated in my post, it appears that it does not work for Command objects. Neil Konitzer Freisoft Consulting Services, Inc. www.freisoft.com
  9. neilkonitzer

    Point Command to Different Server

    I have about 60 reports that use SQL Commands that point to a test server. How can I modify the reports so that I can start pulling data from the production server? The set database location UPDATE feature does not appear to be applicable to commands. The only option I know of is to create a...
  10. neilkonitzer

    Point SQL Command to Different Server

    I have about 60 reports that use SQL Commands that point to a test server. How can I modify the reports so that I can start pulling data from the production server? The set database location UPDATE feature does not appear to be applicable to commands. The only option I know of is to create a...
  11. neilkonitzer

    MDI Form - AutoScroll Does Not Work

    I have a MDI form with the AutoScroll property to false. When I load MDI children to this form, I still receive the scrollbars. The AutoScroll properties on my child forms are also set to false. Does anyone know of a solution to stop these scrollbars from appearing? Thanks in advance! Neil...
  12. neilkonitzer

    MDI Child - Stop Cascading

    I have an application that will load and then close MDI child forms based on a menu selection. Even when I anything other than: Me.LayoutMdi(MdiLayout.Cascade), subsequent MDIChild forms appear in a cascaded format. I want each form to always load at the same spot (top left). Manually...
  13. neilkonitzer

    OWC Chart - Second Axis Scaling

    I am using the OWC Charting component in an ASP.NET application. I am adding a secondary Y axis on my charts. Unfortunately, I cannot seem to find any documentation for assigning multiple series scalings to the secondary axis. I can only assign one series scaling to the axis. For example...
  14. neilkonitzer

    Shrink Database Backup

    I am attempting to recover a datbase backup file from a client. Unfortunately, the size of the transaction log file is more than the space that I have available on my hard-drive. I keep receiving the following error: MODIFY FILE encountered operating system error 112 (There is not enough space...
  15. neilkonitzer

    ASP.NEt and Crystal Report.

    You need to incorporate the Crystal Report merge modules in your windows installer when you deploy the application. Here is a link for more information. http://support.crystaldecisions.com/communityCS/TechnicalPapers/crnet_deployment.pdf Neil Konitzer Freisoft www.freisoft.com
  16. neilkonitzer

    color question

    You can indeed use hex values when assigning colors. Instead of using tblrw1.BackColor = Color.? Use tblrw1.BackColor = <hex value> Neil Konitzer Freisoft www.freisoft.com
  17. neilkonitzer

    framework 1.1 upgrade problems

    Yes, VS.NET 2002 will never compile to Framework version 1.1. Also, VS.NET 2003 will never compile to Framework version 1.0 (although there is a work around in creating assemblies that will work with 1.0) VERY IMPORTANT!!! If you already installed Framework 1.1 on your system and plan to now...
  18. neilkonitzer

    Request Timed Out - sending 50 emails

    For starters, try cleansing out the &quot;On Error Goto...&quot; statement and use Try/Catch blocks. That may catch your error if it is in your Sendmail function. Neil Konitzer Freisoft www.freisoft.com
  19. neilkonitzer

    Textfile as Database?

    Are your users going to be able to change their password or will this be controlled strictly by you? If the credentials would only change by you, then I would add them to the web.config file. If the users will have the capability to change their password, then you could indeed save the...
  20. neilkonitzer

    how to share Code-behind DLL?

    For starters, take a look at MSDN for the purpose and use of the Global Assembly Cache (GAC). Neil Konitzer Freisoft www.freisoft.com

Part and Inventory Search

Back
Top