Forum: C# Jun 19th, 2009 |
| Replies: 4 Views: 571 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 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 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 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 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 Views: 968 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 Thanx for understanding and please cool down soon |
Forum: JavaScript / DHTML / AJAX May 16th, 2008 |
| Replies: 18 Views: 6,973 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 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 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 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 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 |
Forum: C++ May 13th, 2008 |
| Replies: 5 Views: 728 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 Views: 621 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 Views: 621 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 Views: 621 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 Views: 621 #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 Views: 2,273 Ur welcome :) , Mark it as solved if solved |
Forum: JavaScript / DHTML / AJAX May 12th, 2008 |
| Replies: 4 Views: 2,273 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 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 Views: 677 What is it that doesnt work properly, what does the program suppose to do? |
Forum: C++ Apr 1st, 2008 |
| Replies: 4 Views: 442 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 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 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 |
Forum: C++ Mar 28th, 2008 |
| Replies: 34 Views: 2,555 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 Anytime... U can mark it as solved now |
Forum: C++ Mar 27th, 2008 |
| Replies: 34 Views: 2,555 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 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 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 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... |