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 Chriss Miller 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 cbokowski

  1. cbokowski

    Visual Studio 6 and Visual Studio 2003

    You can have both installed and running side by side. I have had 6 and .net since vs2002 was released.
  2. cbokowski

    dulicating script

    Adobe has the Adobe FDF Toolkit http://partners.adobe.com/asn/acrobat/forms.jsp I have only used vbscript to fill a form. hth
  3. cbokowski

    opening a CAD file via the internet

    You may want to check out http://discussion.autodesk.com there are several threads on the web viewer.
  4. cbokowski

    Update SQL table from excel file

    You could use a DTS package called from your page to insert it. Many examples exist either on msdn or google "dts package import excel"
  5. cbokowski

    3 DropDownLists and AutoPostback

    I would wire up the the onSelectedIndexChange event. Public Sub selStatus_OnSelectedIndexChanged(ByVal source As Object, ByVal e As EventArgs) 'code to populate next combo. End Sub
  6. cbokowski

    tab index

    You could spawn a new window with out the address bar and close the original. another option is a free control firstfocus at www.metabuilders.coms
  7. cbokowski

    How do I

    you can either have client side code to submit or a submit button. On the server something like this will work. strSql = "select * from [mytable] where field= '" & request("myDropdown") &"'"
  8. cbokowski

    Desparate 4 help with checkboxes in datagrid

    I would head over to www.4guysfromrolla.com where they have a 14+ part article on the datagrid. They cover most ever aspect of the datagrid
  9. cbokowski

    Focus of a Form

    There is a control available for free on www.metabuilders.com called Default Button. I would recommend looking at it as it includes source code. Also if you have focus issues look at FirstFocus control hth
  10. cbokowski

    <asp:textbox>

    You could output a little javascript to handle it. <script type=&quot;text/javascript&quot;><!-- function handleEnter() { return !(window.event && window.event.keyCode == 13); } //--></script> with an onKeypress on your textbox like so... onkeypress=&quot;return handleEnter();&quot;
  11. cbokowski

    creation of error page using ASP.NET

    You may want to look into the Exception Application Block on msdn. It is microsoft code you can use or customize. We are using it to handle our exceptions.
  12. cbokowski

    Question about the Visual Studio .Net

    When you created it on your development box it created a web in your local iis. Replicate that to they web site you want to show. You will need the .aspx .ascx and a bin folder with your dll along with .css, .config etc files. hth.
  13. cbokowski

    how to make a secure login validation...

    this should assist you... Building Secure ASP.NET Applications: Authentication, Authorization, and Secure Communication http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/secnetlpMSDN.asp?frame=true
  14. cbokowski

    textbox maxlenght

    If you have TextBoxMode set to MultiLine the maxlenght is ignored. Taken from .net Framework Class Library Documentation TextBox.MaxLength Property
  15. cbokowski

    text in datagrid cell

    in the onitemdatabound event you could handle it..... something along this way Private Sub myGrid_ItemDataBound(ByVal sender As System.Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles MyGrid.ItemDataBound If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType =...

Part and Inventory Search

Back
Top