Software Development Network Logo
  • Windows Forms
  • .NET Development
  • Windows Live
  • Visual Basic
  • Visual C#
  • Visual Studio
  • VS Express Editions
  • Smart Device
  • Visual J#
  • VS Team System
  • Visual C++
  • Visual FoxPro
  • Game Technologies
  • Microsoft ISV
  • SQL Server

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

cicorias

Member List

Matthew Trunnell
jvds
David mcCabe
BillWert - MSFT
anshumanoz
TCDooM
Scott01
Rashin
Galen Murdock
Soren Mondrup
Knoen
mohmsdn
talia
NicksterFL
hcoloc
Alasdair Anderson
nelson br
BramSWA
Goh Siang Hwee
RESAT
Only Title

cicorias's Q&A profile

  • SQL Server Problem with valid owner

    I have just downloaded the MS SQL Server Management Studio Express, and are following a tutorial on www.learnvisualstudio.net Now I am having trouble with some owner information. The message says : "Database diagram support objects cannot be installed because this database does not have a valid owner. To continue, first use the Files page of the Database Properties dialog box or the ALTER AUTORIZATION statement to set the database owner to a valid login, then add the database diagram support objects" I should mention that my WIN XP username is "Bjorn" with the Norwegian letter "O" in the middle. I susp ...Show All

  • Visual C# How to write 3-Tier Application using c# windows Application with MS SQL Server 2000?.

    Hi , I am new to .Net . Please help me .. How to do 3-Tier Application using c# windows Application with MS SQL Server. Thanks..... That's a bit of a massive question. Which part are you having trouble with Are you new to programming overall Have you written n-tiered apps before You need to define where you are coming from and ask more specific questions if you want a meaningful answer. The web also abounds with info on this, certainly at the broad level that you've posed the question. ...Show All

  • .NET Development Populate DataSet from CSV

    Hi there! I'm trying to populate a DataSet from a CSV-File. The CSV-File looks like: "Name";"Given name";"Department";"E-Mail";"Telephone" "Test";"Test";"Dep 1";" Test@Test.com";"+49  555 555 555" And my Code looks like this: string  strConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + System.IO.Path.GetDirectoryName(strFileName) +";" + "Extended Properties=\"Text;HDR=YES;FMT=Delimited\"";   System.Data.OleDb.OleDbConnection conText =  new  System.Data.OleDb.OleDbConnection(strConnectionString); new  System.Data.OleDb.OleDbData ...Show All

  • Visual Studio Team System AT for Team 1 on same machine as DT for team 2

    Another wierd configuration question:  I have a machine that's currently hosting the DT for a TFS installation.  I'd like to install the AT on that machine, pointing at another machine for the new DT. I have three machines: S1 - AT (machine is flakey) S2 - DT S3 - unused I'd like to end up with the configuration S1 - unused S2 - AT S3 - DT So, can I install the AT on my current DT machine (S2), pointing at my new DT machine (S3) and have both TFS installations working at the same time   I would then finish-up by uninstalling the AT from S1 and the DT from S2.   I gave up and just d ...Show All

  • Visual Studio Package Load Failure - VS 2005 Final Release

    I just installed the VS 2005 final on a machine that has had no beta software installed on it (just the prior version of VS 2003 - which i removed before installing 2005) and when i started it i get errors about "Package Load Failure" or the "visual studio common ide package".  I've found some post about this proble in beta 2 and they seem related to not uninstalling the previous beta correctly... but i am installing this brand new... why would i be getting this error.  I am not sure why you are getting this error. Can you provide the details of which package GUID is complaining Also, does the IDE ...Show All

  • SQL Server prompting for date range parameters with Report Builder?

    Hello, I am trying to create a report using Report Builder (not Report Designer) that prompts the user for a Date range to filter on.  The problem is that once I change the filter to be a "From...To" parameter, it removes the "promptable" green question mark icon from the filter condition.  I can't click on the field and get the "Prompt" option either.  I only see "Edit As Formula" and "Remove Condition" in the context menu when I set the date filter to a "From...To" filter.  Is this a limitation in Report Builder I have found that by using both the "On or After" And "On or Before" I can mimick this functionality, ...Show All

  • Visual C# Unnecessary Namespace in Designer code

    I have a C# project which includes a dataset.xsd. I have placed an instance of the dataset on the form design view. The designer code which allocates the instance always qualifies the dataset type name with the namespace, which causes a compile failure as the form's InitialiseComponents is in the same namespace - it looks for a nested name. I can get a clean build by removing the namespace qualification from the assignment obj = new NAMESPACE.class; but of course it is re-generated anytime the design view is edited. What is the fix Regards Can you post the namespace name of your form, the data set name, the namespace ...Show All

  • Windows Forms Unicode characters 1xxxx

    Researching ways to display characters I could easily display unicode characters with 16 bit codes, beyond that these characters seem only be available as string literals (according to the msdn-help, though samples aren't illustrative) I suppose "\U00014D00" to give me the intended character, however I want to so this programmatically and filling the string with the& ...Show All

  • Visual Studio Team System Unit test runs fine on TFS machine but fails on Remote Build Server

    If I launch my Build Type on the machine that has TFS it runs with no issues but once I specify a remote build server it fails running the tests. There's only one test configured in the specified test list: <TestingArgs>/testmetadata:$(SolutionRoot)\MySolution\MySolution.vsmdi /testlist:MyBLLTests</TestingArgs>   Any help will be appreciated... Target "Test" in project "TeamBuild.proj" Using "TestToolsTask" task from assembly "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\Microsoft.VisualStudio.QualityTools.MSBuildTasks.dll". Task "TestToolsTask" Loading c:\TeamBuilds\.......\MySoluti ...Show All

  • SQL Server Can't find microsoft.sqlserver.execpackagetaskwrap.dll in Sept CTP

    I'm trying to find the following reference for a VS2005 C# project but can't see to locate it on two of my machines which uses Sept CTP install (Ent & Dev) both with SQL2K already installed: Namespace: Microsoft.SqlServer.Dts.Tasks.ExecutePackageTask Assembly: Microsoft.SqlServer.ExecPackageTaskWrap (in microsoft.sqlserver.execpackagetaskwrap.dll) The only thing that I can find is ..\Program Files\Microsoft SQL Server\90\DTS\Binn\ExecPackageTask.dll Is that the same thing or am I missing something Thanks. Try this:    Right click References --> Add Reference in your C# project & ...Show All

  • Visual Basic How to set combo.text after form load

    I want to set a default value for a combobox and then call a form modally . frmTest.mycombo.text="Test Value" frmTest.ShowDialog the problem is that the form_load is done after I set the combobox value and overwrites what I set the combo text to. How can I force the form_load and then update the combobox text value Dean Dim F as New frmTest F.mycombo.text="Test Value" F.ShowDialog ...Show All

  • Visual Basic Debugging

    I am in the process of debugging a web service on my local host. Is there a way for me to see my web service function code as I debug my windows form vb application. Thanks, Fred Herring You can add the web service & the windows form app to the same solution. From the form app, add a web ref to the web service using the " Web services in this solution " option, then you can step through from the form to the web service no prob. Otherwise, you need to enable debugging or something on the web service, and I'm not sure how to do that ...Show All

  • Visual Studio Express Editions Finding the highest integer in a set of numbers or string of numbers

    Hello, I have an xml file containing a number of news items each with a unique id field. What i'm trying to do is finish off my add news procedure. So far it creates the new item fine, all that remains is to get the program to make the variable, for the id) one higher than the biggest id already in the xml file. I'll try to explain: xml file has many items e.g.: <item id="4"> <item id="8"> <item id="9"> etc. and i can get those id's and put them in a long string like this: |4||8||9| (The |'s are to separate the numbers up so you don't get 148921, because from this my program wouldn't be able to tell the ...Show All

  • Visual FoxPro only VFP can control VFP

    is there a posibility that we can open a VFP appilication at a remote location without using any 3rd party software like pcanywhere .  Example...I am at the server and want to re-open a VFP client application which is closed by the user at the client PC.  i am using winsock for the communication between my VFP server applic. and VFP client applic.  pc How could we do that Is anybody has an idea ... Because I want my VFP Applic. contolled only by VFP. Thanks for any help Madix T. Hi Madix, does this work for you - if you just run it locally (Remember to changed the time....) Go to DOS and key in :- schtask ...Show All

  • Smart Device Development BaterryLife

    Dear all vb.net developer How can display the current batery life in the windows form what control should i use Take a look at the batteryLife control in the OpenNETCF Smart Device Framework 2.0. www.opennetcf.org/sdf2 ...Show All

©2008 Software Development Network