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 strongm 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. adalli

    Status Strip and Progress Bar in MDI Form

    Hi, I changed the code to frmMainMDI.ShowDialog() but the progress bar is still not showing.
  2. adalli

    Status Strip and Progress Bar in MDI Form

    Hi, I have an MDI form with a Status Strip in which I have a progress bar as one of the panels. The purpose of this status bar is to show the progress when bringing up a child form. I am using the following code to bring up the MDI form:- Dim myForm As New frmMainMDI myForm.ShowDialog()...
  3. adalli

    Override the Button Enable and Visible

    Hi, I am trying to create a class which inherits a button. The purpose is to override the Enable and Visible properties. It seems that you can't override these two propeties. It this true? Many thanks in advance
  4. adalli

    Addhandler - Linkbutton problem

    Hi, I am having problems with AddHandlers. These are being fired on alternate clicks. First time they work, second time no, third time they work and fourth no etc ... I have the following code in Page_Load part Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)...
  5. adalli

    Web User Control - Variable Values

    Yes you are right. I created DefaultValue as a property in order to be able to set the country value I want to display.
  6. adalli

    Web User Control - Variable Values

    Hi, I created a Web User Control with just a dropdown, listing a number of countries. One of the properties is DefaultValue to which I would like send a country to be displayed. If I remove the quotes from strCountry, I get the error "Attribute values must be enclosed in quotation marks"...
  7. adalli

    Not reading the return value from SQL Server

    HI, I am trying to read the return value from an SQL Server 2005 store procedure. Following is my code. The return value always return a value of 0. Store Procedure ================ set ANSI_NULLS ON set QUOTED_IDENTIFIER ON GO alter procedure [dbo].[InsertClass_SP] @ReturnValue int...
  8. adalli

    Ftp from ASP.NET

    Ouch - thanks
  9. adalli

    Ftp from ASP.NET

    Hi, I am creating an ASP.NET screen in which the user will be able to select a file from his local disk and uploads it on to an FTP site. When I am running the ASP.NET application through the localhost all runs fine since the file would exists on HDD, on the otherhand, running the application...
  10. adalli

    Fileupload losses filename

    Hi, I am using the Fileupload control inorder to capture a filename and eventually upload it. Before starting with the upload I am checking if the file exists (just in case the user enters the name manually). If the file doesn't I send an error message. At this point the value in the...
  11. adalli

    Call aspx FROM VB.NET class

    Got it - just for who needs it Dim myForm As New System.Web.UI.Page myForm.Server.Transfer("Login.aspx")
  12. adalli

    Call aspx FROM VB.NET class

    Hi, Does anyone know if it's possible to call an ASPX form from a VB.NET class Thanks,
  13. adalli

    Imagebutton not showing in Panel

    Hi, I am trying to add a panel control onto which I want to insert an image button. For some reason the image button is not becoming visible. <% Dim pnlMyAccount As New Panel pnlMyAccount.ID = "pnlMyAccount" pnlMyAccount.Height = 100 pnlMyAccount.Width = 143...
  14. adalli

    SQL Express Connection Problem

    After 'wasting' a long time on trail and error I decided to recreated the database on the PC and worked liked a gem. Many thanks for your help.
  15. adalli

    SQL Express Connection Problem

    Hi, I have created a SQL Server database on a PC having SQL SERVER 2005. I revoked all access except to just two users which I created. I took a copy of the mdf file and ldf file onto another PC and included them in the App_Data. This PC has VS 2005 and SQL Express installed. The connection...
  16. adalli

    Cannot Ping to Active Controller

    Hi, I can only ping the server from the server itself. Thanks
  17. adalli

    Cannot Ping to Active Controller

    Yes, I was pinging to and from the server with no problems, it was only after I installed the Active Controller that I'm totally stuck.
  18. adalli

    Cannot Ping to Active Controller

    Hi, - I'm pinging via IP - IP's are statically assigned - PC's cannot be joined to the domain since on doing so I get the message that "A domain controller for the domain myServer could not be contacted" Many thanks
  19. adalli

    Cannot Ping to Active Controller

    Hi, I installed a Windows 2003 server having as roles File Server and Application Server. Up to this stage I could ping to other PCs on the network from the server and vice versa. I then added the Active Controller role to the server and from then on I couldn't ping anymore. Could anyone...

Part and Inventory Search

Back
Top