Search Results

Showing results 1 to 24 of 24
Search took 0.01 seconds.
Search: Posts Made By: campkev
Forum: MS SQL May 9th, 2008
Replies: 1
Views: 1,388
Posted By campkev
get rid of the square brackets around the varchar(255) and it will work fine.

For that matter, why are you putting them around the datatypes anyway? I've never seen anyone do that.
Forum: MS SQL May 9th, 2008
Replies: 3
Views: 3,798
Posted By campkev
select * from persons where (prefix like '%'+@input+'%'
or
firstname like '%'+@input+'%'
or
lastname like '%'+@input+'%')
and address like '%'+@addressinput+'%'
Forum: ASP.NET May 7th, 2007
Replies: 3
Views: 2,433
Posted By campkev
can you give us some sample data?
Forum: ASP Feb 7th, 2007
Replies: 2
Views: 1,394
Posted By campkev
what's the error? is this from another thread? why didn't you post as followup in that thread instead of starting new thread?
Forum: C# Feb 7th, 2007
Replies: 8
Views: 13,972
Posted By campkev
int intTemp = Convert.ToInt32(Console.Readline())
Forum: ASP.NET Feb 5th, 2007
Replies: 4
Views: 6,284
Posted By campkev
?????
post your code
Forum: ASP Feb 5th, 2007
Replies: 3
Solved: ASP To Access
Views: 2,496
Posted By campkev
post your code that is giving this error
Forum: ASP.NET Feb 5th, 2007
Replies: 4
Views: 6,284
Posted By campkev
textBoxName.Text = DateTime.Now.Month.ToString()+"/1/"+ DateTime.Now.Year.ToString();
Forum: ASP Jan 30th, 2007
Replies: 3
Views: 1,856
Posted By campkev
problem is not with the date function.

you are comparing the string "h" to the string "12"
"h" < "12" is always going to return false

you need to compare your variable h to the number 12

h...
Forum: ASP.NET Oct 24th, 2006
Replies: 3
Views: 22,125
Posted By campkev
it depends on how that column is setup in the database. Is it set up as an identity column?
Forum: ASP Aug 8th, 2006
Replies: 2
Views: 4,116
Posted By campkev
i would run some tests on your email server and see. however I would have to guess that one message with lots of recipients would be much better
Forum: C# Jul 6th, 2006
Replies: 10
Views: 30,522
Posted By campkev
yeah, sorry you need using System.Text also
Forum: C# Jul 5th, 2006
Replies: 10
Views: 30,522
Posted By campkev
actually you don't want to be able to decrypt it.

what you do is encrypt the password and save that in the database

when the user logs in, encrypt the password the input on the login screen...
Forum: ASP.NET Jun 10th, 2006
Replies: 2
Views: 1,128
Posted By campkev
I see your problem, it's simply, oh wait I can't see anything because you didn't post any code, didn't say what you were using to send the email, no useful information whatsoever.

Might as well go...
Forum: ASP.NET May 18th, 2006
Replies: 10
Views: 6,555
Posted By campkev
i cannot even ping that address. You probably need to talk to your network administrator. This looks like a networking problem, not a ASP.Net problem
Forum: MySQL May 4th, 2006
Replies: 4
Solved: Joins
Views: 1,445
Posted By campkev
now for when you might want to do that.

Lets say you have started weekly and a monthly newsletter for this site, with the members having the option to sign up for either, neither or both.

Now...
Forum: MySQL May 4th, 2006
Replies: 4
Solved: Joins
Views: 1,445
Posted By campkev
left joins will return all rows in the initial table regardless of whether or not they have a corresponding entry in the joined table. for rows that do not have a corresponding entry, null will be...
Forum: Pascal and Delphi Feb 13th, 2006
Replies: 2
Solved: FOR loops
Views: 2,783
Posted By campkev
call me crazy, but it appears that you are running a loop that only runs one time. Why?
Forum: C++ Feb 8th, 2006
Replies: 4
Views: 5,765
Posted By campkev
to find the number of digits in int x

if (x < 0)
x = -x;
int count = 1;
x = x/10;
while( x > 0)
{
count++;
x = x/10;
Forum: C# Nov 8th, 2005
Replies: 6
Views: 3,002
Posted By campkev
I'm assuming you meant 22.00 OR Great and 16.50 OR Greater

double valueAfterDeduction(double oldValue){
if(oldValue >= 22.00) oldValue -= 3.3;
else if(oldValue >= 16.5) oldValue = (oldValue *...
Forum: MS SQL Nov 1st, 2005
Replies: 10
Views: 11,191
Posted By campkev
Forum: C# Aug 12th, 2005
Replies: 10
Solved: Kindof DUMB
Views: 2,460
Posted By campkev
copy and paste the whole error message
Forum: C# Aug 12th, 2005
Replies: 10
Solved: Kindof DUMB
Views: 2,460
Posted By campkev
Try this (http://www.microsoft.com/downloads/details.aspx?FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3&displaylang=en)
Forum: C# Aug 5th, 2005
Replies: 10
Solved: Kindof DUMB
Views: 2,460
Posted By campkev
You have to have the .net framework installed. You can include that as part of your install progam.
Showing results 1 to 24 of 24

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC