No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
17 Posted Topics
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 …
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]
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 …
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 …
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.
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.
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 …
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]
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 …
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 …
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
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 …
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]
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
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 …
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 …
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 …
The End.
marketingmaniac