|
I'm currently using MSSQL Server 2000 and to design tables, create and alter stored procedures as well as manage users and permissions I'm using Query Analyzer and Enterprise Manager. I also spend an awful lot of time in Visual Studio 2008 and rather ...
Started by Jonathon Watney on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I recommend SQL Management....
Server Explorer allows you to create/modify/drop/whatever procedures, tables, views, etc, though I can't see any way to modify security settings (users, roles, etc) through the UI .
Look at the Server Explorer in Visual Studio.
|
|
I can't find a site to provide fackbook openid login.
can you see one ??
thanks
Started by zjm1126 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
But there is "Facbook connect" to connect your site and FB account
http://wiki.developers.facebook.com/index.php/Facebook_Connect
Also, checkout http://www.gigya.com/ .
Facebook is not openid provider.
|
|
We're going to be using a custom role provider with WCF. The overridden method GetRolesForUser will require the use of an already existing RoleRepository.
Now, with a run-of-the-mill class, we'd construct it using StructureMap and the RoleRepository dependency...
Answer Snippets (Read the full thread at stackoverflow):
In such situations, the ....
It sucks, but that's the way it is.
They require a default constructor and there are no hooks offered to initialize them .
The RoleProvider and related types are legacies of ASP.NET which are infamous for not being DI-friendly .
|
Ask your Facebook Friends
|
How can i access gmail emails using sinetfactory api. please provide an example
Started by S M ADIL on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
Import com.jscape.inet.imap.*; import com.jscape.inet.email.*; import com.jscape.inet.imapssl.ImapSsl; import com.jscape.inet.mime.*; import java.io.*; public class ... .
Everything is there.
Just use documentation, which is in html folder of sinetfactory .
|
|
It is unclear to me from the MSDN documentation if I should provide a deep or a shallow clone when implementing ICloneable. What is the preferred option?
Started by Jim Burger on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The actual source....
Edit: This naming convention goes beyond boundaries, its the same for .Net, Java, C++, Javascript, etc.. .
Clones are deep by default, thats the naming convention and copy constructors can be shallow if they want, for performance reasons .
|
|
I've got a list of 10000 keywords. What is an efficient search algorithm to provide auto-completion with that list?
Started by murali on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
This should be fairly efficient....
A trie: http://en.wikipedia.org/wiki/Trie gives you O(N) search time whenever you type a letter (I'm assuming you want new suggestions whenever a letter is typed) .
I think binary search works just fine for 10000 entries .
|
|
I have tp-link wireless router 192.168.10.188, i was can make it function as DHCP provider(range 192.168.10.100 to 192.168.10.109). the only thing that i cannot make it work as intended, is for it to provide different gateway (192.168.10.1), the computers...
Started by Hao on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Is there a router that can provide different gateway other than its own address? or the question should be, is the dhcp of a router can ....
Only the GUI.
Generally, a DHCP server is able to provide any IP you like as the default router.
|
|
I thought QHostAddress was it, but it strangely does not provide methods for validating whether or not the IP address is valid (anymore, got deprecated to Qt3).
Does anyone know?
Started by ShaChris23 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Stackoverflow.com/questions/2240530/does-qt-provide-a-class-that-represents-an-ip-address
You can see provide a method to
QHostAddress ( like isValid() ) that will check the host address's validity.
|
|
There are plenty of ways to provide a dynamic style/theme for a web site, but I am looking for some help on some best practices or techniques that have worked well for others.
I am creating a web site that needs to provide the ability for customers to...
Answer Snippets (Read the full thread at stackoverflow):
This approach.
I'd in the web application, so that customers can provide their own set of CSS files.
Using Themes for ASP.NET 2 and greater will provide you everything you need for this.
|
|
Does anyone know why std::queue, std::stack, and std::priority_queue don't provide a clear() member function? I have to fake one like this:
std::queue<int> q; // time passes... q = std::queue<int>(); // equivalent to clear()
IIRC, clear() ...
Started by Kristo on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
See, e.g., http://www.cplusplus.com/reference/stl are container adaptors and only provide a small number of methods to access the underlying.
( eg Dinkumware's )
Deque has clear().
Will provide.
|