Is it possible to use Entity Framework v4.0 in a .Net 3.5 application?
I mean, can i just reference the related assemblies for EF 4.0 and use it in my .Net 3.5 application?
thanks...
I have the unicode for that char, how do I display it?
0x023D2A
textField.text = ???;
i have have the name of the character.
can I reference it by name?
Is it posible tu test a multicast application (e.g. client-server protocol) using the emulator? if so, any reference to an example? I wrote a simple client-server application and execute them on the emulator but it seems nothing is sent/received. Thanks!
I've got a Windows Service that runs BackgroundWorker's, and I'm wondering if I'm doing the right thing when I stop my Windows Service.
Is it enough to:
Let the BackgroundWorker1_DoWork method complete (I have a while loop in it now, doing some tasks)
Set the variable that holds the reference to the BackgroundWorker, to null
Is there some kind of Dispose() method I need to call (In the same way the Timer class has Timer.Dispose();)?
Our office is running two different versions of MS Office (2007 and 2010). Is there a way for me to integrate Outlook into a C# project and have it work for both versions of Outlook? I have added a reference to Microsoft Outlook 14.0 Object Library, but for users of Outlook 2007, do they require version 12.0 or will the newer version work?
How can I display a squared sign in unicode (I checked the Unicode reference and it is not there)?
Also, is it possible to use unicode to display a fraction, for example 3/4 would look as it should with the horizontal vinculum?
I do not understand what is meant by the terms "compile time" and "run time" (or "runtime").
I'm also a bit confused about what "value type" and "reference type" mean, and how they relate to the 'times mentioned above.
Would someone please explain these things?
Hi all,
Is there any tool/utility that can help me find how many NATs exist between my home machine and public Internet? Any reference to any protocols that would help me to figure this out would also be useful.
Thanks in advance,
I'm building a web app that integrates with Google Drive, and am wondering if there was a way to list, search or delete files.
I see from https://developers.google.com/drive/v1/reference/files#resource that there are 4 operations. If there are no list and search capabilities then the onus is on the app to handle the management.
Is there another API I should be using? Are those features in the works?
Someone recently asked a question about the Ghost Design Pattern - I have not seen this before.
What is the Ghost Design Pattern and how is it implemented? I can only find snippets on the web in reference to it.
What is the best way to store the cards and suits in python so that I can hold a reference to these values in another variable?
For example, if I have a list called hand (cards in players hand), how could I hold values that could refer to the names of suits and values of specific cards, and how would these names and values of suits and cards be stored?
how do i set a sql server connection to readonly? i tried googling and all i found was File Mode=Read Only but it didnt work (File Mode keyword not supported). And the reference looked sql ce specific.
No luck with sqlite Read Only=True either.
Hi,
I guess it has to do something with string being a reference type but I dont get why simply string.Replace("X","Y") does not work?
Why I need to do `string A=stringB.Replace("X","Y")
I thought it is just a method to be done on specified instance? Thanks for explanation
EDIT: Thank you so far. I extend my question Why "b+="FFF"works but the b.replace is not?
I am learning Entity framework and linq-to-entities.
It's possible to get cross values from multiple tables using JOINS (join keyword) or using the navigation fields ( associations) in which case the framework knows how to reference the cross data.
My question is what to use when?
In Visual Studio 2008 I know its possible to have one solution with two (or more) projects.
Is it possible OR How is it possible for the projects to share common class files?
For example - Project 1 has a log file handling class. Can Project 2 reference it?
My hope is to increase code re-use and avoid two copies of the same thing that need to be maintained.
The target is Winforms C# (3.5)
I was wondering how Java sorts items in the Map (HashMap or Hashtable) when they are added. Are the keys sorted by the hashcode, memory reference or by allocation precedence...?
It's because I've noticed same pairs in the Map are not always sorted in the same order
I have few lists like:
a = [1, 2, 3, 4, 5]
b = [4, 6, 5, 9, 2]
c = [4, 7, 9, 1, 2]
I want to trim all of them using a loop, instead of doing as below:
a[-2:]
b[-2:]
c[-2:]
I tried but got confused with pass by value or pass by reference fundamentals, looked into other questions as well but no help.
Thanks
Hi guys, I'm studying MEF and I'm not able to resolve a problem.
I have a main application, called MainMEF, and a simple module, called SimpleModule. This one consists of a single UserControl which is loaded dinamically.
When MainMEF starts up, I would be able to pass to the module a reference to main application contained into MainMEF.
How could I fix this? Thanks in advance.
Two questions:
1) What's the best book for learning to program in Erlang?
2) And also what's the best reference book for the proficient Erlang programmer?
Thanks guys!
Hello everyone,
I am using VSTS 2008 + C# + .Net 3.5 on Windows 7. I want to use Expression Encoder 3 to generate thumbnail image for video (wmv format) every 30 seconds -- e.g. for a 5 minutes video, there will be 10 thumbnails which reflects video at the time of 0 second, 30 second, 1 minute, 1 minute and 30 seconds, etc.
Any reference code?
thanks in advance,
George
I want to display a login view to my users if they are not logged in and the main view if they are.
In my header file I define a variable to hold the logged in status
#define loggedIn 0
I figure I should then reference this in the initWithNibName method and then decide which nib to load.
Is the right way of doing it?
If so can someone help me out with the exact code?
Thanks for any help
Much like lisp is often considered a list based programming language what languages are considered map based?
I remember reading about one a few years back, but can not longer find a reference to it. It looked something like:
[if:test then:<code> else:<more code>]
edit:
and more where quoted code blocks which would be conditional evaluated. In this fashion if/cond and others would not be special form as they are in lisp/scheme.