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: *

  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 =...
  16. cbokowski

    Question about web datagrid

    Head over to http://aspnet.4guysfromrolla.com for a 14(plus) part article on the datagrid. I dont recall which parts cover the editable datagrid but they sure helped me. Another datagrid site www.datagridgirl.com
  17. cbokowski

    Textbox in ListBox/DropDownList possible?

    It could be possible with some client side code. I would suggest looking at the combobox control on www.metabuilders.com for starters. Its a free control with source that should help get you to where you need to be. hth
  18. cbokowski

    multiple selection in a grid

    check out www.metabuilders.com has a free control for putting a check boxes in datagrids. or aspnet.4guysfromrolla.com has 14 part article on the datagrid with sample code. hth
  19. cbokowski

    multiple selection in a grid

    do you mean one that has check boxes on each row that a user can check? Could you elaborate a bit more on what you are wanting?
  20. cbokowski

    Drop down box &amp; Search

    it does handle postbacks so you *could* add the code to do just what you are looking for. We have tweaked it a great deal to meet our needs.

Part and Inventory Search

Back
Top