-
Created Cell phones and cancer
In another typical news day we are told that a "Major New Study Reveals Cellphone Radiation Causes Cancer." If, like most people, you react to headlines, your first (perhaps only) … -
Replied To a Post in Memorable Quotations
What if voters decided intelligence and nuanced thinking were more important qualities in a presidential candidate than with whom they’d most like to have a beer? What if the Uhmerican … -
Replied To a Post in What's the correct way to write this query
Unrelated suggestion - in some databases, `password` is a reserved word. You may want to specify it in the query as `[password]`. It may work in some databases but if … -
Created AutoHotKey Scripts
I have been using [AutoHotKey](https://autohotkey.com/) for quite some time and I have found it to be invaluable for enhancing Windows 7/10 functionality. I thought I'd post a couple of useful … -
Replied To a Post in Trump
I'll bookmark that for much later. Here at the cottage I have a data cap (3 gig per month unless I want to pay more) and with Microsoft not allowing … -
Replied To a Post in Trump
You know, now that we are at the cottage for the summer my dog has taught me that there are better ways to spend my time than obsessing about some … -
Replied To a Post in Trump
I think Obama **was** a decent politician with convictions but in some ways he was a complete idiot. The GOP said from day one that they were going to ensure … -
Replied To a Post in BOOST VOLUME (headphones)
Have a look at [Equalizer APO](https://sourceforge.net/projects/equalizerapo/). I've been using it for a few years. -
Replied To a Post in Trump
Clinton **is** a schemer. I think the fact that she won't release her Goldman Sachs lecture notes basically says she is making promises to her moneyed friends behind closed doors. … -
Edited java project
hy its me behram i need to submit my project can anyone give me idea for making desktop app;ication using java -
Replied To a Post in Trump
>only about 20% of the Repubican Party get to vote for the nominee so maybe it's has been skewed in some way? People are much more highly motivated by fear … -
Edited Trump
I think I finally understand why Trump is doing so well (he recently pulled even with Hillary Clinton). It's only after years of shows like American Idol and America's Got … -
Created Trump
I think I finally understand why Trump is doing so well (he recently pulled even with Hillary Clinton). It's only after years of shows like American Idol and America's Got … -
Marked Solved Status for Programming using a convert.txt file
Could anyone help with the code I have made. The problem is that it is reading in the conversion txt file but because there is a space between some of … -
Replied To a Post in How do I use a list box to add up a series of numbers
Can't say what you are doing wrong unless you show us the code you are running. We are not going to just give you the solution. -
Replied To a Post in Hello there!
Please to meet you. You'll find me mainly in the vb.net forum. Hope to see you there. -
Replied To a Post in c# program
Use grep. -
Replied To a Post in Appending to an existing text file
A much simpler solution would be something like Dim srcFolder As String = "d:\temp\don" Dim ConcatFile As String = "d:\temp\don\concat.txt" For Each file As String In My.Computer.FileSystem.GetFiles(srcFolder, FileIO.SearchOption.SearchTopLevelOnly, "file*.txt") Dim … -
Replied To a Post in Appending to an existing text file
If there is only one file then the loop will execute once and append the single file. -
Replied To a Post in Appending to an existing text file
I am not a fan of special case programming. It clutters up the code. Why not create an empty file outside the loop and then just append all of the … -
Replied To a Post in Help .. I'm new
`Product_Name` is defined as an int and you are trying to assign a string to it. My C is a little rusty but it seems to me that you want … -
Replied To a Post in Why testers are dumb?
>silly UI bugs? The only bugs I would classify as "silly" are the ones that the developer should have caught himself before passing the system on to the testers, in … -
Gave Reputation to rahulrevolution in KALI LINUX
Why is Kali linux used. How much it is different from Redhat.What is the scope for freelancers with kali linux. -
Replied To a Post in KALI LINUX
[See here](https://en.wikipedia.org/wiki/Kali_Linux). -
Replied To a Post in syntax error into insert statement visual studio 2008 ms access
The trouble with posting sqlCommand = "INSERT INTO Personss (names, contactnumero, emailadds, pages, projects, agents, sources, months, days, years, times, agents1, transactions, months1, days1, years1, times1, agents2, transactions1, months2, days2, … -
Replied To a Post in Memorable Quotations
We must face the fact that the United States is neither omnipotent or omniscient—that we are only six percent of the world's population—that we cannot impose our will upon the … -
Replied To a Post in Why does Dell hate Linux so much?
Typically, Dell supports the hardware of a system and will assume that every problem is a software problem for which they will charge to fix (trust me on this - … -
Replied To a Post in What is "con","prn" and "nul" folder means
They can be udeful when working from the command line. `con` is the console device. `cat` lists the contents of a file to the console. If you `cat` and redirect … -
Replied To a Post in How does this compile
In boolean expressions, any non-zero value evaluates as True. Zero evaluates as False so if(cmp_str5 == 0 || cmp_str6) actually means if cmp_str5 is zero or cmp_str6 is not zero … -
Gave Reputation to Thee Anointed in pseudo code algorithm
write a pseudocode algorithm to accept a group of numbers and print there product and average the program must end when user enter 999 PLZ HELP ME -
Replied To a Post in Dell Hell Part 2
The new laptop came while I was away for a few days. Just powered it up. It's an Inspiron 5759 which is a big step up from the one it … -
Replied To a Post in Memorable Quotations
Forgiveness means giving up all hope for a better past. - Lily Tomlin. -
Replied To a Post in Memorable Quotations
Courage doesn’t always roar. Sometimes courage is a quiet voice at the end of the day saying, “I will try again tomorrow.” - Mary Anne Radmacher -
Replied To a Post in Memorable Quotations
To criticize a person for their race is manifestly irrational and ridiculous, but to criticize their religion, that is a right. That is a freedom. The freedom to criticize ideas, … -
Replied To a Post in Split and assign each line to variables
Your biggest problem is that you've already decided how you want to do it, but how you want to do it is wrong. Why are you so wedded to the … -
Replied To a Post in Split and assign each line to variables
D1*X584635*test.one*12643820000000000?*D2*65496321476=2416317950000000000*(Y@12345)*Date:*05*April*2016*Time:*17*01*32 1. D1 1. X584635 1. test.one 1. 12643820000000000? 1. D2 1. 65496321476=2416317950000000000 1. (Y@12345) 1. Date: 1. 05 1. April 1. 2016 1. Time: 1. 17 1. 01 1. … -
Replied To a Post in Split and assign each line to variables
Clear as mud. Why do you need to put the values into discrete variables when they are already in discrete array elements? I also notice that you say >Each line … -
Replied To a Post in Split and assign each line to variables
I'm not clear on what you want. Perhaps you can post a sample input file with all of the possible variants and an example of how that data will look … -
Gave Reputation to justin_17 in help
#include <stdio.h> #include <stdlib.h> int Client_Records(); int outstanding_balances(); int total_company_expenses(); int profit_loss(); void file_guard(); void file_sentinel(); struct records { char client_first_name[30]; char client_last_name[30]; char street_adress[20]; int phone_number; char email_adress[20]; char … -
Gave Reputation to justin_17 in Need help correcting menus so they outpu
#include <stdio.h> #include <stdlib.h> int Client_Records(); int outstanding_balances(); int total_company_expenses(); int profit_loss(); void file_guard(); void file_sentinel(); struct records { char client_first_name[30]; char client_last_name[30]; char street_adress[20]; int phone_number; char email_adress[20]; char … -
Replied To a Post in Need help correcting menus so they outpu
You can't be bothered to describe the problem you are having or even take the time to provide a clear thread title. All you have done is post a whack … -
Edited Need help correcting menus so they outpu
#include <stdio.h> #include <stdlib.h> int Client_Records(); int outstanding_balances(); int total_company_expenses(); int profit_loss(); void file_guard(); void file_sentinel(); struct records { char client_first_name[30]; char client_last_name[30]; char street_adress[20]; int phone_number; char email_adress[20]; char … -
Revoked Solved Status for New Dev/Game PC Advice
Hello reader! I've been working in a laptop with 6GB RAM, i5, 500GB HD and I can't take it anymore! What I mostly use : 1. Office Package (word, excel, … -
Replied To a Post in vb.net value updation issue
Change it to Dim cmd As String = " UPDATE Pension_Master SET l_cer='" & l_cer & "',validfrom=convert(datetime,'" & validfrom.Date & "',101)," & _ "validto=convert(datetime,'" & validto.Date & "',101) WHERE ppo_no … -
Replied To a Post in How to Display Query Results From Sql to my Program VB
[This code snippet](https://www.daniweb.com/programming/software-development/code/445801/use-parameterized-queries-to-avoid-sql-injection-attacks) shows how to get data from a database using SQLDB and OLEDB tpe connections. Both examples display the results in a ListView. They also use parameterized queries … -
Replied To a Post in Dell Hell Part 2
>On most dells, you should still be able to request a downgrade to Win7. I realize that at some point I will have to move to Windows 10. Better to … -
Replied To a Post in Dell Hell Part 2
I called Dell tech supporrt this morning and was told that the replacement laptop had been canceled. However, I had already received an email from the Dell Advanced Problem Resolution … -
Replied To a Post in I need some technical support
Start with just about any other language. I suggest Python, or if you want a GUI, vb.net or C#.net. -
Replied To a Post in Microsoft's Heavy Handed Approach to Windows 10 Upgrades
New Windows 10 blocker tool. See [here](http://www.zdnet.com/article/never10-a-new-tool-for-turning-off-microsofts-windows-10-update/) -
Replied To a Post in RadioButtons and checkboxes!!!
You can replace TextBox1.Text = price1 If (CheckBox1.Checked) Then TextBox1.Text = price1 + open Else TextBox1.Text = price1 + wine End If with TextBox1.Text = price1 + IIf(CheckBox1.Checked, open, wine) …
The End.