hjs's Q&A profile
.NET Development Validate a password against the domains password policy
Is there a way to validate a password to find out if it is valid for the domains password policy Thanks, -Dave In order to get the best answer to your question, I suggest posting this to a forum dedicated to AD. Please see http://www.microsoft.com/community ...Show All
Visual Studio 2008 (Pre-release) How to expose an already instantiated service object in WCF
Iam trying to achieve something similar to CAO in .NET Remoting using WCF. Is there a way i can publish an already instantiated Service object I know i can expose a Singleton object like follows m_host = new ServiceHost (myService) m_host.AddServiceEndpoint( typeof ( IService ), binding, baseAddress); m_host.Open(); How can i do the same for a non-singleton Any leads is much appreciated. Also, I have made sure [ ServiceContract (Session= true )] and [ ServiceBehavior (InstanceContextMode = InstanceContextMode .PerSession)] for my Service object. Now all want is to instantiate thi ...Show All
Visual Studio Express Editions Generation of Class Diagrams
Hello all, How to generate class diagrams from VS 2005 .net for C++ project Thanks and Regards Madhu ...Show All
Visual Studio Express Editions Missing Visible property on forms
I'm new to VB. Why is the visible property missing on the forms property list I had previously formulated a reply to this but deleted it. However: For a form, the visible property at design time is unnecessary, and is meaningless. How on earth should it be used (As spotty pointed out). ...Show All
SQL Server Download Reporting Services
I have SQL Server 2000 . where I can download Reporting Services and how to install it because in microsoft.com a ll explanations are very confused. thanks You can download Evaluation Edition and SP2: SQL Server 2000 Reporting Services Evaluation Edition SQL Server 2000 Reporting Services Service Pack 2 (SP2) For SQL Server 2000 Reporting Services installation CD please contact your local Microsoft sales office ...Show All
Visual Basic How do I add to the registry?
I don't really know how else to say it, I have some registry files and i'm trying to make a program that adds what's in the files to the registry. If you simply want to run the reg file to update the registry System.Diagnostics.Process.Start( "d:\test.reg" ) Will work were d:\test.reg is you registry file. It will bring up the confirmation dialog just as though you had used regedit to import the registry file. ...Show All
Visual Studio Team System "Show Project Portal" dimmed out
It seems that I have no permission anymore after the upgrade. Can someone tell me what my IIS Directory Settings should be and what my AppPools persmissions should be Can you please share out setup logs they should be under %programfiles%\<%ProdName%>\<%ProdName%>\Logs. Also, can you do the following: 1- Go to TFSWSSAdmin appPool and verify that it is running under the tfsservice identity 2-verify that tfsservice can connect to STS_Config_TFS in the Data tier 3- verify that you can create a new TFS project Thanks, Elyasse ...Show All
Visual Studio Possible permissions issue with IIS. Using VS2005, CR 10 SDK and report located on remote server
With the following code: Dim serverName As String = "CRSERVER1" reportToView = New ReportDocument CrystalReportViewer.ReportSource = reportToView Dim mySessionMgr As SessionMgr = New SessionMgr() Dim myEnterpriseSession As EnterpriseSession = mySessionMgr.Logon( _ "ACCT" , "password" , serverName, "Enterprise" ) Dim myEnterpriseService As EnterpriseService = _ myEnterpriseSession.GetService( "InfoStore" ) Dim myInfoStore As InfoStore = New InfoStore(myEnterpriseService) Dim queryString As String = "Select SI_CUID F ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Specular reflections aren't working right
I'm having a problem with specular reflection. It flickers as I move around my object. Sometimes when I'm looking at a face, and I swivel the camera just a few degrees, I get specular reflection. When I swivel a few more, the reflection is gone - leading to the flicker. But specular reflection is only based on the position of the camera, not the direction it's looking. So it confuses me that swiveling the camera would change the specular reflection in any way, much less so drastically. Also, I find it confusing that I should see specular reflection at all ...Show All
Visual C++ IntelliSense works intermittently
I understand that c++ intellisense is poor than c#, but sometimes it simply doesn’t work. The scenario is quite simple: Edit a line and type a class object and then the -> operator. Successfully intellisense open the drop-down box and show all available members. Now go to the next line and type de same class object and intellisense is not capable to find any thing. Or at reverse situation. In first line intellisense doesn’t find anything and at the second line it finds the correct available members. And, of course, the typed stuff is correct and I strictly follow the rules given in “Troubleshooting IntelliSense in C ...Show All
Visual Studio Express Editions VB Newbie - Database Application
I'm a beginner with VB alltogether, and I'm in need of some direction please. I've worked the VB Data Access samples, but they don't provide me with the information I'm needing. I have a MDB with two tables. The City Table contains the following columns: ZipCode, CityName, State, Latitude, Longitude The FCC table contains a list of FM Antennas across the United States along with the Latitude and Longitude of each. I want my VB form to show a grid with a user input box that allows them to type in their ZipCode. The app would then show the users current City and State, and then display a list of FM Stations within ...Show All
.NET Development Online artwork design
I am developing a system which enable user to customise artwork. The tool i use is ASP.NET. I would like to know if I need a component to do that in dot net. The system accepts texts, uploaded image by user and display the result on a graphic (JPEG). Firstly user can select one of the templates and then input texts and upload image. User can change the fonts, colors, position of the text. After updating the system would show the output on graphic form. In the end, the system would generate EPS file based on the design by the user. Q1: Is there any component tat can support that Q2: Is it possible to do in ASP.NET Your advises are tr ...Show All
Smart Device Development how do i download file of internet on ppc?
Hi there~ I want to write a programe about download file with C#, and maybe the file at everywhere. I found two methods to download file of internet. (webclient and DiscoveryClientProtocol.Download) But,it can't use for PPC paltform. Have someone know how to download file of internet Please tell or supply idea to me. By kuan chu Take a look at this quick start sample: http://samples.gotdotnet.com/quickstart/CompactFramework/doc/httpgetwithproxy.aspx ...Show All
Visual Studio 2008 (Pre-release) TabControl Border problem
I'm seeing a strange border artifact when setting BorderThickness="0" ... the border is still being drawn on right and bottom sides of the control... How do I get rid of that <Grid xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " Background="sc#1, 0, 0, 0" Width="640" Height="480"> <Grid.ColumnDefinitions> <ColumnDefinition/> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition/> </Grid.RowDefinitions> <TabControl Margin="155,119,167,116" BorderThickness="0" Background="Transparent" ...Show All
.NET Development Asynchornous Socket
Hi people, I want to know what actually happens when i do this Socket.BeginListen Socket.BeginAccept Socket.BeginSend Socket.Beigin.... What is actually happening what is the difference between that and the other one Tcplistener.accept etc... Aveda, what you are asking is not a simple question that I can reply in few lines. You need to pick up a book or plough through msdn to understand what the .NET async programming really means and how it works. http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconasynchronousdesignpatternoverview.asp is a good place to start. http://www.amazon.com/exec/obidos/tg/det ...Show All
