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

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

mattwink

Member List

CodeWarrior1
Pym
MGrooms
Innovasys
Orschiedt
FlyingCarrot
Alex2004
Limb
Sassenfeld
Ronoc
Jamador
David Weller
Kunaal
m8ark
kunala
jnc
psypod
Ivan Scattergood
Don McCrady
mj585
Only Title

mattwink's Q&A profile

  • SQL Server set up problems by sql express edition 2005

    TITEL: Microsoft SQL Server 2005 Setup Problem ------------------------------ SQL Server Setup Failed to compile the Managed Object Format (MOF) file C:\Program Files\Microsoft SQL Server\90\Shared\sqlmgmproviderxpsp2up.mof. By compiling with mofcomp sqlmgmproviderxpsp2up.mof : can't find class , instance of property CIMTYPE. Who can help me Henk Please provide more details about your configuration. Are both the OS and Express English, or are they localized Is this XP SP2 Any details you can provide on what makes your system unique ...Show All

  • SQL Server populate variable from ExecuteSQL: what columnname for select count(*)?

    Hi SSIS community, I want to populate a variable with the result of the query of an ExecuteSQLTask:  'Select count(*) from Sometable' . To map a single row result set to a variable I must identify a column by its name. What name must I use in my case Or must I do this in a different way. Thanks in advance, Henk Can't you put an alias on the query: 'Select count(*) as recordcount from Sometable' -Jamie ...Show All

  • Visual Studio Tools for Office Context Menus in MS Project

    Hello! I am developing add-ins for MS Project. I can easily change toolbars and commands in the main menu. For example, to access Tools menu: MyMenu = oCommandBars("Tools").Controls.Add(before:=3) So, I just need to know de command name. However, I need to change context menus (for example, right click in one task). Is this possible If yes, how can I do it How can I get the names for any context menu Thanks! Hi, VSTO 2005 does not support add-ins for MS Project. Try posting your question on the Project Developer newsgroup: http://msdn.microsoft.com/newsgrou ...Show All

  • Visual Studio VSS 2005 WebService problem

    Hi hi. I'm trying to use the new WebServices in VSS2005. After fiddling around, reading through the forums and doing some more fiddling I've just given up. The problem is authentication. I can open the share from my computer, open the project from the share (with the non-internet version of the VSS plugin) and open the webservice url from my computer. I've tried doing SSL, but the result is the same. If I directly open a project under source control I get "VSS Web Service could not open the database". *but* if I use Open project.. and then use the "SourceSafe (Internet)" option to navigate to the .sln file in the VSS database and open it - t ...Show All

  • Visual J# Why is the J# Redistributable package needed?

    Hi! Why is the J# Redistributable Package needed to run a J# application Or can I just redistribute some assemblies For example, if I develop an application in Borland Delphi using WinForms, I can compile this application to an exe file. This exe file can be executed on any computer that has the .Net Runtime Framework installed. No Delphi .Net Redistributable Package exists. If I develop an application in Dephi using the VCL.NET api all I have to do is to redistribute the VCL.NET assembly. That's easy. No problem here. So the fact is that it is possible to develop a new language for .Net (Object Pascal) and don't require some special in ...Show All

  • Visual Basic Update SQL Table VS2005 VB.NET

    Hi All, I have been messing with some basic vs2005 apps... im having trouble updating a table however. Is it possible you can help me I have a form with a cbo binded to a dataset that I have. I use this to populate a couple of text box's on the form. If I make an edit and try to update the table using this code: Private Sub btnSave_Click( ByVal sender As System. Object , ByVal e As System.EventArgs) Handles btnSave.Click Me .CustomerTableAdapter.Update(DsCustBasic.Customer) Me .DsCustBasic.AcceptChanges() End Sub   The dataset appears to change while the app is live, however I cant seem to actually write th ...Show All

  • Visual Studio Possible permissions issue with IIS. Using VS2005, CR 10 SDK and report located on remote server

    With the following code: Dim serverName As String = "CRSERVER1" reportToView = New ReportDocument CrystalReportViewer.ReportSource = reportToView Dim mySessionMgr As SessionMgr = New SessionMgr() Dim myEnterpriseSession As EnterpriseSession = mySessionMgr.Logon( _ "ACCT" , "password" , serverName, "Enterprise" ) Dim myEnterpriseService As EnterpriseService = _ myEnterpriseSession.GetService( "InfoStore" ) Dim myInfoStore As InfoStore = New InfoStore(myEnterpriseService) Dim queryString As String = "Select SI_CUID F ...Show All

  • Visual Basic vb.net and speech...

    well i've read all the messages about... :( i'm a teacher in a high school (and i also write programs in vb.net for pc and my pocket pc). so far, so good..... but i wanted to make a program where i tell the classification and the number of the student and this data would be inserted in a data base. Is it necessary to have mS server speecH what other thing must i have to wrote this program thx! If you are making a speech enabled web site you need speech server. For a windows form application use the speech sdk 5.1 Simple example. Add a reference to the microsoft speech object librar ...Show All

  • Visual C# Hosting ASP.Net runtime in Winforms app to display asp.net pages from memory stream

    I'm currently trying to build an application which uses a webbrowser control to display formatted data. The pages I am trying to display might not be found on the harddrive of the local machine: they may be on a server or in a compressed file somewhere. To handle simple html requests I have created an asynchronous pluggable protocol to handle any requests and supply the pages from wherever they might be stored. What I'm trying to do however is display ASP.Net pages. I don't have a web server to use to serve these file so I have to use the winforms application to host the asp.net runtime. I'm managed to implement that and have b ...Show All

  • Windows Forms Tip: Use the power of DataBinding, and avoid all the DataSet and SQL silliness.

    I just finished a sample implementation of how to use db4o (an open-source native object database), and WinForms databinding in the sweetest little app. My database logic is only a few lines of code, and almost everything was settable in design-time with no Visual Studio extensions, O/R Mappers, automated code-writers, etc. Download the application at http://www.everylittlething.net/PartsAssembly Requires nothing but Visual Studio 2005 and db4o. ...Show All

  • SQL Server multiple-step ole db error

    When trying to connect to sqlexpress, I get the rather uninformative error message: Error No. -2147217887 Multiple-step OLE DB operation generated errors. Check each OLD DB status value, if available. No work was done. Here's the connection string I'm using: strDbConn = "Data Source=.\SQLEXPRESS;AttachDbFilename=" & _ DbPath & ";Database=rawtf_1;Integrated Security=True;User Instance=True; " & _ "Trusted_Connection=Yes;providerName=System.Data.SqlClient" What can I do correct this problem Thanks so much Mike. All the obstacles seem to have been cl ...Show All

  • Windows Forms OnPaintBackground method

    I have a form with a panel. I want to control the back ground painting of the panel, but I don't want to create a custom control to do this. So how do I override the OnPaintBackground of the panel Thanks for your help!... Derive a class from Panel and then override the virtual method. public class MyPanel : Panel { public override void OnPaintBackground(...) { ... } } Phil Wright http://www.componentfactory.com Free user interface controls for VS2005 ...Show All

  • Visual C++ Where did the quick console go?

    Anyone know where the quick console window went in Visual C++ Express August CTP Jeff House Hi Yaniv,    Thanks a lot for your feedback. You can actually log your suggestion at http://lab.msdn.microsoft.com/productfeedback/  where other interested folks and users can vote and determine the importance of your suggestion. The VC team for sure considers every single suggestion entered there. Thanks in advance for taking the time to log your opinion. Thanks, Ayman Shoukry Program Manager VC++ Team ...Show All

  • Visual C# Hi, how do I enforce that the Denominater of a Fraction struct will not be initilized to o on creation?

    since I can't define a parameterless Ctor, the compiler defines one automatically so the denominator will be initialized to 0 and it's undesirable. Hi, You could then add a getter initialization for your denominator variable (dont set the modifier of your denominator variable to public): public struct Fraction {    private int denominator;    public int Denominator    {       get       {          if (denominator==0)          {       & ...Show All

  • .NET Development how to call vb6 dll from vb.net?

    hi, Anyone here know how to call vb6 dll from vb.net 10s..... Hi, Read through the following article for details: http://builder.com.com/5100-6387_14-1045393.html tag=sc Regards, Vikram ...Show All

©2008 Software Development Network