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

Software Development Network >> Marc Jacobs108426's Q&A profile

Marc Jacobs108426

Member List

WBI
GaryReynolds900
msalters
iits Stefan
Gang Xiao
HiTech2k
Roman Uvarov
Steve Nunez
Kevin C. Kelly
Dr_Who
unninxt
Jetto
Clarke Scott
draykula
Gaturam
Brian Furner
DennisF
Sagar-1
Stephen W
hz
Only Title

Marc Jacobs108426's Q&A profile

  • Windows Forms Commercial apps w/ WinForms

    Have any commercial apps been written using the .NET framework and WinForms   I'm thinking about writing an application using WinForms, but I'm not sure whether users are ready to swallow the .NET framework as part of the install.  I'm also not sure whether WinForms is ready for "prime time". Thanks. Darrin Smith We already have developed  ...Show All

  • Visual Basic dataset won't save back to database

    hi all i have created an SQL db containing 1 table within VB 2005 express. i then created a datasource to connect to the DB. A dataset was then created. i dragged the dataset onto my "Form1.vb" and bindingsource, tableadapter and binding navigator were then created. i then pressed f5 to run. I can nvavigate through the records and create new one's but when i click on the save icon and then exit, the new records are not written back to the DB. any ideas Hi I already made this experience. Problem is that datasets are copies of database files so when You press f5 to run app it does not save to the original database the records. B ...Show All

  • SQL Server Distribution Agent Error - (Multiple-step OLE DB operation generated errors....)

    Hi, I am getting the following error when i setup a pull subscription on SQL Sever 2005 RC1. The Snapshot agent and Logreader agent are running fine but when the distribution agent runs to synchronise the subscription fro the first time, the following error occur. Its something i haven't seen before. Any ideas what it could be Thanks, Priyanga             Command attempted: execute sp_server_info 18 Error messages: Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done. (Source: MSSQLS ...Show All

  • Visual Studio 2008 (Pre-release) Invalid PropertyDescriptor Value -- please help!

    I'm using the Feb CTP, and I'm trying to use a property in a trigger. Here's the specific XAML: <Window x:Class="TestThingie.Window2" xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " Title="Renamer" Height="300" Width="300" > <Window.Triggers> <Trigger Property="Test" Value="True"> <Setter Property="Window2.Background" Value="Blue" /> </Trigger> </Window.Triggers> </Window> In the codebehind I have a dependency property called 'Test'. When in the IDE I switch from XAML view to Design view, I get the ...Show All

  • Smart Device Development problems with WriteString and CStdioFile

    Hi everybody, while I am using file.WriteString(); with CStdioFile there is an error nobody can explain in other forums and discussion boards: error C2039: 'WriteString' : is not a member of 'CStdioFile' c:\...\mfc\include\afx.h(1487) : see declaration of 'CStdioFile' I don't understand because every other things works well with CStdioFile (for example Open or CFile::modeWrite etc.). I want to write in a .txt-file and don't like things like the little squares (for \n) in the text files. Now I use file.Write(); but here I have these little squares I don't want. The program I use is: embedded Visual C++ 4 SP4 for pocket pc and m ...Show All

  • Windows Forms The given datarow is not in the current DataRowCollection.

    I want to remove a row from a dataset. ds.Tables(0).Rows.Remove(dr) When remove the row, I got and error message which is "System.IndexOutOfRangeException: The given datarow is not in the current DataRowCollection." However, when I compare each column, I can find the row(dr) in the dataset(ds) and the fields are exactly the same.  Is there anyone have an idea, why&nb ...Show All

  • Visual Studio VS 2005 IDE Crashes when debugging a stored procedure/inserting breakpoint.

    Hi. I'm running the following setup: Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200) Microsoft .NET Framework Version 2.0.50727 Installed Edition: Professional Microsoft Visual Basic 2005 77626-009-0000007-41026 Microsoft Visual Basic 2005 Microsoft Visual C# 2005 77626-009-0000007-41026 Microsoft Visual C# 2005 when I try and debug a stored proc in the IDE it immediately crashes and pops up the dreaded "send an error report " dialog. Specifically, I create a new sql server proj, add a db connection, open the stored proc, set the breakpoint and it immediately crashes. If I open the ...Show All

  • SQL Server The 4000 character limit for expressions

    I am building rather large SQL statements using expressions and I am about to hit the 4000 character limit. First, what were the reasons for setting such a low limit With it in place you are forced to come up with other solutions, but perhaps that was the intention. Speaking of limits, what are the limits for storing a value in a string that is defined in a package configuration file What are the limits when creating a string within a script task and then use it to set a string variable in the package What are the limits when using a string value as an input parameter to an Execute SQL Task using OLE DB Do these differ depending on the co ...Show All

  • .NET Development Type.GetMembers() on an interface does not return members from inherited interfaces

    Consider the following: using System; using System.Reflection; public interface IBaseBlah {     string GetSuperString(); } public interface IBlah : IBaseBlah {     object DoStuff( string name); } public class Foo {     public static void Main()     {         Type t = typeof (IBlah);         foreach (MemberInfo info in t.GetMembers(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance))             Console.WriteLine(info.Name);  ...Show All

  • Visual Studio Package Load Failure

    Althogh the installation of VS 2005 completted sucessfully I constantly get the following error message: Package 'Microsoft.VisualStudio.QualityTools.TestCaseManagement, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' has failed to load properly (GUID={A9405AE6-9AC6-4F0E-A03F-7AFE45F6FCB7}). etc. What could be the cause for this message From Amit Chopra BLOG: http://blogs.msdn.com/vsdteam/archive/category/6349.aspx FAQ:I just install Beta 2 (after un-installing the previous version) ... And I get one of these these errors: "The system cannot find the path specified." or "Canno ...Show All

  • Visual C# Windows Service that watches the keyboard

    Hi there, I have a working windows application which implements a global-system-hook-class to watch the keyboard and log the pressed keys. The statistics are used for language analysis. In order to automate this process a little bit more, I want to write a windows service which does the same monitoring. I worked with servies before, but last time, I used a timer, because the service was supposed to work in a certain interval. This time, I want the service to work permanent. My windows application instanciates the globalHookClass, registers the conserning event and then listens for the keys; system wide! How can something like this b ...Show All

  • SQL Server How to setup Sharepoint Portal Server 2003 with SQL Sever 2005

    Hello, everyone I try to set up Sharepoint Portal Server 2003 in SQL Server 2005 database (on Windows 2003 Server R2). But It cannot create new portal site... the Error message told about "cannot access instance..." (in fact that I input the correct instance, user, and password)... I wanna know that How to setup it... Setapong Hi,   Read the topic Deploying Reporting Services and Windows SharePoint Services Side-by-Side in Books Online.   Andrew Watt [MVP] < Setapong@discussions.microsoft.com > wrote in message news:7f684d78- ...Show All

  • .NET Development How to retrieve info (messages) from the SQL Execution

    Hello. First, I hope I'm posting in the right forum. I'm developing av .NET application using ADO.NET. Everytime you execute SQL Queries the database returns information like "(1 row(s) affected)" etc, but I haven't found a way to get this info from the ADO.NET tools - eg. the SqlDataReader or OdbcDataReader. I need this information to get data returned by STATISTICS IO and STATISTICS TIME (ref http://www.vbcity.com/forums/topic.asp tid=29686 ) so I can make a small benchmarking app. I know about execution plans etc but these isn't realtime. Any idea how to return the text (Messages) returned from the database Thanks for an ...Show All

  • Windows Forms Exceptions at design time -> why only the message?

    Hi, You've probably seen them before. You open a form in design mode, and suddenly you see errors in the task list. The task list item only displays the Message of the exception. Is there any way to see all details of those exceptions  if you click the error, you get the code view of the form, but the cursor is on the first line, so ...Show All

  • Visual C++ The application failed to initialize properly(0xc00000fd)

    Hello, Previously we were using VS6 to build our applications. Recently we moved to VS2005. We are still using the beta. After builds when we run the application we got errors which mentioned unable to find dll entry point for some functions in msvcr80.dll. We found some old msvcr80.dll in c:\winnt\system32. The build manifest file uses 8.0.50215.4652. We replaced the dll in system 32 with 8.0.50215.44 which was available in the sdk/bin directory. Now when we run the application we get the error The application failed to initialize properly(0xc00000fd) Any clues -Ram You should be using ...Show All

©2008 Software Development Network