-
Replied To a Post in yahoo Availability
Sounds to me, based on this and your other posts, that you are trying to create an app to automatically create Yahoo accounts and then cover your tracks. It also … -
Replied To a Post in Computer Slaves
For some projects I can see costs ballooning but the long gun registry should have been almost off-the-shelf. Person buys gun, gun and person go into registry accessible by all … -
Replied To a Post in Computer Slaves
It's all political. We built a state of the art, hurricane proof building for our control centre and filled it with state of the art computers and custom software to … -
Gave Reputation to vegaseat in Seeking a partner to create something world changing
How do you pack all of this into a computer program? Better pick a good language or the code will be a billion lines. -
Replied To a Post in Computer Slaves
"I don't fear computers. I fear the lack of them." Isaac Asimov -
Replied To a Post in Visual Studio crashes
Perhaps a tad too late (maybe not) but I suggest you partition your drive into C (60-80 gig OS and apps) and D (whatever is left) for data and relocate … -
Replied To a Post in Random Facts
>GMO only slightly extends our ability to genetically modify our food crops So you consider inserting a fish gene into a tomato as "slightly extending"? >True, but new combination treatments … -
Replied To a Post in Seeking a partner to create something world changing
>So really all it is doing is generating debt. When I said "profit", what I meant was profit for the corporations. It's merely another way of transferring money from one … -
Replied To a Post in Jokes
You can't tell puns to kleptomaniacs. They take things, literally. -
Replied To a Post in Seeking a partner to create something world changing
The US will never nuke the middle east. There's no profit in it. Neither will they withdraw (same reason). War, on the other hand, generates tremendous profit to arms manufacturers, … -
Replied To a Post in Select Case inside an If/Then statement
A not so often used, but sometimes useful form of the Select Case is that it can be used to select between seemingly unrelated conditions. The form Select Case True … -
Replied To a Post in Wrong format for SQL Select Statement
Do StateSQL = "SELECT * FROM petrol_table " & " WHERE fueldate >= " & "'" & M12S & "'" & " AND fueldate < " & "'" & M12F … -
Replied To a Post in Wrong format for SQL Select Statement
Try StateSQL = "SELECT * FROM petrol_table " & " WHERE fueldate >= @sdate & " AND fueldate < @edate" Conn.Open() sqlCmd = New SqlCommand(StateSQL, Conn) sqlCmd.Parameters.AddWithValue("@sdate", M12S) sqlCmd.Parameters.AddWithValue("@edate", M12F) -
Replied To a Post in what is the deploy and publish of vb.net project
[Here](https://msdn.microsoft.com/en-us/library/vstudio/k3bb4tfd(v=vs.100).aspx) is a walkthrough from Microsoft. -
Gave Reputation to stultuske in Seeking a partner to create something world changing
> Wow. >@jwenting, @pixelsoul, @reverendjim, @mike_2000_17 if you're all done patting eachother on the back for the above nonsense, then let me say this... if warning people for possible trouble … -
Replied To a Post in Windows 10
A comprehensive comparison of what features come with what edition of Windows 10 can be found [here](http://www.zdnet.com/article/which-windows-10-editions-get-which-features/) -
Replied To a Post in Internet stopping, slow and threat warnings! Help!
If you have access to another machine I suggest you download [Trend Micro Housecall](http://housecall.trendmicro.com/) (free) and burn it to a CD/DVD then boot your computer to the disc. -
Replied To a Post in Memorable Quotations
Essential to the pursuit of happiness is knowing when you've caught it. - [Arlo Day (Jimmy Johnson)](http://www.gocomics.com/arloandjanis/2015/07/03) -
Replied To a Post in Visual Studio crashes
Is it only one one particular project or does it also happen on a new project? If just the one then you may have to recreate it from scratch and … -
Replied To a Post in What Music Do People Like?
One of my favourite albums - [Jean Pierre Rampal, Telemann - Twelve Fantasias For Flute Solo](https://www.youtube.com/results?search_query=Jean+Pierre+Rampal+-+Telemann+-+Twelve+Fantasias+For+Flute+Solo). -
Replied To a Post in How to add fields into listbox in VB8
Try this ListBox1.Items.AddRange({"the", "quick", "brown", "fox", "jumped", "over"}) TextBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend TextBox1.AutoCompleteSource = AutoCompleteSource.CustomSource TextBox1.AutoCompleteCustomSource.Clear() For Each item In ListBox1.Items TextBox1.AutoCompleteCustomSource.Add(item) Next Just remove the first statement to use the … -
Replied To a Post in select a child node in treeview
You get the selected node through TreeView1.SelectedNode You can select a specific node in code by TreeView1.SelectedNode = TreeView1.Nodes(0).Nodes(4) -
Replied To a Post in Understanding Regex
There is an addin tool available for versions of Visual Studio up to 2012 that will allow you to easily test your regular expressions. You can find it [here](https://visualstudiogallery.msdn.microsoft.com/f63786bf-a137-4433-9d2c-6eea56d39927/) -
Replied To a Post in Community Center Chat window
I've seen the same thing. Sometimes I have to close the chat twice before it stays closed. -
Replied To a Post in Random Facts
For simplicity, when I say "Monsanto" I am referring to all GMO companies. Monsanto claims that humans have been practicing genetic modification on plants and animals for millennia, and what … -
Gave Reputation to advent_geek in Random Facts
**China has treatment camps for Internet addicts** [Source](http://content.time.com/time/world/article/0,8599,1874380,00.html) -
Replied To a Post in database of html image
What do you mean by **html image**? By **get** do you mean save, retrieve, download or what? -
Replied To a Post in Seeking a partner to create something world changing
I'm not patting myself on the back. I'm simply speaking from the point of view of someone who, over the last 35 years has seen an awful lot of sizzle … -
Replied To a Post in Seeking a partner to create something world changing
It reminded me of season 1 of Silicon Valley where, at the tech gala, every presenter claimed that their software would "change the world". **BUT WAIT!!!**, if you buy now … -
Replied To a Post in Do not understand why this behaviour appear.
You are not using IIF correctly. You can not execute statements within an IIF. For example Dim a As Integer = 1 Dim b As Integer = 2 Dim c … -
Replied To a Post in saving record from listview into access database
The first problem is that you have a field name with an embedded blank. The field is `Message status`. There are two ways to fix this. One way is to … -
Replied To a Post in Memorable Quotations
I used to go and sit on the beach at Brighton and dream, and now I sit on the shore of human life and dream practically the same dreams. I … -
Replied To a Post in How to set lines limit in richtextbox
Yeah. It was ambiguous but considering that the number of displayed lines would vary depending on the size of the form I assumed hard terminated lines as the more likely … -
Replied To a Post in Random Facts
Chinese hackers now have information on 18 million US government employees. This information contains details relating to drug abuse, gambling problems, debts, marital troubles, criminal activity, sexual preferences and sexual … -
Gave Reputation to matoo in VB yes no problem
thanks reverend jim my mistake thanks for pointing out i use response in what ever code i write for myself so in the description they were using reply and i … -
Replied To a Post in How to set lines limit in richtextbox
@rproffitt - the code I suggested allows all of that. It says only to disallow any ENTER keys if already at the max allowed. All other keystrokes are still allowed. … -
Replied To a Post in saving record from listview into access database
Here is an OleDB example using a sample database with fields of type int, int, varchar(50, int. Dim con As New OleDbConnection("Provider=SQLNCLI10;Server=.\SQLEXPRESS;Database=mydb;Trusted_Connection=Yes;Connect Timeout=15;") con.Open() For Each item As ListViewItem In … -
Replied To a Post in Populate text box from another text box
Have you tried stepping through the code in the debugger? -
Replied To a Post in VB yes no problem
You need to use the same variable for the return value as well as the test. You used `responce` to save the result but your test uses `reply`. Another possibility … -
Undeleted a Post in VB yes no problem
Dim responce As Integer responce = MsgBox("Are you sure you want to Logout?", vbYesNo, "Confirmation") If reply = vbYes Then Unload Me frmAuthentication.Show else exit sub End If -
Deleted a Post in VB yes no problem
Dim responce As Integer responce = MsgBox("Are you sure you want to Logout?", vbYesNo, "Confirmation") If reply = vbYes Then Unload Me frmAuthentication.Show else exit sub End If -
Replied To a Post in Populate text box from another text box
Sorry. Didn't check the modified query. You have to also select Fullname, not just EmpID. You can only reference columns that you have selected. selectQuery = "SELECT EmpID, FullName... -
Replied To a Post in Populate text box from another text box
In that case try If dr.Read Then txtEmpName.Text = dr("FullName") Keep in mind that because you are doing a "Like" in the select query you may end up with more … -
Edited Executing JavaScript Inside Gecko - vb.net
Hello everybody I'am trying to execute JavaScript in GeckoWebBrowser my code is : Hide Copy Code GeckoWebBrowser1.Navigate("javascript:void(" + TextBox2.Text.Replace("""", """""") + ")")` my JavaScript is : Hide Copy Code var … -
Replied To a Post in Populate text box from another text box
Your query is "SELECT * FROM EmployeeRegistration WHERE EmpID Like '" + txtEmpId.Text + "' AND FullName = '" & txtEmpName.Text & "'" so you are going to select based … -
Replied To a Post in Wrong Last updated link
Ah. I see. I was in the actual thread. That does seem to be a bug. -
Replied To a Post in Random Facts
In the early 1990's a biotech cmopany in Europe was prepared to mass-market a bacteria intended to decompose plant litter in soil. Independent researchers, however, determined that it would, instead, … -
Replied To a Post in Wrong Last updated link
I see the last post as coming from you. -
Replied To a Post in Populate text box from another text box
You already have the employee ID in txtEmpId and the employee name in txtEmpName before you click SEARCH. What am I missing? -
Edited Populate text box from another text box
I need help. I have a search button and 2 textboxes.Textbox1 should diplay the employee id when the search button is clicked (and it works fine).But I need to automatically …
The End.