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

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

Franco22

Member List

Shreyas Ranade (MSFT)
JoelMags
Chuck in Phoenix
nnnnnpatel
kwigibo
Amardeep
svas
frenzycapri
Jeffrey Irish
thiszhw
Jason Lind
V.B.Balagoudar
Jcking
Phillip M. Hoff
CodeIsGod
Steve Austin
Parakooper
jreihsen
JonGrigg
TychoCaine
Only Title

Franco22's Q&A profile

  • Smart Device Development After installing final VS 2005 (MSDN) can't see the designer

    Hello fellow developers, I don't know if someone had the same problem but I hope that someone could help me with this issue. Until yestarday I had installed on my computer the RTM version of Visual Studio 2005 and yestarday I uninstalled everything (using the tool for the pre-rtm uninstall that worked fine and uninstalled absolute everything) and I install the final MSDN version of Visual Studio 2005. So far, so good. BUT when I tryied to create a new project for Compact Framework (both Windows Mobile 2003 and Windows Mobile 5), I can't see my current window in design mode. I mean, I see a gray form on which it's applied a menu shortcut (l ...Show All

  • Visual Studio Dynamic connection and typed dataset

    Dear All, I am new to the VS.NET 2005 reporting. I am trying to develop the windows application in C# and I would like use the reporting control. 1- I need to create a database connection 2- Create a typed-dataset and drop the fields from the typed dataset into the report designer. 3- I create a new window form application with the report viewer control on the top of it and the newly created report is bound to the control. What I want to do is that: 1- I would like to deploy the application to client machine so that the report should use the same connection string in app.config as the windows application. I would not like t ...Show All

  • Visual Studio Manual creation of msbuild files hard using Microsoft provided schema

    Hi, msbuild appears to be quite a nice tool and a decent replacement for nant. However, some things are a bit weird and/or hard to do. A few things that bother me at the moment are: it's hard/impossible to delete file(s) using wildcards - the "Delete" task will always blindly interpret the contents of "Files" attribute as exact file name; it appears that this could be solved by using "FindUnderFolder" task, but if that's the way to go it is unnecessary (IMHO) complicated "Files" attribute of "Delete" task is supposed to accept an array of Strings, but I am unable to make this work - only one file name is accepted and interpreted corr ...Show All

  • SQL Server Can't Edit Table

    Hello, I'm an undergrad who is using SQL Server 2005 for the first time. I have a table Components where there are three columns, ID, Name and Value, where ID and name are the composite key. I have entered some data into it from the user interface and it is entered just fine. But when I try to edit data in Value column it can't be done. This error message comes... "No Row was updated The Data in Row 7 was not committed Error source: Microsoft.VisualStudio.DataTools Error Message: The Row value(s) updated or deleted either do not make the row unique or they alter multiple rows(3 rows). Correct the errors and retry or press Esc to c ...Show All

  • Visual Studio Team System Shipping Beta 2

    There's been a rash of speculation  as of late that Beta 2 has "slipped" to April [ Microsoft Visual Studio 2005 beta 2 delayed ]. As you can read in this post from the Developer Division Release Team [ In the Home Stretch... ], we still plan to ship Beta 2 by the end of March. That has been the plan-of-record for months. Because it takes time to move from shipped bits to downloadable bits , Beta 2 will probably be available for download during the first week or so of April. The Beta Experience is a campaign being run by the local Microsoft subsidiaries in EMEA. Expect to see Beta 2 released on MSDN and available for o ...Show All

  • SQL Server Creating DTS

    Is there a way to create a DTS(Data transformation services) from Windows application And how can I send parameters to DTS from my CSharp Code Thanks Are you really asking about DTS for SQL Server 2000 My confusion arises because this is a forum for SSIS and not DTS, the title indicates that. How is this DLL expected to work with DTS What is it If you downloaded the DLL from SQLDTS, what DLL is that from the site ...Show All

  • SQL Server Debugging in SSIS - Immediate and Command windows

    Hi everyone, I am having a difficult time debugging a package that I'm working on. I read in BOL that the immediate window should be an option during debugging but I can't find it anywhere(nor can I enable it), and I was planning on using it to access an oledb source property that is using an expression. Is the command window the same as immediate I didn't orignally think so but I'm not sure. What is the syntax to use for this once I find it Thanks, Adrian You can't access runtime values of an oledb source property but you can see what data going downstream using visualizers. Command window isn't suppo ...Show All

  • SQL Server Include manual inputs

    Is there a way to allow a user to manually input values in one of the columns in my report and then also allow other columns to rely on that value in their calculations I'm trying to keep away from having to create a web interface for th is....I may have no choice in the matter but was hoping SSRS 2005 would have an open column param or something that would somehow allow this inline inputting of values for a column...maybe when you load the report, initially it doesn't load all the way and that it only loads the input columns.  Then when the user is done, the report loads the rest of the columns since they use the input column in som ...Show All

  • SQL Server How to add SQL statements to the package created by Export Data wizard?

    How to add SQl statements to the package created by Export Data wizard I need to add SQL coming from file, the flow would be like this: 1) SQL would drop all objects: (views, tables, stored procedures) etc 2)  SQL would create all objects: (views, tables, stored procedures) etc 3) Export Wizard SSIS package would execute Also is there a dynamic way to add more tables do the package once created in SQL database I would like to put the whole task on a scheduler too... I was asking simple questions, some of them are not in the online books (I checked). Like why the controls are greyed out...   ...Show All

  • Visual Studio Express Editions Delete rows from DataGridView and Table Permanently

    Please, Could anyone help me or point me to an article or the Code necessary. I am having no luck solving this.   I need to delete a row from both a DataGridView and its binded Database table programmatically . I would attach the "delete code" to the Button on the form. I would point to the row in the GridView and press that button on the form. I cannot use the TableBindingNavigator because of other requirements. Also, I need to make sure that the deleted row stays deleted permanently. I have been battling with this and cannot seem to acheive a permanent delete. Every thing seems to delete correctly, but if I exit this form ...Show All

  • Visual Studio Express Editions Using Unmanaged(evc ++ 4.0 sp4) dll in vs.net 2005 (compact framework 2.0)

    hi folks, iam devloping application for pocket 2003 2nd edition. for this we are using vs.net 2005 . My problem is when i call a evc++ 4.0 (also installed SP4) dll it throws MissingMethodExcepion. but the same code(dll) is working in vs.net 2003. my code look like this.. imports System.Runtime.Intropservices <DllImport("testDLL.dll")> _ Private Shared Function fnTest() As Integer End Function private sub button1_click(.......).... Dim i As Integer i = fnTest() MsgBox(i) end sub FYI : i also made sure that the function name, signature is exactly the same as what it is in ...Show All

  • Windows Forms Adding Controls to a User control

    Hello, I'm trying to add custom controls to a user control, and render them to it. I have a viewer user control in which several of these controls are built: //Create a verse item and assign the values to the property VerseItem verseControl = new VerseItem(); verseControl.Visible = true; verseControl.Enabled = true; verseControl.Anchor = AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right; verseControl.Number = verse.Number; verseControl.Text = verse.Text; //Add the control to the collection this.Controls.Add(verseControl); Then after the for loop, I invalidate the user con ...Show All

  • SQL Server The package execution failed. The step failed.

    when i right click and execute the package from the Management Studio, it runs fine, everytime. When i schedule a job to execute it, it fails, everytime. "The package execution failed. The step failed." i have made sure that the package and job ran using credentials with more than enough access to everything. Still, with no luck. PLEASE! I am at my wits ends here, and the boss is getting antsey... Any and all help is greatly appreciated... Anthony Thanks Friedel. I changed the package's ProtectionLevel of the package properties in BIDS to EncryptSesitiveWithPassword and gave a ...Show All

  • Visual Studio Tools for Office C# with Excel -- How to select a sheet?

    How do you select a sheet In VB6 it was like .Sheets("Response File Detail").Select How can it be done in C# Anyone ever seen a useful Excel example application. I already checked Microsoft's site. Here is what I have tried (among others): ExcelApp1.Sheets.Select(ExcelApp1.Sheets["IB Report Reconcile Summary"]); // DOES NOT WORK, runtime error ExcelApp1.Sheets.Select("Response File Detail"); // gets COM Exception ExcelApp1.Sheets.Select(3); // try this (does nothing, but gets no error) Hi, The following code will do the trick: using Excel = Microsoft.Office.Interop.Excel; ... Excel. Worksheet she ...Show All

  • Windows Live Developer Forums 1 result less...

    I have been receiving 1 result less than what I ask for... Am I doing something wrong Is this a bug Is there an official response to this issue This has been my experience as well for as long as I've used the MSN Search API.  I suppose it is a bug, but I've never heard any official response on it. ...Show All

©2008 Software Development Network