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. theogary

    Update Check Befor user go to another page..

    C# and VS 2005 Is there a way to check if a user has unsaved changes before going to another web page or closing the browser...
  2. theogary

    Menu title clickable no Entire Menu Item

    I have a menu using site map in .net 2003. I have a menu named "Reports". This menu only works if the word Reports is clicked on. There is a lot of blank space next to this menu item which the user is clicking on. The user says the menu item does not work if you do not click on the word...
  3. theogary

    hide and show image background for a row menu

    if you donot address the <TR> background-image: url(images/a.gif); You will not see the image fill the entire row. the image will fill only the words of the td. You must say .menuPopupItem tr { background-image: url(images/a.gif); } I want to change image of the row on hover and when not...
  4. theogary

    hide and show image background for a row menu

    I have a css menu in asp.net. I want define a css for the menu containing a:link's. On hover I want the row backgound image to be visible. When not hover I want the row background to not be visible. .menuPopupItem a:link ,.menuPopupItem a:visited {color: Gray; font-family...
  5. theogary

    how to assign array values C#

    I solved it I must define number of elements in array switch (TableToUSe) { case "PROGRAM": ls_value1 = NewVal["program_number"].ToString(); ls_value2 = "NULL"; ls_value3 = "NULL"; ls_value4 = "NULL"...
  6. theogary

    how to assign array values C#

    The is no SQL involved. I just wan to assign fieldstocheck conditionally
  7. theogary

    how to assign array values C#

    I am defining my array incorrectly what is wrong with this code.I want to assign the array conditionally? string[] FieldsToCheck; switch (TableToUSe) { case "PROGRAM": FieldsToCheck = {"street_address" , "street_number"}...
  8. theogary

    How events fire in .net

    I got it. Thank you to all........
  9. theogary

    How events fire in .net

    This example is good but it is not what I am Doing. I am adding a user control with a button on it not just a button. I have several user controls. Each represents report parameters for different reports. When the user select a report from a grid control the report arguments appears as a user...
  10. theogary

    How events fire in .net

    I have added a ID but the behavior is still the same. The button even fires after 2 clicks. I have tried recreating the object is the init & the pagelaod with same results. I have been pulling out the remaining hair I have left. I have been trying this for a week. Does any have any code or...
  11. theogary

    How events fire in .net

    What is the difference between Remove & Clear Control Here is my code........ this is the user control button c# protected void Button1_Click(object sender, EventArgs e) { ParameterCollection PC = new ParameterCollection(); Parameter par = new Parameter()...
  12. theogary

    How events fire in .net

    I have a aspx page with a grideview. Whe a user click the gridview a usercontrol is loaded. When a user clicks on the run button nothing happens. When the user click on the button again the the button responds and runs the job. Why won't the button respond the first time it is clicked? What...
  13. theogary

    Only showing last row in report services

    I have a report in 2005.net using report services. It is only showing the last row in dataset. The method retrieves 1000 rows but only one row is visible. I know this is a simple newbie mistake but I need help.
  14. theogary

    Pass set af params using paramenter obj C#

    protected void Button1_Click(object sender, EventArgs e) { ParameterCollection PC = new ParameterCollection(); Parameter par = new Parameter(); par.Name = "zip_code"; par.DefaultValue = "11372"; PC.Add(par); string returnUrl =...
  15. theogary

    Pass set af params using paramenter obj C#

    I am creating a reusable object. I would like to pass the parameterObject as a variable. is this possible.....
  16. theogary

    Pass set af params using paramenter obj C#

    I do not want to use query string. I want use Server.Transfer("~/Reports/Rpt.aspx") and the access the parameter variable on the prior page and assign it to the report in the rpt.aspx page...
  17. theogary

    Pass set af params using paramenter obj C#

    I am a newbie , so I wanted a some sample code on how to do this.
  18. theogary

    Pass set af params using paramenter obj C#

    I want to pass three parameters to a report services report in .net. I want to put the parameters in parameter object. Then set the parameter object to the report dynamically.
  19. theogary

    Dydnamically change panel

    I a have page with a grid that has a list of reports and a panel which has a user control to input report arguments. When the user clicks on the list or reports, the panel below should change and show the appropriate arguments in the panel. each argument group is a user control. example: when...
  20. theogary

    Print Job Not Doing The Job

    Thank you very much for time and your code. People like you keep the tek-tip forums a valuable resource. There is no waaaay a newbie could come up with this logic. Macromewdia should create a print component similar to this code. This is way too complicated for a print operation.

Part and Inventory Search

Back
Top