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!

Search results for query: *

  • Users: adalli
  • Content: Threads
  • Order by date
  1. 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()...
  2. 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
  3. 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)...
  4. 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"...
  5. 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...
  6. 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...
  7. 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...
  8. 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,
  9. 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...
  10. 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...
  11. 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...
  12. adalli

    Running scripts with different credentials

    Hi, I need to create a script which is executed through a batch file. This script needs to perform certain tasks such as creating folders on the server. The problem is that the user running this would not have the necassary rights. So the aim is to be able to run the script with the...
  13. adalli

    Crystal Reports and RTF Text

    I am using CR version 10 with VB6. I have a report which displays RTF text. The problem is that the report is omitting any commas found in the RTF text. Is there anything that I am missing out. Many thanks in advance
  14. adalli

    Not all PCs can be pinged

    Hi, I have a setup through an Access Point with three computers all connected wirelessly. I am using Windows to configure my wireless network settings. When I set the security I cannot ping one of the PCs, the other see each other fine. As a security I am using WPA-PSK and TKIP. The...
  15. adalli

    MDI Form and only one instance of Child forms

    Hi, I have a MDI form with a menu structure. Each menu item opens a form using the following code. Dim myForm As New frmClients myForm.ShowDialog() myForm = Nothing The above code does not allow the user to go back to the MDI Menu unless he closes the current form...
  16. adalli

    Crystal report is not defined

    Hi, I included a Crystal Report in my VB.Net solution called crCreateTest.rpt. When I try to amend the report file (the RPT) through the studio, I am getting the error that "crCreateTest" is not defined. It appears that everytime I make a change the file crCreateTest.vb gets corrupted. Can...
  17. adalli

    Image too big for PictureBox

    Hi, I have a form which I am opening as Maximum. In this form there is a Picturebox into which I load an image during the form_LOad event. The Picturebox is resized to cover all the form. The problem is that if the image is big, I will only see part of the image. Is there a way how I can...
  18. adalli

    Thread only runs right once

    Hi, I am trying to develop a thread where it continuously checks if there is a network connection. Following is the code I am using. It only works fine for the first time, after that it does not realise that either a connection is established or lost. Can any one please help? Dim...
  19. adalli

    Creating multilingual Registry entries

    Hi, I am creating a registration file (.reg), where the user will be able to doubleclick on the file and details will be inserted into the registry. The OS is WINXP. The information I want to insert is a particular path under C:\Program Files. The problem is that if the WINXP is not...
  20. adalli

    Fatal Error Writing to Excel

    Hi, The version of Foxpro is 6.0. The application I am buliding is to write data into Excel 2003. There are times when I am getting a Fatal Error at a stage when I am writing the data into the cells. Prior to this step I have other processes where I add more sheets and rename them, setup...

Part and Inventory Search

Back
Top