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 bkrike 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 alexander1113

  1. alexander1113

    VB.NET read a large file in chunks

    Hi, I'm trying to create a function in VB.NEt. What it does is it reads a large XML file in chunks to parse out each xml statement one by one. So that it will read the first chunk and see if that chunk contains the whole xml statement. If it doesn't it reads the next chunk and look for the...
  2. alexander1113

    Assignment operator

    Hi, In VB, do you guys know the meaning of this line of code? variableX = ( "STRING" = "TEST") ?
  3. alexander1113

    Wireless Automation

    hmm.. You could set firewall rules on your LinkSys Router perhaps?
  4. alexander1113

    Installed Printers on Network Computer

    Also try this link: http://www.activexperts.com/activmonitor/windowsmanagement/adsi/samples/#file003.htm
  5. alexander1113

    Installed Printers on Network Computer

    This isn't the best solution but perhaps it can spark another idea, how about using the SHell object to execute a net view command which will list all computers, and you can query from there for all the computers listed?
  6. alexander1113

    multiple cases

    Ahh.. you learn something new every day.
  7. alexander1113

    Wireless Automation

    gbaughma, I'm thinking out loud here, but have you tried to write a vb script which will enable the card and another to disable the card. Then with the Windows Schedule Task Wizard you can set the time to run your "enablecard.vbs" and then set another task ( "disablecard.vbs" to run one hour...
  8. alexander1113

    multiple cases

    Is there a difference between Case and If Else? I personally prefer if else.
  9. alexander1113

    Inputbox max number of chars

    slint, just a shot in the dark, but have you tried using the InternetExplorer.Application Object? write out a small html window with a text box, which you will specify the size, and have it call a VBScript function on click to get the input.
  10. alexander1113

    A pesky syntax error when calling a 'null' function

    Make sure your DoNothing function is not contained within the while loop. Also rjoubert's solution is best.
  11. alexander1113

    Database Design

    Hi Ammodog, Can you give me an example? Alex
  12. alexander1113

    Database Design

    Dear DB Administrator Experts, I am trying to design a database for a sales company who represent multiple suppliers and I am in stuck in how to go about the following scenario. An order is placed, and there is an amount paid on that order. From that amount paid on the order, our sales...
  13. alexander1113

    Saving FormBean in Request Scope for multi-request workflow

    Try using the session scope. So that you store the bean in a session: session.setAttribute("formbean", formBean);
  14. alexander1113

    Array of Text Boxes to Java Bean Struts

    NM I finally Figured it out. It's a patch but it works. ANyone has another better solution, please by all means, post it. private String[] quantity; public String[] setQuantity(String[] quantity) { quantity = quantity } public String getQuantity() { return quantity; }...
  15. alexander1113

    Array of Text Boxes to Java Bean Struts

    Hello all, I am utilizing the MVC architecture via Struts. I have a page which prints out a dynamic list of text boxes and are printed as follows: <input type="text" name="MyForm.quantity[0]" value="2"/> <input type="text" name="MyForm.quantity[1]" value="2"/> <input type="text"...

Part and Inventory Search

Back
Top