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

    bcp date - time question

    I'm having problems getting the BCP to export strings to a tsv file properley. I have a VARCHAR field in that holds strings like '2002-08-19 13:48:36' (converted from DATETIME to VARCHAR). It is my understanding that VARCHAR data is essentially a string, however when I use BCP to export, the...
  2. nikischwabe

    How do I delete multiple items in a listbox?

    Thanks for the response. Problem not solved though. I think when RemoveItem is first called it deselects the rest of the items in the list, so only one item gets deleted. I suppose I could load the selected values into an array then loop through the list again turfing out the items that...
  3. nikischwabe

    How do I delete multiple items in a listbox?

    I've got a feeling this one should be simple but it is causing me a hedache at the moment, and I can't find a relevant FAQ. I have listbox (multi select) with 'Value List' as a the RowSourceType. I thought something simple like this might work: For Each i in listbox.ItemsSelected...
  4. nikischwabe

    Exporting long string columns

    I am having this exact problem and I can't figure out what is causing it. When I run a query on a TEXT field that contans a large amount of text, it simply displays &quot;<long text>&quot; and when I use DTS to export it to a text file, only the first 1000 characters or so get exported?? Can...
  5. nikischwabe

    div tags does not hide select tags then over

    Hi I am certain it is a browser thing so I dont see any point in tearing your hair out over it. There is a solution however but it is a bit long winded. put your entire form on a div then hide the div when required and show the other. Anyway see if this is something like what you want...
  6. nikischwabe

    The entire flash movie moves in the browser window???

    Not sure what you mean really but it looks to me as if it is just a formatting problem (HTML). If you don't want the movie to 'float' Try something like: <td valign=&quot;top&quot;> mabey this is nothing to do with your problem? Nice one :)
  7. nikischwabe

    2 onClick actions?

    Call EditPassword()from formValidation() if the data is vilid. Hope this helps. Nice one :)
  8. nikischwabe

    resizing page content relative to window size

    You could embark on a serious CSS adventure. You would need to use javascript to check the size of the window and alter styles accordingly for font sizes image sizes etc. Not easy or predicatble me thinks. Nice one :)
  9. nikischwabe

    Submitting Multiple forms

    Wouldn't it be a simpler approach to combine all the data into one form and get your servlet to split the data into 'chunks' and process the 'chunks' seperatley? perhaps your circumstance makes this tricky? Nice one :)
  10. nikischwabe

    Should be simple solution to If statement

    I'm not sure exactly where to start here. I usually try to get the flow down on paper first if its going to be complex. Its also a good idea in my opinion to avoid using NOT '!' where ever possible because it tends to complicates things for me anyway. Sorry cant be much more help. Nice one :)
  11. nikischwabe

    changing the properties of a class

    Thanks tsdragon. Perhaps crazyboybert wanted to know how to change the class definition itself I think that can be done like: classes.myClass.all.color = &quot;blue&quot; classes.myClass.all.fontWeight = &quot;italic&quot; etc.. etc... Not 100% though. Nice one :)
  12. nikischwabe

    changing the properties of a class

    Isn't it : document.form.textBox.className =&quot;myclass&quot; :) Nice one :)
  13. nikischwabe

    Multiple tex boxes

    I may be misunderstanding the problem here goes. Format a textbox using the returned value from a function like: <input type=&quot;text&quot; name=&quot;partial2&quot; onChange=&quot;this.value = adjust(this.value)&quot;> This is the least problem prone way I've found. Hope it helps :)...
  14. nikischwabe

    Howto hide the URL on the bottom from a printed page?

    You can fiddle with your browsers print settings i.e. File/Page Setup then remove the header and footers. As far as I am aware this is the only way. You could inform your site guests of this... Nice one :)

Part and Inventory Search

Back
Top