Software Development Network Logo
  • Windows Vista
  • Audio and Video
  • Visual C#
  • VS Team System
  • Windows Forms
  • .NET Development
  • Visual FoxPro
  • Visual Studio
  • Game Technologies
  • SQL Server
  • Microsoft ISV
  • SharePoint Products
  • IE Development
  • Visual Basic
  • Visual C++

Software Development Network >> ckob22's Q&A profile

ckob22

Member List

limon26
xshua
DEQ_Rene
LpAngelRob
MattCVT
Nobbie
Ahmad Mageed
GeoffSeattle
zenzai
TerryDaichendt
esaba.keith.cz
António Dias
jfbaro
BilalShouman
Charles Cox - MSFT
Finch82
Joakim Wennergren
Richard114
amendez
Mark Macumber
Only Title

ckob22's Q&A profile

  • Visual Studio Team System Adding to potential test results for Manual Test

    Hi there, Is it possible to add to the values for possible test results for Manual Tests Currently, there only seems to be 'Pass' or 'Fail', but I would be interested in adding another state for situations where test cases have not actually failed but have been blocked from execution by a previous failure or have exposed an issue which was not being explicitly tested. Can I do this Cheers. Clare Clare, do you ask about 2 check boxes Pass/Fail on the top of Manual Test Result window You can choose only Pass or Fail and there is no way to add other states. FYI: running Manual Test can produce state (outcome) other than Pass or Fail, for instance you can get Error when test execution got a problem. ...Show All

  • Windows Forms How to MANUALLY create a TableAdapter

    Hi, I use a VB.NET application that connects to a Web Service I made. The Web Service is responsible to collect data from an Online database and send it to the Windows application. It's also responsible to GET new data from the application and Update the Online database. The Web Service works fine. My question is in the application. I created a Dataset that GETS a dataset from the Web Service. Now I want to USE that data in the application. I am having trouble with both DataRow and TableAdapter. (I don't want to add any DataSource in my application, so I can't use any wizards. 1. I can't create a NEW DataRow. I get the following error: Dim dr As New DataRow (It tells me that it is not accessible in this context because i ...Show All

  • SQL Server Access Denied - Remote connection to SSIS

    We have 2 SQL2005 servers currently. 1 is a dev box, the other production. To grant remote access to SSIS, I added my developers to the local Distributed COM Users group and also gave them remote Access and remote Activation on the MsDtsServer component. This worked just fine. Recently we applied SP1 and the follow-on hotfixes to all SQL components. I followed the install order prescribed in the Q article and applied all component fixes. My developers are now unable to access SSIS remotely unless I add them to the local administrator's group. I don't see anywhere that a log gets generated to help me track down what's going on. Nothing shows up in my Windows security log, despite enabling audit logging on: Accout Logon Events, Logon ...Show All

  • Software Development for Windows Vista Still confused - installing machine wide data for read/write all users

    Okay guys, Where in the world am I suppose to put our shared machine wide database on VISTA so that all users can read/write to it It is just a simple Access 2000 file. It shouldn't be this hard to put a file on a computer so all users can write to it. Thats all we want to do. I posted this about 3 or 4 days ago in another forum and a user said that we should be putting the database in CSIDL_COMMON_APPDATA if we want to share it with all users. So I followed these instructions and implemented the SHGetFolderPath API and I utilized this location (which maps to c:\programdata on VISTA) to store our database in c:\programdata\[ourApplicationName] Even though my data is written to this location each user that accesses the file r ...Show All

  • Windows Forms String Function for repeating character string

    in VB6 we can use String Function for repeating character string of the length specified, what can be used in windows mobile or visual studio The String() function is still around in VB.NET. For C#, you could use this replacement: public static string FillString(char ch, int count) { StringBuilder sb = new StringBuilder(count); for (int ix = 0; ix < count; ++ix) sb.Append(ch); return sb.ToString(); } ...Show All

  • Visual C++ Visual Studio 2005 layout prob

    Hi guys   I have been trying to compile an app in Visual Studio 2005(its a c++ app) but every time i run the proggy after compiling it, it looks like this:    After Compiling(click me)     although when i click on the Test Dialog button in Visual Studio 2005 it shows the apps layout like this:    Using Test Dialog(click me)     I started the project in Visual Studio 2005 and the first time when i compiled the app after adding just a simple button ,nothing else, it worked and my app was compiled in the VS2005 format although after adding som functions and stuff it compiled in Visual C++ 6 format! Visual Studio 2005 Format: Click Here ...Show All

  • Visual Studio Express Editions How to Set WMI Namespace Security in Windows using VB.NET

    I want to set or modify the WMI security namespace so that user cannot access USB devices attached to the computer. Also to disable and enable this access. The solution should be in VB.NET or C# IamWasim, Please take a look at the following article titled WMI Namespace Security from code project in the link. This article describes WMI namespace security, and introduces code to review and modify WMI Namespace security. The code in written in C#. I believe you will get help from this article. :-) http://www.codeproject.com/cs/system/WmiSecurity.asp ...Show All

  • .NET Development tableadapter query

    I am using a dataset and tableadapter with the following query SELECT FinCustomerCode, SUM(FinCurrentP01 + FinCurrentP02 + FinCurrentP03) AS Expr1 FROM T_Financial GROUP BY FinCustomerCode HAVING (FinCustomerCode = ) How do I get the value of Expr1 The FillByCFQ was created using the designer in VS 2005 which created the following sql SELECT FinCustomerCode, SUM(FinCurrentP01 + FinCurrentP02 + FinCurrentP03) AS Expr1 FROM T_Financial GROUP BY FinCustomerCode HAVING (FinCustomerCode = ) What I want to know is how to read the value of Expr1 ...Show All

  • .NET Development XPath finds no nodes

    Hello again, I'm still having trouble getting XPath to work in my C# program. Here's my code: XMLquery = "/df:xtvd/df:schedules/df:schedule[@df:program='EP7079270103']" ; XPathDocument document = new XPathDocument ( @"..\..\zap2itxml.xml" ); XPathNavigator xpn = document.CreateNavigator(); XPathExpression query = xpn.Compile(XMLquery); XmlNamespaceManager manager = new XmlNamespaceManager (xpn.NameTable); manager.AddNamespace( "df" , "urn:TMSWebServices" ); query.SetContext(manager); XPathNodeIterator nodes = xpn.Select(query); while (nodes.MoveNext()) { XPathNavigator Nav2 = nodes.Current.Clone(); Nav2.MoveToFirstAttribute(); txtSelect. ...Show All

  • Visual Studio Express Editions were has my design page gone

    Hi folks, I have created 6 small progs in VWD three connected to Server express and other just ordinary non-data driven progs. Everything was going fine until today when I opened up the programmed to find that the pages(webform) defialuted to the code windows of each page.This is the ncase with all the programs I have developed.When I click on to the design tag nothing happens. Any suggestions. Kind Regards jim I would suggest that you ask the same question on http://forums.asp.net in the Visual Web Developer group. The group here is for install problems, for web, asp.net, and VWD you should ask your questions on the http://forums.asp.net site. ...Show All

  • Visual Studio Express Editions Chronometer!! and alarm

    Hey there, please help, I'm trying to create a chronometer within my application... I need it with this format "hh:mm:ss"... and also when it get's to 3 minutes it must display this "Succes" Now... I'm using a timer to do all this, but in order to get the time at the moment I'm using this code... Dim Timex As Integer = CInt (Format(Now, "hhmmss" )) But I think it's wrong cause when I'm going to set the ChronLabel I'm using this: ChronLabel.Text = CInt (Format(Now, "hhmmss" )) - Time so what should I do, please help!!! Here's a simple example. Public Class Form1 Dim Start As DateTime ''' <summary> ''' Set th ...Show All

  • SQL Server SSIS: error while trying to get set the table list

    i have a SSIS package on a server that transfers 4 tables from one database to another. The pakage runs fine with an admin account who is the creator of the package. The package was created and imported to the server. A non admin user, is able to connect to SSIS and browse the packages but when he runs the pakage, he gets the following error: Error: An error occured while trying to get set the table list to transfer. "An exception occured while executing a Transact SQL statement or batch." Does anyone know how to fix this Any help is appreciated. RookieDBA wrote: It is stored on sql server. this link should help: http://msdn2.microsoft.com/en-us/library/ms141053.aspx ...Show All

  • Windows Forms Windows Forms Team Needs Your Feedback!

    If you have ever come face to face with the Design-Time Error List ("One or more errors encountered while loading the designer..."), the experience has probably given you an opinion or two on how it could better help you debug your app. Now is your chance to share that opinion. Brad Abrams has posted a preview of improvements to the Design-Time Error List (a.k.a. White Screen of Darn) over on his blog: http://blogs.msdn.com/brada/archive/2007/01/16/what-is-next-for-winforms-wsod-in-orcas.aspx Head over, watch the video, and let us know what you think! Scott Morrison Program Manager .NET Client ...Show All

  • SQL Server Creating a Maintenance Plan via the Command Line

    Hello All, I've searched high and low for documentation on this to no avail. Basically my goal is to create a maintenance plan in SQLSERVER2005 via the command line. I need to create this plan in a way that it can be seen in the list of Maintenance Plans in the Management Studio Interface. I went into the SSIS designer and created my plan. I now have a DTSX file. I tried the dtutil.exe utility, however i never saw my maintenance plan in the list of plans. I ran dtutil.exe and did /FILE to /SQL but i don't see the plan listed or in a way a user could modify it, which is of the utmost importance to my clients. How do i get my file to turn into a real running Maintenance Plan that is seen in the list of Maintenance Plans via the ...Show All

  • Visual Studio Team System "Either source control has not been configured for this team project or you do not have permission to access it"

    Double-clicking "Source Control" for ProjectA pops up the following messagebox: --------------------------- Microsoft Visual Studio --------------------------- Configure Source Control Either source control has not been configured for this team project or you do not have permission to access it. Would you like to create the source control folder, $/ProjectA --------------------------- Yes No Help --------------------------- I have checked the stored procedure: exec prc_QueryItems @targetServerItem=N'$\*\',@version=1110,@deletionId=0,@depth=1,@deleted=0,@itemType=1 And indeed it does not return any row so this might explain the messagebox stating that no source control has been configured. When I click Yes ...Show All

©2008 Software Development Network