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 Chriss Miller 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 stormbind

  1. stormbind

    ZIP Metadata Deployment

    I could be wrong, but I don't think my question has anything to do with Java's META-INF/* directory. Based on the ./jar tutorials I have seen, files in the META-INF directory are typically compressed/decompressed and have nothing to do with exposing information from the archive's...
  2. stormbind

    ZIP Metadata Deployment

    Hi all, I am posting here because I cannot find the answers through Google, and JAR files frequently do what I need. How do you add metadata to JAR files? The Real Issue: I have a Chrome/Opera extension which is packaged up as a renamed ZIP file (i.e. JAR/OEX/CRX). I want these archived files...
  3. stormbind

    XML Object typedef error

    Ah!! It was caused by multiple documents being parsed at the same time, so was actually different XML. No matter :) --Glen :)
  4. stormbind

    XML Object typedef error

    Hi all, Please see the snippet below. The exception is being thrown. The XML string is dead simple like <xml><tagName value="://?&"></xml>. I use VIM and I can clearly see there is not a typo in variable names. Can you please explain why I am getting the Typedef error? It is for an Opera...
  5. stormbind

    FireFox assigning DOM nodes to var

    This is working in Chrome, Opera and IE. Can you please help to fix it in FF? var els = document.getElementsByClassName('myClass'); for (var i=0; i<els.length; ++i){ var node = els[i]; // FF falls here with TypeDefError:node is undefined while...
  6. stormbind

    FireFox events

    window.onload = function() { window.addEventListener('click', function() { testClick(event) }, false); window.addEventListener('mouseover', function() { testMove(event) }, false); } The above works in Chrome, Opera and IE. It does not work in FF. I think FF supports the...
  7. stormbind

    Command-Line Process in WebMethod returns null?

    Resolved it like this, where grep is the exe+args. p.StartInfo.FileName = "cmd"; p.StartInfo.Arguments = "/C \"" + grep + "\""; --Glen :)
  8. stormbind

    Command-Line Process in WebMethod returns null?

    Hi all, Could you please identify below why the output from grep is not being returned in the SOAP response? Many thanks, [WebMethod] public string Grep() { Process p = new Process(); p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardOutput = true; p.StartInfo.FileName =...
  9. stormbind

    XmlDocument.appendChild (et al.) is not closing tags immediately

    Where each small XmlDocument is.. <root> <memberA></memberA> <memberB></memberB> </root> Using the following .NET approach to copy and merge many small XmlDocuments into one new big XmlDocument.. XmlDocument big = new XmlDocument(); big.LoadXml("<example></example>"); List<XmlDocument>...
  10. stormbind

    retrieve array from rectangular array

    Well, I want to retrieve a row/array from a matrix :) I went with jagged array [i][j] to get the task done but would have felt better to use the rectangular [i,j] notation. The example you gave would retrieve cells/values rather than rows. Thanks, --Glen :) Memoria mihi benigna erit qui eam...
  11. stormbind

    retrieve array from rectangular array

    Hi, string[,] a = new string[3,2]; string[] b = a[0]; // error, wrong number of indices (expects 2) I don't want to retrieve the separate values. I want to retrieve the arrays. How do you retrieve the first array (b) from the rectangular array (a)? --Glen :) Memoria mihi benigna erit qui...
  12. stormbind

    retrieve array of checkboxes

    I am using the GridView to display many nested tables, exporting them to HTML, XML, Excel, etc. I was saving you from looking at them by simplifying the example! Anyway, solution was: for( i= ... ++i){ GridViewRow nRow = myGridView.Rows[i]; if((CheckBox)nRow.Cells[1].Controls[1]).Checked){ ...
  13. stormbind

    retrieve array of checkboxes

    My IIS7 complains that CheckBoxList is not a known element. Anyway, I don't see how it helps because the scenario I presented is also a constraint. This is because the structure GridView has many nested tables. --Glen :) Memoria mihi benigna erit qui eam perscribam
  14. stormbind

    User permissions / shared disk access with IIS

    Hi, Another system is continuously writing new files to a shared folder on my computer. IIS is serving web applications that reads various files from that folder. My public IIS web applications currently read data using my username/password but that won't work for viewing the files directly. I...
  15. stormbind

    retrieve array of checkboxes

    <asp:GridView ID="GeneratedResults" runat="server"> <Columns> <asp:TemplateField> <ItemTemplate> <asp:CheckBox ID="ResultSelector" runat="server" /> </ItemTemplate> </asp:TemplateField> </Columns> </asp:GridView> <asp:Button ID="Button" Text="Save" runat="server"...

Part and Inventory Search

Back
Top