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 TouchToneTommy 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 coospaa

  1. coospaa

    Is there a c# equivalent version of the java applet?

    Thanks! I just found out that I could use WPF in browser to build the similar stuff. I'll check Silverlight as well. Thanks again:)
  2. coospaa

    Is there a c# equivalent version of the java applet?

    Hi, I wanted to build a browser add-on (like Java Applet) in a web app that can read data from USB, is there such thing in .NET world where I can use c# as the programming language? Thanks in advance!
  3. coospaa

    create a view with a bit column

    Thanks PWise! It works perfectly. I did one small modifiction: isnull only takes 2 parameters in t-sql, therefore i've replaced it with a case exp as follows: (case when Score is null then 0 else 1 end) as bit
  4. coospaa

    create a view with a bit column

    Hi, I have a table A with one decimal-typed column Score. Now I want to create a view with A.Score and an additional bit-type column as follows: 1 - if the score is ranked as top 20% high score; 0 - otherwise. I tried to create a view as: select A.score, IsTop20Perc(A.score) from A; with...
  5. coospaa

    How to auto-expand the content when converting <table> to <div>

    Thanks traingamer! I managed to get it work =)
  6. coospaa

    How to auto-expand the content when converting <table> to <div>

    Thanks Vragabond! I guess I have to go for the table design cos my content column (middle part) needs to have dynamic width (the width could be 770px in one page and 400px in another). I cannot create a vertical tiled backgroung image for every such page that uses this layout. And I want the...
  7. coospaa

    How to auto-expand the content when converting <table> to <div>

    I was trying to convert a <table> to <div> but I met a problem that the 3rd column (<div>) didn't expand to full height. Could you please help? Here's the table: <table cellpadding=0 cellspacing=0 width="800px"> <tr> <td style="background:url(images/mid_left.png)...
  8. coospaa

    IE7.0.5730.13 vs IE7.0.5730.13IC

    These two IE7 versions seem to render button & select tags differently (just like different themes). I get the info from this link (http://support.microsoft.com/kb/969393/) that IC stands for Internet Content Provider. But im confused at what is the possible thing that leads to the IC version to...
  9. coospaa

    IE8 Height issue

    Sorry for the confusing. I should have posted the full code at the beginning. Your link on how to combat floating issues solves my problem. I tested on IE8 & IE7 and it works. Thanks a lot!! Here's the HTML code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  10. coospaa

    IE8 Height issue

    Thanks! I don't have a parent element with a defined height, funny thing is that #Content expand correctly with its inner content in IE7, but in IE8 it just shows half an inch... Here's the page structure: <div id="Content"> <div>some content with dynamic height</div> </div> All I want is...
  11. coospaa

    IE8 Height issue

    I have a page displaying fine in IE7 but not in IE8. It seems that "height:100%" isn't working. Does anyone know about this? #Content { clear:both; height:100%; background-color:#10509E; margin:0; padding:0; border:0px; } Thanks!!
  12. coospaa

    asp:Wizard hide step

    Hi, i found the solution. Just put the WizardSteps.Remove(WizardStepXXX) in Page_Init will do the job. Thanks all for reading.
  13. coospaa

    asp:Wizard hide step

    I have a asp:wizard control (3 steps) which will be used for 2 different web app. In App1, I want to show step 1 and step 3 (hide step 2); In App2, I want to show all the steps. Now I wrote the code in wizard_load event to control the show/hide of steps. But the problem is that when I hide...
  14. coospaa

    Pass in parameter to open a new window

    I'm build a .aspx page which has a textbox and a button on it. When I click the button, I want to open a new window with the text in the textbox as parameter(query string). What I did is RegisterJavaScipt() in the Page_Load, and add a OnTextChanged of the textbox as follows: protected void...
  15. coospaa

    RecordSet(&quot;ColumnName&quot;) is an int?

    Got it, thank you guys:)

Part and Inventory Search

Back
Top