Search Results

Showing results 1 to 32 of 32
Search took 0.01 seconds.
Search: Posts Made By: Traicey
Forum: C# Jun 19th, 2009
Replies: 4
Views: 571
Posted By Traicey
I think you might wana consider having something like this txtDate.Text = DateTime.Today.ToShortTimeString();
in ur code, its hard to tell coz u havent post any code to see where u might be going...
Forum: ASP.NET Dec 10th, 2008
Replies: 11
Views: 1,437
Posted By Traicey
SqlDataAdapter da1=new SqlDataAdapter("select stateid,statename from statename where countryid=' country_id'",cn);

Try and fix this line cos you dont need to put the country_id within single and...
Forum: C++ Dec 3rd, 2008
Replies: 21
Views: 1,714
Posted By Traicey
I dont know why you are assigning the address or memory location of data to savings whereas your variable data is not a pointer, I think the problem in your code is a mismatch of the data types you...
Forum: JavaScript / DHTML / AJAX Jun 27th, 2008
Replies: 2
Views: 1,515
Posted By Traicey
Oh I forgot...... for drop down list you need to change
this line of code
<option value="selected">SELECT</option>
to this
<option value="0"SELECTED>SELECT</option>

And to validate would be...
Forum: JavaScript / DHTML / AJAX Jun 27th, 2008
Replies: 2
Views: 1,515
Posted By Traicey
For the radio button u need to group both radio buttons that means u gona have the same name for both of them u can change this line of code

<input type="radio" name="genderM" value="Male"...
Forum: JavaScript / DHTML / AJAX May 30th, 2008
Replies: 3
Solved: for loop
Views: 968
Posted By Traicey
The problem could be that you have this OuPut = OutPut + Numbers[i] + "\r"; instead of OutPut = OutPut + Numbers[i] + "\r"; the spelling of your output is wrong before the equal sign maybe if you...
Forum: JavaScript / DHTML / AJAX May 16th, 2008
Replies: 18
Views: 6,973
Posted By Traicey
Thanx for understanding and please cool down soon
Forum: JavaScript / DHTML / AJAX May 16th, 2008
Replies: 18
Views: 6,973
Posted By Traicey
MMMmmm.... thats quite hash and please forgive my mistakes... but for the sake of Daniweb and its Precious fellows lets be civil.... Why... Because

1. I thought I was helping you with ur thread...
Forum: JavaScript / DHTML / AJAX May 16th, 2008
Replies: 18
Views: 6,973
Posted By Traicey
Easy, Easy Tefflox..... All generalizations are wrong, Besides I dont know what ur complaning about (PS... Man invented language to satisfy his deep need to complain) coz U have solved your own...
Forum: JavaScript / DHTML / AJAX May 15th, 2008
Replies: 18
Views: 6,973
Posted By Traicey
What one can say!!!!!

We may rather call it plagiarism than just a plain homework, Anyways Im just glad I dont have to go through all that, mainly trying to fascinate or impress Daniweb's Gurus...
Forum: JavaScript / DHTML / AJAX May 15th, 2008
Replies: 18
Views: 6,973
Posted By Traicey
Well..... if U solved it U can mark it as solved, to eliminate the waste of time ur fellows would waste trying to understand ur complex code
Forum: JavaScript / DHTML / AJAX May 14th, 2008
Replies: 18
Views: 6,973
Posted By Traicey
If I understand you correctly.... U are struggling with validating radiobutton (i.e) U wana make sure that one of them are seleceted well if thats the case, we can attempt to fix by doing the...
Forum: JavaScript / DHTML / AJAX May 13th, 2008
Replies: 3
Views: 1,576
Posted By Traicey
Forum: C++ May 13th, 2008
Replies: 5
Views: 728
Posted By Traicey
What is it that u need help with, what the project is doing, where are u stucked with the project.....sure everybody would like to know that hey
Forum: C++ May 12th, 2008
Replies: 9
Solved: Files Problem
Views: 621
Posted By Traicey
just try to move ur struct declaration to be just sfter ur struct definition, that means ur struct declaration will be a global declaration coz it seems as if u are using it through-out the project,...
Forum: C++ May 12th, 2008
Replies: 9
Solved: Files Problem
Views: 621
Posted By Traicey
Obvious issues..... for now u can return o or something in line 23 since u use a value-returning function when declaring function main() and close the braces, not that is gona make any defferences to...
Forum: C++ May 12th, 2008
Replies: 9
Solved: Files Problem
Views: 621
Posted By Traicey
Was trying to make things easier for people who will read ur thread and for myself also, and NO, there is nothing wrong with ur thread..... just trying to understand what the program suppose to do,...
Forum: C++ May 12th, 2008
Replies: 9
Solved: Files Problem
Views: 621
Posted By Traicey
#include <iostream>
#include <iomanip>
#include <cmath>
#include <fstream>
using namespace std;
void voircatalogue(fstream&);
void ajoutitem(fstream&);
void ajoutclients(fstream&);
char...
Forum: JavaScript / DHTML / AJAX May 12th, 2008
Replies: 4
Solved: Login window?
Views: 2,273
Posted By Traicey
Ur welcome :) , Mark it as solved if solved
Forum: JavaScript / DHTML / AJAX May 12th, 2008
Replies: 4
Solved: Login window?
Views: 2,273
Posted By Traicey
U can create ur login page separately and use window.open in ur home page, using javascript or anywhere in the body of ur default home page the following will lead you to the right path

You can...
Forum: VB.NET Apr 22nd, 2008
Replies: 4
Views: 791
Posted By Traicey
If possible you could post your piece of code that is dealing with those textbox and lists maybe people could possible help you
Forum: C++ Apr 8th, 2008
Replies: 9
Solved: Need Help!!
Views: 677
Posted By Traicey
What is it that doesnt work properly, what does the program suppose to do?
Forum: C++ Apr 1st, 2008
Replies: 4
Views: 442
Posted By Traicey
U can declare ur variables using string or even character (eg) string Name; and if u gona accept it from the user u can achieve that by this getline(cin, Name) or if u just want to right u can also...
Forum: C++ Apr 1st, 2008
Replies: 2
Views: 5,574
Posted By Traicey
1st u need to include fstream that is #include <fstream>,

and then declare ur input and output streams ifstream in_file;, ofstream out-file; only if u gona use both of them and again u need to...
Forum: C++ Mar 31st, 2008
Replies: 6
Views: 1,164
Posted By Traicey
I bet if ur if statements does not give you syntax errors coz U did not declare cos, sin, tan and log and I dont think C++ syntax recognise those variables neither as reserved words....


here is...
Forum: C++ Mar 31st, 2008
Replies: 34
Views: 2,555
Posted By Traicey
Forum: C++ Mar 28th, 2008
Replies: 34
Views: 2,555
Posted By Traicey
Me too

In line 21 ur for loop statement u need to have i++ not just ++... U cant have for loop and close the braces without opening them(Line 22).... In line 23 delete one of the commers..... In...
Forum: JavaScript / DHTML / AJAX Mar 28th, 2008
Replies: 3
Views: 885
Posted By Traicey
Anytime... U can mark it as solved now
Forum: C++ Mar 27th, 2008
Replies: 34
Views: 2,555
Posted By Traicey
Someone said use

paste ur code here

[/ code]

but make sure that there is no space between "code", "=" and "cplusplus" same goes to
Forum: JavaScript / DHTML / AJAX Mar 27th, 2008
Replies: 3
Views: 885
Posted By Traicey
I assume that u have ur if statement and return function to where ever site ur editing,

What I suggest u do for now is to change the last digit of ur submenu\MenuItem.... That is (eg.) in ur case...
Forum: C++ Mar 26th, 2008
Replies: 7
Views: 922
Posted By Traicey
Try this and see if it works..... But the problem is some libraries does not support
(#include "XYLock.h")



#include <stdio.h>
#include <iostream>
#include "XYLock.h"

XYCriticalSection...
Forum: C++ Mar 25th, 2008
Replies: 2
Views: 1,558
Posted By Traicey
As u said........ a caret [^] is a managed reference (usually called a handle in C++/CLI) is a reference to a managed .NET object. Managed object's lifetimes that are controlled by the .NET garbage...
Showing results 1 to 32 of 32

 


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

©2003 - 2009 DaniWeb® LLC