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 Mike Lewis 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. unuktine

    using Resources getting error : "Literal expressions like ..."

    hi, C# ...and that's the way u use the Resources components in your aspx files. http://beta.asp.net/QuickStartv20/aspnet/doc/localization/localization.aspx#expressions D.
  2. unuktine

    using Resources getting error : "Literal expressions like ..."

    Hi, I want to show a text depending on what language is selected ... and that by a client-side script. What's wrong in my next javascript example : ... <script language=javascript> function btclick() { document.getElementById("<%=mytxt.ClientID %>").value="<% $ Resources:myResource, myText...
  3. unuktine

    stored proc. .. on null .. return everything ?!?!

    hi !!! WOOW ... yes ...that's it !!!!!!!!! GREAT !! 10XXXX I thank you so very much for this reply !!!!!! I save a lot of work with this one !!! :))))) how can I give you a 'helpful post' on this ?!?!? :) D.
  4. unuktine

    stored proc. .. on null .. return everything ?!?!

    hi ! nope ... when @item1 = null ... item1 is not null ! :) when @item1 = 'something' ... item1 = @item1 D.
  5. unuktine

    stored proc. .. on null .. return everything ?!?!

    hi, i have this stored proc. , very simple in fact : ------- CREATE PROCEDURE procstor1 @item1 varchar(10), @item2 varchar(10), @item3 varchar(10) ... as select * from table1 where item1 = @item1 and item2 = @item2 and item3 =...
  6. unuktine

    Dropdownlist with 2 colums

    hi why don't you just create a function which fills up with spaces , let's say (max - ID.length)x(spaces) + Description , where max= 20 (or 30..) int max=30; string tmp = ID; for (int i = 0;i<(max-id.length);i++) tmp+=" "; tmp+=Description;
  7. unuktine

    i cannot change the headertext color :(

    hi, here is my problem : in a gridview (asp.net 2.0) when a use SortExpression='xxx' , the text color does't change from blue to white. when a remove the SortExpression flag, the color changed to white :) .... <asp:TemplateField SortExpression="xxx" HeaderText="xxx" > <ItemTemplate> yyy...
  8. unuktine

    datagrid - How to (just) color the row when click on (any) cell ?

    I FOUND IT !!!!!!! private void datagrid_CurrentCellChanged( object sender, System.EventArgs e ) { datagrid.Select(datagrid.CurrentRowIndex); } ..and... private void datagrid_MouseUp( object sender, System.Windows.Forms.MouseEventArgs e ) { datagrid.Select(datagrid.CurrentRowIndex); } C U
  9. unuktine

    datagrid - How to (just) color the row when click on (any) cell ?

    hi all ..as I said ... I don't wanna enter the cell but just color the row (when click any cell). How can I do that ? 10Q

Part and Inventory Search

Back
Top