« first day (665 days earlier)      last day (284 days later) » 
00:00 - 15:0015:00 - 23:00

12:08 AM
posted on August 10, 2012 by Scott Hanselman

At some point soon lots of people are going to start writing these epic blog posts about Visual Studio 2012. They will include LOTS of screenshots (some good and some bad), some small code samples and minimal context. I can't speak for other teams; I can only talk about what we worked on. The <AngleBrackets/> folks in Azure Platform and Tools (ASP.NET, IIS, WCF, EF, Azure much and more)

 
@Kendall Nice job got "Raynos/nadal/hamburger" banned for a month!
2
 
12:42 AM
0
A: What formatting example should replace "his suicide note" in the Markdown help?

Grixxlyprintf("So Long and thanks for all the fish!"); // see you at the end of the Universe

 
I like the challenge one
 
lol....hamburger's profile page doesn't even exist
 
No, now he is Raynos, and is banned for a month
 
damn it... been drinking cause tomorrow is my bday
1
A: What formatting example should replace "his suicide note" in the Markdown help?

Grixxlyprintf("So Long and thanks for all the fish!"); // see you at the Restaurant at the end of Universe

 
@Kendall codeformatter.blogspot.com works much better for me
 
12:46 AM
The ban should be longer...
 
They should allow room owners to ban people from the room. Let him use SO as a resource but don't F'up the chat rooms that some of use
 
Yeah
 
Sorry... my Birthday is tomorrow and I've started celebrating early... drinking and reading a C# book... does that make me a geek?
 
No.... yes
 
12:49 AM
One day I'm going to know enough to be a chat owner... some day
@Outlaw Have you read any of the Douglas Adams books?
 
Yeah, I am currently working on So long and thanks for all the fish
 
Douglas Adams should be a mandatory read for everyone. They may be fiction but they teach so much.
 
Yeah, they are deep and funny
 
1:06 AM
 
I thought that was a pretty good film
 
It wasn't as good as the book
 
Inception was a book
 
Never read it
 
1:16 AM
I will star, and maybe pin later :)
 
1:34 AM
@Travis Dang I can't beat your score.
Anyone ever use glade before?
 
2:11 AM
hi guys
nadal got banned?
 
2:57 AM
room topic changed to C#: This is not the chatroom you are looking for. *waves hand [.net] [asp.net] [asp.net-mvc] [c#] [entity-framework] [linq] [visual-studio] [wcf] [wpf]*
 
3:28 AM
Hey, say I have a class, Pet, that has a public int maxHP = 100;, how do I get it so I can do something like public int currentHP = maxHP; without errors?
seems like one way to solve it is making maxHP static, but wouldn't that mean that it'd be a shared value across all instances of Pet?
I don't want maxHP to be a const because then I wouldn't be able to change it.
 
3:51 AM
Seems like I've got it working a bit, I've got the maxHP set in the class declaration, but I've got the currentHP set in the constructor.
 
4:06 AM
Unrelated question, how long do your builds take to compile? My program is only maybe 1k lines, so it's less than 2 seconds. Just wondering how long I have to look forward to waiting in the distant future
 
I have projects that are 100K lines and they compile in just a couple seconds.
Compile times generally increase as the number of projects in your solution increases, along with lines of code and complexity.
And of course, hardware.. memory, etc.
 
@DavidAnderson Oh, here I was worried that it'll take minutes or even longer
 
Nah. Compiler is pretty efficient
 
Hey hello :)
have a tiny doubt
May I?
 
Hey.
Sure.
 
4:21 AM
Okay here it is
I have a table with few NULL fields.. And I have created a stored procedure
Now..
When I enter values in the controls in the web form, I need to type in values in all the fields
Or else, I get an error saying- "Error converting data type nvarchar to numeric."
 
Are you using DataGrid?
 
How do I do that in Stored Proc?
No.. ADO.NET
Just to insert values into DB.
any solutions @DavidAnderson ?
 
I'm not sure without seeing the client code, I'm not "too" familiar with stored procedures since I never use them. You should be able to pass NULL though, so it sounds like a client issue to me
 
I entered similar values in the 'all' the controls. And it is getting inserted..
But when I skipped one or 2 fields it raises an error as I'd posted before..
 
What webform controls are you using?
 
4:32 AM
ASP.NET web forms
I am not able to post questions on stackoverflow.. How'd I get back that feature for myself?
 
I know that part, but what actual controls are you entering data into.. TextBox's? GridView? DataGrid? Also can you show the client code that actually executes the stored procedure?
 
Just TextBoxes and a DropDownList..
 
Okay, can you paste the code that executes the stored procedure?
 
Alright.. Here it is
Create PROCEDURE sp_Clientdetails(
@ClientName varchar(50),

@Addressline1 varchar(50),
@Addressline2 varchar(50),
@CityID INT,

@Firstname varchar(50),
@LastName varchar(50),
@Middlename varchar(50),
@Mob1 numeric(10,0),
@Mob2 numeric(10,0),
@Email1 varchar(50),
@Email2 varchar(50),
@phone varchar(50),
@Extention INT
)
AS
DECLARE @AddressID int, @ClientID int, @POCID int;

Set NOCOUNT OFF

BEGIN TRANSACTION

INSERT INTO dbo.Contact(Addressline1, Addressline2, CityID) VALUES
(@Addressline1, @Addressline2, @CityID);
Oops I am back.. Internet problems..
@DavidAnderson ?? U der? :)
 
I am, still looking at your stored procedure in SSMS
 
4:39 AM
Oh alright..
 
Which fields are supposed to allow NULL?
 
MiddleName, Mob2, Addressline2, phone, extention
 
Pretty sure you are forgetting to specify that they can be null.
eg. @MiddleName varchar(50) NULL,
 
Can I specify NULL in Stored Proc?
I think I got solution
@MiddleName varchar(50) = NULL,
 
`USE [Northwind]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[sp_CreateEmployee]

@Id int,
@FirstName nvarchar(50),
@LastName nvarchar(50),
@Email nvarchar(50) = NULL

AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;

-- Insert statements for procedure here
INSERT INTO [dbo].[Employees] (FirstName, LastName, Email) VALUES ('test', 'test', NULL)
END`
^ Example.
If you're still getting the error, then there is a problem with the client code that executes the procedure (eg. your web form).
 
4:56 AM
Thanks.. I do think its the web form problem..
Is there any need to convert the TextBox values to INT for fields with numeric and INT ??
 
Oh
Yes, sorry. It's trying to insert a character instead of an integer.
btw are you Girish Gangadharan who backed FaultTrack @kickstarter?
 
Okay I debugged the code and getting error on "Extention field" that is INT as---
"Input string was not in a correct format."
@DavidAnderson Oops.. I'm afraid I'm not that Girish :)
 
What was the data you entered into the textbox?
Well hey @Girish, good luck. I have to run, if you get a chance check out my software @kickstarter, it's a bug tracker for .NET developers like yourself, but we only have 11 days left.
http://www.kickstarter.com/projects/dcomproductions/faulttrack-a-modern-desktop-bug-tracker-for-net-de
 
 
2 hours later…
7:08 AM
can we call a webservice method from server side
 
'two models one view' is that the programming version of two girls and a cup? If so, I don't want to see that code. Some things can not be unseen...
 
Hi, I'm hoping you guys can help me with this
http://stackoverflow.com/questions/11883342/wsdl-php-function-returns-null-while-other-function-returns-expected-result
 
8:02 AM
anybody here?
@AmazingDreams ?
 
yeah
I know it's more PHP ish but C# people tend to use webservices more frequently
plus I'm going to use this webservice from a C# app
@Girish
Seriously I'm stuck with my entire project
on WSLD since say last week friday
*WSDL
Okay I just had a breakthrough in debugging my issue. Only the first function defined in the <wsdl:binding></wsdl:binding> is working.
So I guess the problem lies there
could someone look at my updated question: http://stackoverflow.com/questions/11883342/wsdl-php-function-returns-null-while-other-function-returns-expected-result
 
8:23 AM
hi guys
 
any one does Silverlight?
 
Nope
but I am always willing to try to help
 
0
Q: Textbox focus and SIP keyboard

AmitdI have a user control (one text box and a horizontal list box) as shown below. I need to append list's selected item's content in the text box without the textbox losing focus and the SIP is showing ..Currently whenever i click the listbox item, the keyboard loses focus and SIP is hidden.(shown i...

thx
 
Sorry I don't know
silverlight specific I thnik
also not a mobile phone dev
 
8:27 AM
its ok
 
you know anything about WSDL?
 
@AmazingDreams thats a long question u have
jst reading it
 
yeah
it's a long problem, been struggling with WSDL for a week
 
r u trying to expose php webservice?
 
8:32 AM
not that i know much of php but let me search a bit
 
Yeah it's not really due to the PHP
 
PHP merely defines the functions
stand-alone the functions work correctly
just called through the webservice they return NULL
 
17
Q: How to easily consume a web service from PHP

EdoIs there a tool for PHP which can generate code for consuming a web service based on its WSDL? Something comparable to clicking "Add Web Reference" in Visual Studio or the Eclypse plugin which does the same thing for Java.

 
except for the first function defined in PHP
I think I already googled everything with web-service or WSDL or whatever :P
thanks though
 
8:35 AM
ah ok
 
I'm going to try the following
 
you must pin point the question
 
<wsdl:service name="WeGotchaService">
<wsdl:port name="WeGotchaPort" binding="tns:DataBinding">
<soap:address location="http://localhost/weGotcha/servicehandler/servicehandler.php"/>
</wsdl:port>
</wsdl:service>
 
if its too long its hard to understand
 
I'm gonna write a seperate port for each function
yeah I know, but I had no idea where the error is coming from
and write seperate bindings for each function
 
8:38 AM
go step by step and remove one working part at a time
that way u will be able to isolate things
 
yeah
the problem is that the port and the binding hang together
I can only bind one port to one binding
impossible
operation 'getAllPersoonData' (portType 'DataPort') was not resolved in binding 'getAllLessenDataBinding'!
I'm not also gonna write seperate porttypes for them
Well I gotta go
thanks for looking at my issue :)
cya ;)
 
9:24 AM
morning
 
 
2 hours later…
11:04 AM
0o
 
11:16 AM
anyone out there ?
 
anyone about who is familar with mapping a class to filedialog
 
im no expert but im intrigued by "mapping a class to filedialog"
 
im stuck with this line
System.Windows.Forms.DialogResult browserResult = browserWindow.ShowDialog();
im stuck with the ShowDialog() method
 
in what way are you stuck?
throwing an error?
 
well what would it be. no errors im stuck before that
 
11:24 AM
what would what be?
do you mean what would the dialogresult be?
 
//Display browser window.
System.Windows.Forms.DialogResult browserResult = browserWindow.ShowDialog();

//Set file path.
if (browserResult == DialogResult.OK)
{
return browserWindow.FileName;
}
else
{
return null;
}
im just not sure how to set things up thats all
should browserResult be a property or not
brb lunch
 
ShowDialog returns a Nullable bool
 
its been a while but i think it returns a dialogresult in winforms
 
Is this Winforms?
 
i was assuming so
he said there where no errors
 
11:34 AM
It returns a DialogResult..
@HansRudel Try if(browserResult.OK == DialogResult.OK)
 
ermm
shouldnt that be (browserWindow.ShowDialog() == Dialogresult.ok)
 
?
ShowDialog returns a DialogResult. browserResult is a DialogResult
I could be wrong..
 
but in that case browserResult is a value of Dialogresult
so browserResult == Dialogresult.ok is correct
 
Yes that's right.
I just looked at the example.
In enums, are the values the type of the Enum?
For example:
enum Person
{
  Joe,
  Joey
}
Is Joe of type Person?
 
give me 2 seconds ill just have a look.. as i said im no expert, but in an enum Joe = 1, Joey = 2. even when not written int values are assigned as far as im aware... ill just do a typeof on an enum and see what i get
 
11:45 AM
It is of type Person.. I wonder how the comparison works
Maybe it checks the int assigned to that value
 
ive never really thought about the internals of an enum before hmm
 
In Hans Rudel example, It returns a DialogResult, but how does it distinguish OK, Yes etc.. they are all DialogResult :(
That's why I got confused
 
i can only assume that when you add items to an enum like your example enum Person
{
Joe,
Joey
}
they get added as an array of value pairs
one being the name and the other the int value
 
Maybe..
 
internally it must have some form of selected value, like a list
 
11:51 AM
I don't have a better idea lol
 
lol now im all confused lol
 
Why?
 
trying to work out how (person p = person.joe)
 
Yeah me too lol
Probably a key value pair as you said
 
how can p be a type of person though
 
11:56 AM
Or do you mean how can Joe be of type Person?
 
hold on google to the rescue hopefully
 
Or Roel :)
 
haha
 
We are wondering how Enums work
 
11:58 AM
It's basically a textual representation of a numeric value.
enum Options : byte { OptionOne = 0, OptionTwo, OptionThree };
Now if you use Options.OptionOne you basically set 0
 
set or get?
 
"Now if you use Options.OptionOne you basically set 0"
Set or get 0?
Oh, sorry.
And the rest get set to 1,2..
 
but on the enum itself you can type Option.OptionOne on the resulting value you cant, how does optionOne show as a value/property/function what ever it is??
 
Confusing alright..
Options options = Options.OptionOne.
Why can't we do options.OptionTwo? LOL
 
12:07 PM
You should see an enumerator as a convenient tool to save numeric values and compare them with a textual representation of that value.
It doesn't have a getter/setter/methods or anything, it's just a value.
This is confusing: if ( value == 1 || value == 23 ) {
This is the same, but not confusing: if ( value == Weapons.OneHanded || value == Weapons.Bow )
You can cast between a value and an enumerator as well, as such:
byte value = 1; Weapons MyWeaponEnumerator = (Weapons) value;
Or vice versa:
byte value = (byte)Weapons.Bow;
It's a convenience tool, nothing more, nothing less.
 
I understand what you mean.
But is Bow of type Weapons?
 
enum Weapons { OneHanded, TwoHanded, Bow, Axe, Spear, Crossbow };
as an example.
So for convenience sake I can use Weapons.OneHanded now.
 
I know, it is tells the developer and myself what the values mean
As opposed to using 1,23,5? Wtf are those numbers? :S
But that's not my question
 
I made the numbers up >_>
 
im so dumb person is a type of enum the result is a type of person
 
12:21 PM
@RoelvanUden I know ha ha
 
Derrr all makes sence now lol
 
Person is a type of enum, but also the values are a type of enum.
But you can't do Joey.Joe lol. Although that doesn't make sense.
 
no the values are type of person which is an enum
 
Person person = Person.Joey;
person.Joey
person.Joe
 
i can only assume that Person.joey is a naming convention that means Enum<Person>.Joey, that creates an instance of Person with the value of Joey...im probably way off but that seems to make sence to me
but anyways back to the original question from Hans..
this seems ok //Display browser window.
System.Windows.Forms.DialogResult browserResult = browserWindow.ShowDialog();

//Set file path.
if (browserResult == DialogResult.OK)
{
return browserWindow.FileName;
}
else
{
return null;
}
 
12:36 PM
What about it?
 
oh his original question was should browserResult be a property, i cant see any harm in it, he could cut out the middle man and do if (browserWindow.ShowDialog() == Dialogresult.ok) , but the garbage collector will get rid of browserresult fast enough
 
A local variable sounds fine
 
we sort of shot off on an enum tangent so i thought it only polite to give an actual answer
and talking of being polite how is everyone today
 
 
1 hour later…
2:21 PM
@KendallFrey lol
@E.LDunn got it sorte, i just kept that line as it was n transfered it into a dif method
 
glad you are all sorted
 
I am OrderBy'ed. ;)
 
?
Oh lol
Btw, Kendall E.L Dunn has it all figured out, but I am dumber ha ha
Did you read the earlier conversation?
 
If u have 2 classes (UserInterface and MainPresenter) UserInterface implement an Interface IUserInterface, which has a property in it. You inject IUserInterface into MainPresenter and change the value of that property, should you not be able to access the new value of that property in the UserInterface class?
since it actually has the implementation of that property?
 
Yes, why?
 
2:26 PM
its not working
lol
 
Are you sure it is the same UserInterface object and not a new or different instance?
 
Show some code.
 
Its alot of code
@LewsTherin yeah im pretty sure its the same instance
 
Show the relevant part.
 
Show a simple example.
 
2:28 PM
ill trim it down, give me a min
 
:O over 10,000 rep ken == stackoverflow.God
 
@KendallFrey
internal enum Person
{
Joe,
Joey
}
Are Joe and Joey of type Person?
@E.LDunn What about Jon Skeet? What is he?
 
Yes.
Think of them as public readonly fields or constants.
public static const Person Joe;
 
Person person = Person.Joe ;
Why can't I do person.Joey? Even though it doesn't make sense
Nah, still don't get it
 
person doesn't have a Joey. Person does, but person doesn't.
Joe is a Person. Joey is a Person. But Persons don't have Persons themselves.
Confused yet?
 
2:35 PM
       internal class Person
        {
            public Person Joey;
            public Person Joe;
        }
 Person person = new Person().Joe;
            person.Joe
Lol
I'm over thinking this.
@KendallFrey More confused
 
Enum member are basically static properties/fields
 
and Program.cs is as follows
    static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            var browser = new BrowserWindow();

            var userInterface = new UserInterface();
            var presenter = new MainPresenter(userInterface, browser);

            Application.Run(userInterface);
        }
 
@HansRudel Use gist.github.com. It supports multiple files, and is integrated in the chat.
 
ill repost, give me 30sec
 
2:37 PM
@KendallFrey Yes. Is it ok to think of them as member fields?
 
Not sure what you mean. Fields are members.
 
@HansRudel It looks fine. Weird why it doesn't work.
 
No syntax highlighting?
 
bollox
 
2:40 PM
Forgot to turn it on.
 
@HansRudel Ha ha where did you learn that from?
 
@HansRudel Where are you getting unexpected results?
 
It wont let me fill in the "name this file" and still have c# selected
@KendallFrey in MainPresenter
    private void SelectCsvFilePath(object sender, EventArgs e)
    {
       _view.CsvFilePath = GetFilePath();
    }
 
Make it a .cs file
 
@HansRudel But you are never raising the event?
 
2:45 PM
In UserInterface
 
What he said. You never fire the event.
 
private void btnSelectErrorLogFilePath_Click(object sender, EventArgs e)
{
    if (SelectCsvFilePath != null)
    {
        SelectCsvFilePath(sender, e);
        txtErrorLogFilePath.Text = ErrorLogFilePath;
    }
}
thats in the UserInterface
is that not raising the SelectCsvFilePath event
?
 
I don't see it in there.
You seem to have your error log and csv path stuff switched around.
 
balls, i left the error one in instead
2 sec, ill edit it
sorry
done
so the call through from UserInterface to MainPresenter works.
MainPresenters GetFilePath() gets called
 
Did you set breakpoints to be sure everything is running correctly?
 
2:51 PM
but when it comes to assign the value to the property in the interface it doesnt
@KendallFrey yeah
 
You still have ErrorLogFilePath and CSVFilePath mixed up.
 
@KendallFrey dude u the man
cheers bro
 
@Hans What would you do if I copyrighted all of your code
 
must have had a Sazzz-Attack
 
@Kendall You unpinned
 
2:54 PM
That I did.
 
@OutlawLemur meaning what?
 
@Hans I stole your code and sell it back to you for $100
 
good luck i guess. I dont think id need to buy it back
 
2:55 PM
@OutlawLemur its not that fancy. U can use it if u really want to. + still lost regarding the whole copyright thing
 
It is gonna be a close one!!
That takes all of the fun out of it :(
 
sure Kendall has some better code than i
some is probably an understatement
 
Time to make a new blog post!
 
can you make it about rebinding
 
Why? I never use that
 
2:58 PM
@OutlawLemur "Outlaws method of stealing code n trying to selling it back to the person who wrote it"??
;)
 
I know I had some genius idea this morning of what to make it about, but I forgot :(
 
I heard a pretty good story of someone that hacked a company's server, deleted their backups, encrypted their data, and demanded a ransom.
 
Haha
 
00:00 - 15:0015:00 - 23:00

« first day (665 days earlier)      last day (284 days later) »