User Profile

Collapse

Profile Sidebar

Collapse
CodeButcher
CodeButcher
Last Activity: Mar 28 '08, 02:30 PM
Joined: May 2 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • You have this line in your file:
    " Players Online: </div> 524 </div>"
    So you therefore read in the textfile and search for the string "Players Online:"

    that gives you the location of this:
    " </div> 524 </div>..."
    So replace spaces with nothing and you get:
    "</div>524</div>..."...
    See more | Go to post

    Leave a comment:


  • CodeButcher
    started a topic Permissions issue on windows XP

    Permissions issue on windows XP

    I have a user who is running window XP sp2 and has IE7 installed.

    They download and install my vb 6 program. When they run the program for the first time, the software saves a bunch of configuration files to unique locations due to the nature of the software.

    One of the locations is the User's Folders area that has the folder "All Users/Application Data." On all other machines, xp and vista machines, this...
    See more | Go to post

  • CodeButcher
    replied to Subselect top1 - need two columns.
    Yes, I see it works for multiple columns but not in a sub-select.

    SQL Server 2000.

    Server: Msg 116, Level 16, State 1, Line 1
    Only one expression can be specified in the select list when the subquery is not introduced with EXISTS.
    See more | Go to post

    Leave a comment:


  • CodeButcher
    started a topic Subselect top1 - need two columns.

    Subselect top1 - need two columns.

    I have a subselect in my select statement:
    select t1.a, t1.b, (select top 1 t2.a from where)

    what I need is:
    select t1.a, t1.b, (select top 1 t2.a, t2.b from where)

    However, I get the error that I can only have one field.

    Here is the sql. I'm stumped. Thanks for your help...

    Select
    cm.ChildStateID ,
    pc.DateOfServic e,

    (SELECT
    ...
    See more | Go to post

  • CodeButcher
    started a topic Listbox and ContextMenuStrip in Vb.Net 2005
    in .NET

    Listbox and ContextMenuStrip in Vb.Net 2005

    For whatever reason, I can't get a ContextMenuStri p to appear when I right-click a listbox. I've assigned the ContextMenuStri p1 to ContentMenuStri p in my listbox but the menu never shows. ideas?
    See more | Go to post
No activity results to display
Show More
Working...