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 SkipVought 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: rangaks75
  • Order by date
  1. rangaks75

    Unable to load DLL (doAdd.dll).

    If you want to use the Com object in ASP either you have to say <object runat=server id=&quot;myObj&quot; class=&quot;project.classname&quot; scope=&quot;Page&quot; > </object> change project.classname according to your project name and class name. use the doAdd function as myObj.doAdd()...
  2. rangaks75

    Programmatically selecting a given value for the list

    set the property selected index Me.cboCustomer.SelectedIndex = .... You have to loop through the items of the dropdown and compare the values with the value you got from the database; and then set the above property for the value that matches
  3. rangaks75

    Composite Web Control - Property window

    Add the properties to the custom control that you want the user to control. And set the property of the calender control or any other controls within the custom control. Just have a look at the code below: Imports System.Web.UI.WebControls Imports System.Web.UI Imports System.Web Public Class...
  4. rangaks75

    Custom Web Control ?

    <%@ register TagPrefix=&quot;SARSTag&quot; NameSpace=&quot;SARSControls&quot; Assembly=&quot;SARSControls&quot; %> try this
  5. rangaks75

    Post form to another page?

    You can create a webcustom control. See this link for more info http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbwlkwalkthroughcreatingcustomwebcontrols.asp

Part and Inventory Search

Back
Top