|
I am following http://msdn.microsoft.com/en-us/library/ms998360.aspx link to authenticate users against "active directories" and i could successfully login using this method.
Can anyone help me out how exactly can i get details of all the users displayed in my web site application when i am logged in as Administrator.
I want to display user details when the user i.e.,Administrator clicks on link say "User Details"
|
|
|
|
|
I posted this on the quick answer section, but - well - I couldn't discuss there.
I have a textbox showing the moves of a chess game. I need to prevent that someting lik "5. Ke4-e6" breaks up at the end of the line. I can use non-breaking hyphens and non-breaking spaces, but then it will still break at the dot.
So basically I want to wrap before or after the specified block, but *not* within. General wrapping should not be affected.
In HTML I'd use <nobr>5. K44-e6</nobr> and this behaviour is what I'm looking for.
I figure there must be something in RTF that gets this done...
Thanks for your help. Eiko
|
|
|
|
|
The RTB has no such formatting equivilent as far as I can find. Personally, I would probably chose to replace the RTB with a ListBox, maybe with custom painting code if there are formatting or painting requirements.
|
|
|
|
|
I've never seen that either. While I'm a big fan of ListBox, I'd go for a WebBrowser here; just create your own HTML document and show it in a WebBrowser; you can disable all user interactions through a number of boolean properties.
|
|
|
|
|
Is there anything in VB 2008 like Label control of vb6.0?
|
|
|
|
|
There are tons of examples out on the web. All you have to do is Google for "vb.net transparent label".
|
|
|
|
|
1/0 tons of thaks. 
|
|
|
|
|
Set the label's BackColor property to Transparent and you get a transparent label!
|
|
|
|
|
Hello,
In an interview asked to me that,
Tell me an real time use of an interface.
Apart from importing namespace is there any use for "Using" keyword in C#.net.
Could anybody can answer these question. I would be very thankful to you
Regards
Azeem
|
|
|
|
|
Ahamed Azeem wrote: Tell me an real time use of an interface.
The question is rather unclear; it sounds as if you're requesting for an example of an interface in a real-time environment, but I'm going to guess that you want a practical example where we use interfaces. How about IDbConnection and IDbCommand ?
Ahamed Azeem wrote: Apart from importing namespace is there any use for "Using" keyword in C#.net.
Yup, both as a naming-alias for existing namespaces, as well as defining scope for a class that implements IDisposable .
I are Troll
|
|
|
|
|
Thank your for your reply.
Why do we want to go for interfaces rather than normal method definition.
Your second answer is not clear to me. Could you pls explain more
Regards
Azeem
|
|
|
|
|
Ahamed Azeem wrote: Why do we want to go for interfaces rather than normal method definition.
Mostly to prevent thight coupling, but there may be other reasons. An interface just says how the "normal method definition" should look, it doesn't contain any implementation; that means that if a class implements an interface that you can be sure that this class has all the properties and methods that are defined within the interface.
A variable of the type IDbConnection can hold a SqlConnection or a OracleClientConnection . You could only talk to Sql Express if you used a SqlConnection variable.
There's a better explanation of that idea over here[^].
Ahamed Azeem wrote: Your second answer is not clear to me. Could you pls explain more
The first alternative usage is a namespace alias[^]. That would allow you to "rename" the namespace. This is common in Office-development to shorten the namespaces. As an example;
static class SomeClass
{
static void someMethod ()
{
System.Diagnostics.Debug.WriteLine("bla");
}
} With a namespace-alias, it would look like this;
using Diag = System.Diagnostics;
static class SomeClass
{
static void someMethod ()
{
Diag.Debug.WriteLine("bla");
}
}
The second alternative[^] use is what the "interviewer" wanted to hear, and looks like this;
using (Font font1 = new Font("Arial", 10.0f))
{
byte charset = font1.GdiCharSet;
} This ensures that IDisposable is called cleaning up the Font .
Happy Reading
|
|
|
|
|
Thanks a lot.. now i got it
Regards
Azeem
|
|
|
|
|
Ahamed Azeem wrote: real time use of an interface
This is what I can think right away:
I am owner of an application. There are two distant and independent teams which are working on it. One on UI and other on rest of the layers. Now, as an owner, what I can do is provide both the teams with a interfaces so that they can work independently and be sure of what is the middle and DB layer is going to offer and what UI is supposed to consume.
There are plenty more uses of interfaces, one being dependency injection, which you might find through google. 
|
|
|
|
|
Hi,
IMO you should buy and study a book on C# or change your career plans; those were very basic questions after all.
|
|
|
|
|
|
Dear Gentleman,
Is there any rule that basic question would not be answered..
I am very good fan of this forum.
Regards
Azeem
|
|
|
|
|
That's not the problem.
The problem is that you were interviewing for a C# job without knowing the most basic concepts of C# and OOP programming.
|
|
|
|
|
|
Ahamed Azeem wrote: for "Using"
Real time use of an interface - Late binding.
"Using" is often used to define a scope inside which an object will be garbage collected.
As suggested, you need to pick up a good C# book and read.
Me, I'm dishonest. And a dishonest man you can always trust to be dishonest. Honestly. It's the honest ones you want to watch out for...
|
|
|
|
|
|
how to create MDI form in c#.net with menus . can You Give me Example which helps me
|
|
|
|
|
See here[^].
Me, I'm dishonest. And a dishonest man you can always trust to be dishonest. Honestly. It's the honest ones you want to watch out for...
|
|
|
|
|
|
I am using the visio to design the UI, but I think that the effect is boring. Which tools are you using to design the software GUI? 
|
|
|
|
|
yu-jian wrote: I am using the visio to design the UI, but I think that the effect is boring.
That depends on what you're trying to design. Visio is used to quickly draw a screen, but it's not meant as a tool to create flashy forms - it's meant to show you where the buttons come, where the textboxes come - not how they are going to look like.
There's designers who can argue about the colors, the animations and the gradients. As a programmer, I only need to know what button where. Visio does that, and I agree that it's boring.
If you're creating an example to convince your client, then take a look at Photoshop; or XAML I are Troll
|
|
|
|
|
Why not just use the Visual Studio designer? If you're using Windows Forms (I assume this is the case since you posted in this forum), then you'll show exactly what the interface will look like. If you need to send an image to someone or use it in a presentation, just take a screenshot of the interface.
Dybs
The shout of progress is not "Eureka!" it's "Strange... that's not what i expected". - peterchen
|
|
|
|