Steve Jensen's Q&A profile
Visual Studio Team System Severe Problem, Any help would be very appreciated.
After ignorantly changing the text in the TFS Work Item Tracking constants table (not the keys), basically our Team System no longer will alow for importing, exporting work items nor adding or deleting projects. The error message windows is as follows: Assertion Failed: Abort=Quite, Retry=Debug, Ignore=Continue Duplicate entries found in the meta data. There may be a duplicate live [Domain]\[Account] in the constants table. Contact Currituck Dev. at <Module>.CPSLookupMetadata<CPsLookupConstantMetaDatabyFullName,> and much more. I was wondering if anybody had experienced anything similar and how to identify the duplicate metadata. I can't seem to find anything remotely resembling a duplicate. Are there an ...Show All
Customer Care Framework Help Needed ASAP - admin console unable to connect to CCF Server the server does not exist or access is denied
Im getting this message when trying to followup the step of running the ccf admin console from the mmc, refrence to page: 43 in the deployement guide of ccf 2005 .net 2.0: admin console unable to connect to CCF Server the server does not exist or access is denied the guide states as follows: CCF 2005 .NET 2.0 Deployment Guide wrote: CCF Settings You may wish to adjust the general settings of CCF (available in the Options table of ContactCenter database) to suit the deployment environment. Follow the steps given below to do the same. Refer to Appendix – A for all available settings of CCF and their significance. Machine: CCF client machine. Login User: Member of CCFAdmins group. 1.&nbs ...Show All
Smart Device Development Set System Date in Pocket PC in C#.NET
Hi All, How can I set Pocket PC's System Date using C#.NET How to use the P/Invoke OS API like SetLocalTime() Thanks in advance. Regards, Varun ...Show All
Visual Studio Express Editions textbox in visual basic 2005
i want to fill multi row to textbox from database but when i'm trying the text fill with single row buti want it multi rows can any proffessional help me !!!!!!!!!!!!!!!!!!!!!!! Me . TextBox1 . Multiline = True Me . TextBox1 . Text = "Line1" & Environment . NewLine & "Line2" ...Show All
Visual Studio 2008 (Pre-release) GridView CellTemplate
Hello, I just started using GridView today, it is pretty cool. I have a question about the cellTemplate property of GridViewColumn class. I want to style the content of a cell (fontsize, etc.) so I use cellTemplate (I'm not sure if this is correct ). So I need to define my binding in the cellTemplate's value (a datatemplate resource). But then I would have to define a cellTemplate for each column. Is there a better way to approach this problem, so that I have one style for all my cells regardless of which column the cell belongs to Thanks Houman Yes. Define the template as a resource and then apply the resource to each of the columns using a resource expression. That would look a little someth ...Show All
Windows Forms Values dont change but.....
I have properites set up in my classes like this private bool _IsDirty = false; public int SomeProperty { get { return _SomeProperty set { if(_SomeProperty != value) { _SomeProperty = value _IsDirty = true // which mean the value has changed } } } now i have this in my form closing event because if the user changes information but tries to close the form before he clicks the save button it goes here....When the form loads it shows all the information pertaining to an object...the object properties are all binded to controls on the form so thats where the _IsDirty checks to see which ones have changed.... LoadFormToObject();// this is the binding of contro ...Show All
SQL Server Uploading SQL SERVER with remote data.
Client side: 1. my DSN is CMDB.dsn on a mapped network drive(only way for now that I get a connection) 2. My client does not fail to connect, but I am having a hard time linking my database tables to each other. Through Access 03. 3. My client is remote 4. I can ping the server, 5. but I cannot telnet 6. My application is Access 2003, 7. I am on a different domain 9. I have table names that match, 10. I do not force encryption. Server side: 1. SQL SERVER 2005 2. Standard Edition 3. TCPIP 4. The server starts fine 5. The SQL browser is enabled YES 6. Domain Account 7. Not applicable 8. NO Platform: 1. Client runs Windows XP, Server runs Windows Server 2003 My question then is this: Does anyone know of code that can be used to impor ...Show All
SQL Server Question for designing a SQL Job Admin
I want to design a login named "JobAdmin" who can add/modify/delete any SQL Agent Jobs but can't access my "db1" database. The jobs would execute some stored procedures in db1, and it could be a user "db1dbo" with db_owner role in db1 to execute the stored procedures. How could I let JobAdmin impersonate db1dbo to run these jobs Thanks in advance. Hi, Madhu, My customer used to develop their solution on tendem and this is their first time to use SQL Server. In their organization, they have different team (DB Admin Team & Job Admin Team) handle different things as I described in the requirement. Anyway, thank for your reply. ...Show All
Visual Studio 2008 (Pre-release) Using web services with xbap application
I have created an wpf browser application that relies on calling a web service. However, whenever I call the web service, I recieve a "System.Net.WebPermissions" error message. The web service is located on a different server. How do I get this to work Thank you for the help. Steve If wcf would not work, and I am getting an web.permissions error even with local asmx web services (same computer, different application directories: the xbap at http://steveppc/tstpub/tstXBAPJuneCTP.xbap , and the asmx at http://steveppc/simplews/service.asmx ). I can get away with this if I turn it into a full trust application, but then I do not know how to deploy such an xbap (everytime I publish, I receiv ...Show All
Architecture How programantically enable file sharing (or 'why doesn't snetcfg.exe work?')
Howdy, I've been trying for a while now to programatically enable file sharing on Windows XP and Windows 2000 for a local application running under a non-domain controlled network, on a computer which has never been authorized for file sharing before. It appears to me that there is no documented way to share a file or folder unless and until the user manually enables file sharing by using the file manager to either run the network setup wizard, or click the "just enable file sharing" checkbox in response to right clicking the file or folder to be shared in windows file manager and then selecting 'sharing'. According to Google anyway, the DDK sample program snetcfg is supposed to do what I want. I've compiled the DDK versio ...Show All
.NET Development Creating a subdomain
Hi Everyone I have one domain name epayroll.My url is www.epayroll.com . but i want to create a sub domain like www.epayroll.payroll1.com i dont getting any Idead how to proceed, Pls help me Out Thanks In Advance Saroj Nanda This forum is about building .NET development / diagnostic tools. It's not the right forum for that question. You could probably ask your service provider for tips. You could try asking this question on http://qna.live.com (I see some sub-domain related questions there). ...Show All
SQL Server Null / Nothing
I want to place Null / Nothing to Summa.Value...Now I have a textbox (Textbox1) which put a value to Summa.Value....How do I do that The vb code I have now: Dim Summa As New SqlParameter(" @Summa", SqlDbType.Int) Summa.Value = Textbox1.Text Command.Parameters.Add(Summa) I tried to do like this, but I didnt get it to work... Dim Summa As New SqlParameter(" @Summa", SqlDbType.Int) Summa.Value = Null Command.Parameters.Add(Summa) This should then be inserted to a sql-server database... While debugging you can use System.Diagnostics.Debug.WriteLine(Ex.ToString()) That will output the exception into the output window of VS. If you cannot run the app in the debugger use this: ...Show All
Visual Studio Team System Import schema failed with Trusworthy assemblies
Hi, I've been trying to figure this out, with no luck. I am attempting to import a database schema that uses unsafe assemblies, the database I'm importing from has the Trustworthy database option on so it's not a problem there. However when I import the database schema into my new project I get the errors stating that the create assembly failed. TSD4001: CREATE ASSEMBLY for assembly 'GlobalVariables' failed because assembly 'GlobalVariables' is not authorized for PERMISSION_SET = UNSAFE. The assembly is authorized when either of the following is true: the database owner (DBO) has UNSAFE ASSEMBLY permission and the database has the TRUSTWORTHY database property on; or the assembly is signed with a certificate or an asymmetric key t ...Show All
SQL Server combine separate date & time fields into one datetime field?
Good morning. I am importing an XLS file into one of my tables. The fields are: Date Id Time IO 12/22/2006 2 12:48:45 PM 9 12/22/2006 16 5:40:55 AM 1 12/22/2006 16 12:03:59 PM 2 When I do the import, I get the following: Date Id Time IO 12/22/2006 12:00:00AM 2 12/30/1899 12:48:45 PM 2 12/22/2006 12:00:00AM 16 12/30/1899 5:40:55 AM 1 12/22/2006 12:00:00AM 16 12/30/1899 12:03:59 PM 2 Here are my doubts: 1. Is it be better to combine the Date & Time fields into one column Advantages/Disadvantages 2. If I don't combine them, should I use varchar or datetime data type 2. What issues or problems might I have when I program SQL reports, if I leave the fi ...Show All
SQL Server TABLE ACCESS UNDER SEVER MANAGEMENT
I have created a database under sql sever management and also created all of the tables for that database. When i am in Visual basic express edition and try to bind an element on the form i am ask to add a new database resource. I give the name of the database but i am not getting the tables under that database. How can i create under sql sever management and get access to the tables for any express edition language I do not want to create tables within each express edition language. What do i have to do so the catalog will pick up the tables within sql server management Thank you for you time. I'm sorry but I don't fully understand what you want to know. You mention " ...Show All
