Search

You searched for the word(s): userid:408301

Matching Posts

  • custom dropdown issue

    I have a custom dropdown with a listbox and some buttons that appear when you open the dropdown. I am also receiving a flash from the original drop down listbox. Is there a way to stop the original box from opening and creating the flicker? I have been stumped on this for about a week and spent over 100 dollars on books trying to solve this problem. Thanks for all the help
    Posted to Custom Server Controls (Forum) by msamford on 4/19/2007
  • web service to install files on remote machine

    My company has decided to investigate using a web service to install files thier clients select on their remote machines. Does anyone have any feedback on this or can they point me to where there is some good documentation on using web services for this purpose. Thanks in advance, Mark Samford
    Posted to XML Web Services (Forum) by msamford on 9/5/2006
  • Re: Is there a difference - which is better

    the first method will allow the dataset to to be declared one time(if declared in the page and not a specific function) the second method has to be declared in a routine, and can only be used there. There are more differences, but I do not want to say anything wrong
    Posted to Getting Started (Forum) by msamford on 3/20/2006
  • Re: Creating an image button

    I have found out what my problem was. I had added a reference to the project for the image button. I then imported the image dll into the page I was working on. This was the cause of my problem. Once I removed the imports tag for the image all the errors went away and the button works as it should. Thanks for all the help.
    Posted to Custom Server Controls (Forum) by msamford on 2/17/2006
  • Re: Creating an image button

    The problem comes when you programatically add the image button. If I add the button from the toolbox, I do not have a problem. when I programatically add the button, This is where my problem comes in. Here is an example: Dim imgX As New PassIDImageButton imgX.ID = "img3" imgX.ImageUrl = "http://www.test.com" imgX.ParameterID = 780 imgX.ParameterString = "test" imgX.ImageAlign = System.Web.UI.WebControls.ImageAlign.Right <---This works fine 'imgX.ImageAlign = ImageAlign.Right <--This will throw
    Posted to Custom Server Controls (Forum) by msamford on 2/16/2006
  • Creating an image button

    I have a class for creating an image button. It seems to be throwing a few errors at me though. here is the code: Public Class PassIDImageButton Inherits System.Web.UI.WebControls.ImageButton Dim _ParameterID As Integer Dim _ParameterString As String Public Property ParameterID() As Integer Get Return _ParameterID End Get Set(ByVal Value As Integer) _ParameterID = Value End Set End Property Public Property ParameterString() As String Get Return _ParameterString End Get Set(ByVal Value As String)
    Posted to Custom Server Controls (Forum) by msamford on 2/15/2006
  • Re: ASP.NET in DreamWeaver

    <asp:RequiredFieldValidator id="RequiredFieldValidator1" runat="server" ErrorMessage="RequiredFieldValidator">*</asp:RequiredFieldValidator>
    Posted to Getting Started (Forum) by msamford on 2/10/2006
  • Re: Multiline TextBox

    you can assign a javascript function to the keypress of the textbox. This will not cause a postback, all it will do is everytime you press a key in the textbox, it check to see how many times you have entered characters into the textbox. When you reach the max number in the javascript variable, the box will no longer allow keypresses. To use this you will need to do the following: 1) keep a tally of how many characters are in the textbox. 2) Check to see if the tally is equal to or greater than your
    Posted to Getting Started (Forum) by msamford on 2/9/2006
  • Re: what does this mean?

    I am not the most qualified to answer this, but noone else has. The sender is the actual object that is accessing the code. The event args is the argument it is sending. Example. A dropdownlist would be as follows sender would be dropdownlist and eventargs would be the selected index This is a weak and possibly slightly incorrect explanation, but it should give you the general idea
    Posted to Getting Started (Forum) by msamford on 2/3/2006
  • Re: ASP.NET Error

    It means that for some reason your page has an error in it that is preventing it from being displayed. You are not getting the message as to what the specific error is because you do not have your web.config file set up for it. And you do not want to set it that way for security reasons. My suggestion is this, if you can browse the site from the server the application is running on, then do that and it should give you more detailed information on the error. If you can not do that, then adjust your
    Posted to Getting Started (Forum) by msamford on 2/3/2006
Page 1 of 21 (210 items) 1 2 3 4 5 Next > ... Last »