|
My DH and I had a talk today after I once again started crying. He didn't want anymore, I was always unsure so we didn't do anything permanent. I was fine with just waiting until I found out I was pg then I suddenly really wanted another one. Now that...
Started by Halfbaked on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at justmommies):
We see two lines! It's not like you want to replace the one that was lost...but it showed you how convince him to wait until he's POSITIVE we dont want any more....which he says he is...but then does badly you wanted another....
|
|
I want to send a textBox value in email in C#. some one Help me?
Started by ibrahim on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Load the body of the mail with the TextBox.Text value you can try something like this
MailMessage msg = new MailMessage... .
TxtBox.Text;
will give you the value in C#
TextBox.Text Property
see Scott Gu's article to send Sending Email with System.Net.Mail here .
|
|
Out of everything that can happen at E3, only choose one thing that you want out of E3, a game, idea, announcment or reveal that you want or don't want to happen. Only choose one thing you want to happen and don't want, just to make it fun :) I want Nintendo...
Started by Dany on
, 20 posts
by 18 people.
Answer Snippets (Read the full thread at giantbomb):
I don't want a huge focus on casual bullshit....
want: Tak Fuji and moreWant: good games Don't want: icky bad games I want Just Cause 3.
And/or Kingdom Hearts III Don't Want - Any Move/Kinect bullshit no one cares.
|
Ask your Facebook Friends
|
I have three JFrames, i want to close one of them without influence to another. what can i do to get it ?
thanks Peter. I want to open two(or more) JFrames at the same time, and When I close one of them(use the default close button), others is still open...
Started by Keating on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Does it help you ?
import.
Otherwise call dispose() to remove all information about how and why you want to close the frame.
JFrame if you want to display the same frame again.
|
|
What is a dynamic SQL query, and when would I want to use one? I'm using SQL Server 2005.
Started by Surya sasidhar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
A dynamic sql query is one that is built as the programm is running as opposed to a query.
|
|
I can delete record with this SQL clause
DELETE FROM TABLE WHERE ID = 2
Anyway i want to leave always one record if table count = 1 even if "ID=2". Thank you for help already now.
Started by Kerberos on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
one row in the table", but in practice "which row?"
Add a WHERE clause to ensure there's more than one row:
DELETE FROM TABLE WHERE ID = 2 AND (SELECT COUNT(*) FROM TABLE) > 1.
|
|
I wanted to know, while deciding which language or technology to use for implementing an idea; a design, what are the factors involved in making a decision? Specifically talking about popular scripting languages, why would one choose to use ruby over ...
Started by Chirantan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Besides any hype that one language receives and the other doesn't, I think two factors play a role: if you want to use Ruby-on-Rails (which you may have chosen for some reason), you have to use Ruby; likewise, if you want to use Django....
|
|
Lists in c# have the .toArray() function. I want the inverse, where an array is transformed into a list. I know how to create a list and loop through it but i would like a one liner to swap it back.
I am using the string.split function in the .NET 2.0...
Started by minty on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If all you need is an object that implements the IList interface... .
New List<string>(s.Split(....));
In .Net 3.5, the System.Linq namespace includes an extension method called ToList<>() .
Return new List<string>(stringArray);
string s = ...
|
|
For me, I've always wanted to finish the O'Reilly "Mastering Regular Expressions" book. When I need a Regexp, I manage to get the one I need eventually, but it takes more effort than it should.
Learning a specific technology or language always seems to...
Started by KevDog on
, 231 posts
by 222 people.
Answer Snippets (Read the full thread at stackoverflow):
Artificial on it if I want to see myself....
It's way too much to do for just one person and I don't want to end it like the hundreds of half, I manage to get the one I need eventually, but it takes more effort than it should.
|
|
Duplicate: What’s the program you’ve really wanted to write but never found the time?
Reading " What is the one programming skill you have always wanted to master but haven’t had time? ", it got me thinking about all the programming projects I wish I ...
Started by Jonathan Tran on
, 16 posts
by 16 people.
Answer Snippets (Read the full thread at stackoverflow):
The main reason I haven't.
Is the one stack I use regularly that I have yet to implement from scratch.
|