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

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

Cyndi

Member List

Cyberflight
Arun Balakrishnan
RisTar
aquatic
MIV
kldsajlsd
Pheredia
AhXue
Xin Zhang
Recep TARAKÇIOĞLU
HerbiNZ
Michael L
Jordan Parker - MSFT
Bibi Watson
Matthew Cosner
Imran Farooqui
_howard
aaronxramirez
MauroS
PCOOPER
Only Title

Cyndi's Q&A profile

  • Visual C# Is it possible to get back my original exception (From SoapException to SqlException)

     I have winforms that accesses the data layer via web services. Exception occurred on the data access layer and I put try{}catch{} statements on the client layer(winforms) to capture the exception. The original exception type is SqlException but when the try{}catch{} on the client(winforms) captured the exception of diffent type which is SoapException. My question is can I make the SoapExcepton return to its original exception which is SqlException Palkupz, Well basically, no you can't get anything except a soap exception at the client end.  Avery's blog has some information on this topic and explanations why.  Basically ...Show All

  • Windows Forms Two-way databinding

    I was told that one of the virtues of using WindowsForms versus ASP.Net is that databinding is two-way.  That is to say that if you bind a text box to a dataset column that not only would the data flow from the dataset into the control, but when the control was changed, the dataset would be updated.  This doesn't seem to be happenin ...Show All

  • Visual Studio Which VSIP SDK should I use for VS2005 RC1?

    I've been using beta2 for a while and now need to upgrade to RC1 but I am not sure which VSIP SDK I should use I have a package and couple project wizards in my current project running beta2. Anything I should be aware of when moving to the matching SDK for RC1 I found a couple forum threads mentioning some assemblies are pulled and will be available as source code instead Is there anywhere I can get more information Thanks! Oh... I find the answer right above my thread in the forum. http://forums.microsoft.com/msdn/ShowPost.aspx PostID=92457#92457 ...Show All

  • Visual Studio Team System Visual Studio RC1 + Foundation Server Beta 3

    Hi, Can somebody clarify the following for me please. I have Foundation server Beta 3 installed on a server machine and Visual Studio Release candidate installed on a VPC on a seperate workstation. 1. Can the two interoperate OK 2. The server was created within a Domain but the workstation is standalone in a workgroup.  Will it be able to connect to the Server OK 3. I installed the team test and developer options in my Visual Studio installation do I still need to install the client from the Foundation Server CD to get connectivity I thought by installing the Team test/dev options this was the client tools. Cheers. Hi, 1. The ...Show All

  • Visual Studio Dynamically Create Links OnAttributeChange Event`s

    Is possible to Dynamically creates a Link based on OnpropertyChange Event Example.: I have a Class named TestClass and this class has a comparment called Attributes which holds several kinds of attributes. One of these kinds of attributes has a property connecting this attribute to another TestClass, so what I want is, when I select the target TestClass in the attribute, the code dynamically creates a Link between my Source TestClass to my target one. Is it possible Is not possible to create a link between a compartment attribute to a Shape, is it Thanks, Luiz Ricci First, if the relationship between th ...Show All

  • .NET Development Writing to Database

    Pardon me if this question is too basic, but I am having an issue. I have already created a form, named all my textboxes, etc.. I already have a database with a table, columns, etc.. All I want to do for now is write to the database via my form. I have gone through the SQL connection, DataAdapter, etc.. and I also added a button to the form. But I am stuck as to when I run the form, and type in some info, how do I get the information to save to the database. Thanks for any help, Chris A chris, You might find your solution here http://samples.gotdotnet.com/quickstart/howto/doc/adoplus/ExecuteCommand.aspx   ...Show All

  • Visual Studio Tools for Office Do I have VSTO?

    Hi, This is probably a silly question, but I've searched around and haven't been able to find an answer. I have both Visual Studio 2003 standard and Visual Studio 2005 pro (on separate computers). Does that mean that I already have VSTO (I haven't been able to find any evidence of it), or is it something I need to get separately If so, how do I get it (and would there be any discounts available since I already have Visual Studio as well as Office 2003 Pro) Any resources that anyone can recommend would be greatly appreciated. Thanks, Dave Unfortunately, I beleive the MSDN Professional subscription ...Show All

  • SQL Server Problem about pass a big string (over 8000 characters) to a variable nvarchar(max) in stored procedure in SQL 2005!

    Problem about pass a big string (over 8000 characters) to a variable nvarchar(max) in stored procedure in SQL 2005! I know that SQL 2005 define a new field nvarchar(max) which can stored 2G size string. I have made a stored procedure Hellocw_ImportBookmark, but when I pass a big string  to  @Insertcontent , the stored procedure can't be launch! why         ----------------------13------------------------------------- create procedure Hellocw_ImportBookmark   @userId         varchar(80),   @FolderId       varchar( ...Show All

  • Windows Forms CF FTP

    Hi,  I would like to know if exists a FTP class or program for CF.  Thanks,  Jimz It's not from windows forms, but compact framework  jimz ...Show All

  • SQL Server SQL Server 2000 and SQL Server 2005 have the different behavior

    SQL Server 2000 and SQL Server 2005 have the different behavior when they close record set earlier opened from the same client application (used ODBC or DB-Library). SQL Server 2005 sends to client a large amount of data while SQL Server 2000 does not do this. Probably these data are the rest of the result set on the SQL Server 2005, which application did not read completely. The difference in query processing can be observed if the SELECT command is used with ORDER BY data field, which is not used as a cluster index. Data table must be sufficiently large. This problem does not appear if I do not use ORDER BY or use ORDER BY data field used ...Show All

  • Visual Studio VSIP for 6.0

    Is VSIP for 6.0 is available Is it free as for .NET Hi Yorik, I'm not really familiar with Visual Assist, though I have hear good things about it in the past. I don't recall if they were in the DevPartner program back then or not. At the time, I wasn't directly involved in supporting the program. From the looks of it, they did do a nice job of it though. One thing you could potentially do to get a hint at how they did things was to check for subclassing. Just fire up a couple instances of the environment (one with VA and one without) and check the addresses of various WndProcs using SPY++. That might allow ...Show All

  • SQL Server SQL Server connection from C#/asp.net

    I have a connect string to a SQL database: “Data Source=Cats;Initial Catalog=Orders;User ID=sa;Password=sa” It connects to the database correctly. If I change the string to: “Data Source=Cats;Initial Catalog=Orders;User ID=ian;Password=ih” It will not connect. “ian” is a valid SQL login to the Cats server with the same priviledges as the SA account – I can successfully login to SQL Query Analyzer with ian/ih. I tried the same thing on a “local” SQL server database too – got the same error. Any suggestions would be appreciated! Thats not a .NET issue. YOu have to grant the rights / permissions to the database for the user. By default ...Show All

  • Software Development for Windows Vista Designer re-hosting and XAML only workflows

    I'd like to change the Designer Re- hosting example to cater for XAML only workflows. Can anyone give me any advice to get me going I have some custom root workflow activities (compiled) and have xaml workflows that use these, but when I attempt to load them into the example it doesn't even get off the ground because the WorkflowMarkupSerializer can't deserialize the xaml (returns null). I had added the assemblies etc. I have got a bit further by modifying the PerformLoad so that the serializer uses the IDesignerSerializationManager that is passed into it. This enables it to deserialize the XAML with my custom types that I added ...Show All

  • Visual Studio Date format

    I have a view which is getting updated via procedure . That view shows the header information in my report made in crystal . my client machine date format is dd/mm/yyyy in the procedure where I am updating this view I have not converted to any format. but in the report it is showing mm/dd/yyyy why is so for e.g. if entered 12/05/2006 in the report it is showing 05 Dec 2006. can anybody help me on this Urgent Su Hi, there are two things you can try. The first is to format the field in Crystal. Right click on the date field and select "Format Field". You can change the format there. The second is ...Show All

  • Visual Basic how can i disable HOOK?(in vb.net)

    hi i will have a question how can i disable or disarm HOOK (in vb.net) Please Help!!! in vb6 or c++ u can hook the api's! thats a kind of hacking(im not interested in hacking just wanna disable hooking) So how can i Disable hook ...Show All

©2008 Software Development Network