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>..."...
User Profile
Collapse
-
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... -
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.Leave a comment:
-
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
... -
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?
No activity results to display
Show More
Leave a comment: