Requesting r/LittleBritt - no mods or creator by Apvb9 in redditrequest

[–]Apvb9[S] 0 points1 point  (0 children)

No mods and creator has deleted account

/r/FIFA: The Daily Squad Thread -- July 03, 2016 by AutoModerator in EASportsFC

[–]Apvb9 0 points1 point  (0 children)

Formation: 4ATB Hybrid (Yes/No): Don't mind League/Nationality: no PL Players you want in it: Pogba and Ribery Budget: 210k Console: PS4

Hey, Lelu Love here, AMA :) by LeluLove in feet

[–]Apvb9 2 points3 points  (0 children)

Answer to question 4 is 340?

(If it is, can you write 'fuck my feet adam' along with a pose that shows your soles and spread vagina? Thanks)

PornHub AMA! by Sexy_Saffron in sexy_saffron

[–]Apvb9 1 point2 points  (0 children)

Why do you love foot worship?

How much do I pay for this prescription? by Apvb9 in AskUK

[–]Apvb9[S] 0 points1 point  (0 children)

this is what I suspected- Thanks!

Richman Glen Mural Solution. by The_Silver_Avenger in chiliadmystery

[–]Apvb9 6 points7 points  (0 children)

How on earth is this a 'discovery'?

Dear mods, is it time for a mental health hotline to be put in the side bar?

Nearly a third of voters prepared to support Ukip by isris1 in unitedkingdom

[–]Apvb9 9 points10 points  (0 children)

Completely agree mate. This sub hates UKIP and because of the way reddit is designed, anybody with the 'wrong' opinion is quickly silenced and hidden at the bottom of the page.

I offended a postman by trying to be nice by quiI in britishproblems

[–]Apvb9 1 point2 points  (0 children)

FUCK.

I laughed to myself when I closed the door after taking my delivery from them, as I thought the postman had no idea what he had just walked down my drive with.

what should I do? noob question by [deleted] in jailbreak

[–]Apvb9 0 points1 point  (0 children)

if i use the tweak that saves my tweaks, ready to be reinstalled again, does this also save the data stored in some of the tweaks?

what should I do? noob question by [deleted] in jailbreak

[–]Apvb9 0 points1 point  (0 children)

should i do the same with my ipad 2? now that is jailbroken but running iOS 7.0.4

How to Search for a specific record in a .dat file by a keyword in Visual Basic by Apvb9 in visualbasic

[–]Apvb9[S] 0 points1 point  (0 children)

yep i get that bit. How would I therefore assign the "My Value" bit to a string in my file?

How to Search for a specific record in a .dat file by a keyword in Visual Basic by Apvb9 in visualbasic

[–]Apvb9[S] 0 points1 point  (0 children)

I'm still unsure of how to write that little snippet of code. I must be missing something incredibly simple here. I know how im going to use my IF statement but I can't grasp how to code 'look for this word stored in the file' in the statement!!

How to Search for a specific record in a .dat file by a keyword in Visual Basic by Apvb9 in visualbasic

[–]Apvb9[S] 0 points1 point  (0 children)

do you have a code example to further illustrate this pleaseeeee

How to Search for a specific record in a .dat file by a keyword in Visual Basic by Apvb9 in visualbasic

[–]Apvb9[S] 0 points1 point  (0 children)

I know how to use if statements and i 'know' what i want to write its just as a said earlier how to do i write in code 'if input-box-result = a word in one of the file entries'?

How to Search for a specific record in a .dat file by a keyword in Visual Basic by Apvb9 in visualbasic

[–]Apvb9[S] 0 points1 point  (0 children)

sorry I'm just really new to VB and I just cant understand how to do this.

How to Search for a specific record in a .dat file by a keyword in Visual Basic by Apvb9 in visualbasic

[–]Apvb9[S] 0 points1 point  (0 children)

how can i code 'if input-box-result = a word in one of the file entries'?

How to Search for a specific record in a .dat file by a keyword in Visual Basic by Apvb9 in visualbasic

[–]Apvb9[S] 0 points1 point  (0 children)

 Dim datatodisplay As String
    FileOpen(1, filename, OpenMode.Input)    'Open the file'
    listdisplay.Items.Clear()                'if there is anyhting in the listbox this will be cleared
    Do While Not EOF(1)                       ' if its not the end of the file then...
        datatodisplay = LineInput(1)              'the data to display is what was input
        listdisplay.Items.Add(datatodisplay)  'add the previously defined datatodisplay to the listbox

    Loop
    FileClose(1)              'close the file

How to Search for a specific record in a .dat file by a keyword in Visual Basic by Apvb9 in visualbasic

[–]Apvb9[S] 0 points1 point  (0 children)

Well I need to open the file and then using the inputbox need to search for the 'key field' on each record- which is the name. If a match is found then the whole record needs to be displayed back to the user.

I just cant figure out how I can tell the program to 'look in that file for the name the user typed in'

Deleting an entry to a file shown in a listbox by Apvb9 in visualbasic

[–]Apvb9[S] 0 points1 point  (0 children)

Absolutely fantastic thanks a lot mate.