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 strongm 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. KidHoss

    How to set the value of a checkbox in a datagrid?

    Thank you very much. Obviously I did not understand what you were trying to tell me. I thought I was creating a new control and did not connect that I was creating a way to reference the existing control. Again, Thank you very much.
  2. KidHoss

    How to set the value of a checkbox in a datagrid?

    That is how I loop through the datagrid items.... but how do I set the checkedd state of the embedded checkbox? I know how to check to see if teh checjk box is check or not. I know it will not be checked. I want to check it based on data read from rthe database. Pwerhaps I am not...
  3. KidHoss

    How to set the value of a checkbox in a datagrid?

    I am not reacting to the databinding of data to this datagrid. I am reacting to a button being pressed that causes a set of data to be retrieved from a database. I loop through the dataset from the database read and as I find a match in the datagrid, I want to set the checked value of the...
  4. KidHoss

    How to set the value of a checkbox in a datagrid?

    I get the current state of a checkbox item in a templatecolumn in a datagrid by creating a checkbox item and do findcontrol (dgItem.FindControl("chkExportItemSelected")) After reading stored data from a database I want to loop through the datagrid and set the checkboxes as related to the data...
  5. KidHoss

    Set a checkbox to checked when it is in a templatecolumn in a datagrid

    I get the current state of a checkbox item in a templatecolumn in a datagrid by creating a checkbox item and do findcontrol (dgItem.FindControl("chkExportItemSelected")) After reading stored data from a database I want to loop through the datagrid and set the checkboxes as related to the data...
  6. KidHoss

    Access a listitem created in another sub

    I have a listitem that was created in one sub that I wish to use in another sub. How do I get access to it?
  7. KidHoss

    Reference a textbox by it's ID but use a variable as the ID

    If I had a series of textboxes like below: <asp:textbox id=txtBox01 runat="server"> <asp:textbox id=txtBox02 runat="server"> <asp:textbox id=txtBox03 runat="server"> <asp:textbox id=txtBox04 runat="server"> <asp:textbox id=txtBox05 runat="server"> If I wanted to write a For/Next loop to get...
  8. KidHoss

    Adding rows to a &quot;asp:Table&quot; based on a button click - But rows gone!

    I am creating a data entry form to allow the user to create bullet items and sub bullet items for storage in a SQL Server table. These items are stored in the database with codes denoting whether the item is a bullet point or a sub-bullet point. This data is used to create a dynamic ASP.Net...
  9. KidHoss

    Dynamically Updating ASP:Table

    ca8msm, Perhaps some code might help me ... because I still do not understand .... but I think you have the right answer. I have a table on a panel: <asp:panel id="pnlPurposePanel" runat="server" height="127px" EnableViewState="true"> <asp:Table id="tblPurposeTable" Runat="server">...
  10. KidHoss

    Dynamically Updating ASP:Table

    Also ..... it is telling me that since it is a table I am working with ... it is not "Serializable" so I need to convert it. I guess nothing is easy .... eh?
  11. KidHoss

    Dynamically Updating ASP:Table

    Thanks for the post. I tried adding the save of the updated table to the viewstate after I updated it and then tried to retrieve it in teh Page_Load event..... but .... I get an error saying my file must be an "ascx" file to allow this. Can I not do this in my code behind file? (I am working...
  12. KidHoss

    Dynamically Updating ASP:Table

    I am using a button click event to add a row with two cells to a table contained on a panel on my page. Each cell contains a text box to allow the user to enter some data. The table starts out with two rows and if the user needs more, they are to click the button and add another row to the...
  13. KidHoss

    Dynamically Updating ASP:Table

    I am using a button click event to add a row with two cells to a table contained on a panel on my page. Each cell contains a text box to allow the user to enter some data. The table starts out with two rows and if the user needs more, they are to click the button and add another row to the...
  14. KidHoss

    DropDownList and SelectedIndexChanged

    Thanks for the idea.... but let me ask it this way. What if I want to select the first item in the dropdownlist? Since it is the same item the dropdownlist starts out showing ...... the selectedindexchange event does not fire because the selected index does not change. How do you deal with this?
  15. KidHoss

    DropDownList and SelectedIndexChanged

    I have a DropDownList bound to a dataset that provides the value and text fields. If the select statement only returns one entry, how can I trigger the SelectedIndexChanged event even if there is only one entry in the dataset? The selection of an entry in this DropDownList causes another...
  16. KidHoss

    Calling API's

    How are you doing your release build? Are you running the app on a machine with or without the MicroFocus run time environment? I would say it is without and you have not included all the &quot;.DLL&quot; files necessary to support the API calls at run time.
  17. KidHoss

    netexpress and old mf cobol

    The handling of windows and providing GUI interfaces in the product are now handled by the &quot;Dialog System&quot; in NetExpress 3.1. Window handling support as a process in the COBOL language has been replaced. You should have the &quot;Dialog System&quot; as part of a standard NetExpress...
  18. KidHoss

    Unisys to Cobol II conversion

    I've had about 15 years experience with Unisys COBOL in various formats. If you have some questions regarding how it works or problems you encounter, you could contact me.
  19. KidHoss

    Printing to variable length forms using Linage is clause

    For HP the USER MANUAL for the printer contains a section on writing the PJL and PCL and the coding (both in hex and decimal) for the &quot;init string&quot; you need to create. Since all of my experience is with the HP lines I have to assume the other printers include info in their user...
  20. KidHoss

    004 illegal file name

    What is &quot;S-OUTPUT&quot;? How is it defined? What OS is this running under? I believe this to be a run time error, not a compile error therefore &quot;S-OUTPUT&quot; must be assigned some kind of value that is valid in the operating system you are using. If that is DOS then the name must...

Part and Inventory Search

Back
Top