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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by adalli

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

Part and Inventory Search

Back
Top