
|
When posting your question please:- Choose the correct forum for your message. Posting a VB.NET question in the C++ forum will end in tears.
- Be specific! Don't ask "can someone send me the code to create an application that does 'X'. Pinpoint exactly what it is you need help with.
- Keep the subject line brief, but descriptive. eg "File Serialization problem"
- Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.
- Be careful when including code that you haven't made a typo. Typing mistakes can become the focal point instead of the actual question you asked.
- Do not remove or empty a message if others have replied. Keep the thread intact and available for others to search and read. If your problem was answered then edit your message and add "[Solved]" to the subject line of the original post, and cast an approval vote to the one or several answers that really helped you.
- If you are posting source code with your question, place it inside <pre></pre> tags. We advise you also check the "Encode HTML tags when pasting" checkbox before pasting anything inside the PRE block, and make sure "Ignore HTML tags in this message" check box is unchecked.
- Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
- Please do not post links to your question in one forum from another, unrelated forum (such as the lounge). It will be deleted.
- Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
- If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
- No advertising or soliciting.
- We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.
When answering a question please:
- Read the question carefully
- Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
- If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
- If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
cheers,
Chris Maunder
The Code Project Co-fou
|
|
|
|

|
Thread closed.
modified 8 hrs ago.
|
|
|
|

|
pleasehelpmethankyouverymuch wrote: //you should write a method That means you are expected to write it, as it is your assignment. If you have specific questions then ask them, but do not expect people here to write the entire assignment for you.
|
|
|
|

|
hi,
im doing GUI that user can edit textboxes.in this my requirement is
(1)name with check box
(2)if user click check box pop window or alert box will appear.in that window i have to display min-value,max-vale,actual value,default value.and two buttons one is update another one is default
3)in this actual value can edit by user if he edits it has to be validate from min& max.
please help me to this GUI.
note:The values will read and wright from xml file i can read and wright those values by dom processor.
|
|
|
|
|

|
Do not Repost again and again:
checkbox with pop window[^]
checkbox with pop window[^]
To learn all there is to know. I know I'll be disappointed one day, but I've made a good start, and the eventual disappointment is likely to be brief.
-Roger Wright
|
|
|
|

|
Hello everyone,
Is it possible to serialize null as just null in java?
For example, if I have a row such as below,
Col1 Col2 Col3
---- ---- ----
A null B
Is it possible to seriazle the row above to the json below?
{"Col1":"A", "Col2":null, "Col3":"B"}
Thanks for taking your time and help a lot.
Best regards,
Zaw Min Tun
|
|
|
|
|

|
In fact, I'm doing this in Java, it's a Maven project and hosted as a web service on GlassFish. The service returns the data in json format. The problem is when the values are null, I have to serialize them as "" or "null". I want to return as just null. However, I still can't find a way.
|
|
|
|