Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #2K

17 Posted Topics

Member Avatar for TrueVb.NetNoob

could do an easy thing and just place the picture in a picture box and then when you want it to show just do picturebox1.visible = true and have this picture box over the text box?or under the text,, and or grab the position of the curser and place the …

Member Avatar for codeorder
0
685
Member Avatar for Thong_Ispector

Lets say you wanted to close Notepad [CODE] Dim myProcess As Process = New Process myProcess.StartInfo.FileName = "notepad.exe" Case Else ' do whatever in this else myProcess.Kill() [/CODE]

Member Avatar for BitBlt
0
3K
Member Avatar for chan py

you can use listview,, here is how to populate the columns with headers something like this [CODE] ListView3.Columns.Add("NAME", 150, HorizontalAlignment.Left) ListView3.Columns.Add("SCREEN NAME", 150, HorizontalAlignment.Left) ListView3.Columns.Add("LOCATION", 150, HorizontalAlignment.Left) 'ListView3.Columns.Add("DEDSCRIPTION ?", 50, HorizontalAlignment.Left) ListView3.Columns.Add("URL", 100, HorizontalAlignment.Left) ListView3.Columns.Add("FOLLOWERS", 100, HorizontalAlignment.Left) ListView3.Columns.Add("FRIENDS", 100, HorizontalAlignment.Left) 'ListView3.Columns.Add("FOLLOWING", 60, HorizontalAlignment.Left) ListView3.Columns.Add("MESSAGES SENT", 100, HorizontalAlignment.Left) [/CODE] and you …

Member Avatar for chan py
0
236
Member Avatar for Smoogel

any time you call "" send key "" the user will know,, it will take control of your computer. best do what jdsurgeon said and write to a text file and update that text file without bothering the user by taking control of their keyboard. does this answer your question …

Member Avatar for marketingmaniac
0
208
Member Avatar for marketingmaniac

The unfollow button is written in Java does anyone or can anyone programmaticly click the unfollow button? tried everything i know, visual basic, Java, JavaScript,, you name it,, cant do it.

Member Avatar for peter_budo
0
67
Member Avatar for marketingmaniac

This use to work for me when i placed it in the browsers address bar to follow someone on twitter. [CODE]javascript:alert($('.follow-button').click());[/CODE] does anyone know how to not follow with a similar code in the address bar? been trying everything but cant seem to get the rite code down.

Member Avatar for marketingmaniac
0
135
Member Avatar for prasadbby

You dont want to be using text box's for this, looks like your going through a whole lot of trouble for nothing. you should be using a muticolumn listbox i think. much easier to work with for both populating and reading so you can do whatever you want with the …

Member Avatar for AndreRet
0
142
Member Avatar for pardeep3dec

its quite complicated, here is some code to do what you need [URL="http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=39198&lngWId=1"]http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=39198&lngWId=1[/URL]

Member Avatar for pardeep3dec
0
155
Member Avatar for marketingmaniac

K,, ive tried and tried now for 3 weeks,, googled everything i can think of,, im going to you guys now for help,, what im trying to do is programaticly click the unfollow button in a twitter profile i use to be able to do this easily but not it …

Member Avatar for marketingmaniac
0
291
Member Avatar for jcfans

Easy Stuff,, textbox1 has whatever text you want to parse,, hence 0-AGF-MYR-100101 and puts it in the listbox1 one below the other like this 0 AGF MYR 100101 [CODE] Dim values As String values = TextBox1.Text Dim sites As String() = Nothing sites = values.Split("-") Dim s As String For …

Member Avatar for marketingmaniac
0
2K
Member Avatar for sophisticated19

can you save the data to the database but dont close the software yet,, confirm that the data is actually written to the database,, get back to me that the data is actually there

Member Avatar for marketingmaniac
0
181
Member Avatar for alleybye

do you have a conflicting table or anything else named rsTally or Connect? It sounds like rsTally or Connect is a reserved word.. presumably because there is a function with the same name (so there is confusion in working out whether you meant the function, or the call?) The ideal …

Member Avatar for AndreRet
0
102
Member Avatar for ehrendreich

hope this might help i save contents from a listbox to internal settings file. you could add this to the above code to save it safely [CODE] If ListBox8.Items.Count > 0 Then My.Settings.Names.Clear() For Each LI As String In ListBox8.Items My.Settings.Names.Add(LI) Next End If [/CODE]

Member Avatar for ehrendreich
0
1K
Member Avatar for DartDemon

easy stuff,, crate a timer,, and use random when you need to either speed up or slow down to create a human like reaction. if you want more, explain in detail what you need and ill give you some code

Member Avatar for codeorder
0
224
Member Avatar for Carrots

delete not deleting,, deleted a button Private Sub Button52_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) and the code is still there,, its just abutton, not linked to anything, why doesnt visual studio delete the code too? and,, is there some way to delete a bunch of buttons then delete …

Member Avatar for marketingmaniac
0
192
Member Avatar for angel392004

i have this code that will delete any duplicate entries in a list box,, hope this helps, the list box has to be set to organize from a to z [CODE] Dim i, j As Integer Dim Arr As New ArrayList Dim ItemFound As Boolean 'this outside loop goes through …

Member Avatar for marketingmaniac
0
135
Member Avatar for ludamizleeto

i am also having a problem,, the decapture.dll seems to be written in vb 2003 and im using the vb 2008,, did you get it to compile in visual studio 2008? and if so ,, i cant seem to reference the decapture.dll in mine,, do you have a copy of …

Member Avatar for darcee
0
555

The End.