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

Software Development Network >> Matthew!!!'s Q&A profile

Matthew!!!

Member List

Tony Spaulding
tnyx
paschott
Janet Robinson
Syed Junaid
SQL Champ
GerardDOTNET
Jeremy Balliston
darbha
arvind_cv
James Martin-Young
NarendraKumar
welshfire
Craig Guyer - MSFT
Ryo
Lheo
legoman26
calico
Olko
dpf
Only Title

Matthew!!!'s Q&A profile

  • Visual Studio 2008 (Pre-release) Change scrollbar style within a ListView/GridView

    I'm using a ListView that contains a GridView, with a number of columns defined. This serves my current needs, except for the vertical and horizontal scrollbars that are shown within the ListView. I can't find any way to style them. For starters, I need to remove the gray scale look and replace it with colors that work with the overall theme of the application. Is there any documentation on how to style, or otherwise access properties of the scrollbar within a ListView Thanks. Bruce Bukovics Author of .NET 2.0 Interoperability Recipes http://www.apress.com/book/bookDisplay.html bID=10116 While that referen ...Show All

  • Visual Basic ADO/Access Questions

      I've had a moderate amount of of experience with access databases in vb6. We'd declare a file system object and from that declare a workspace and from that a record set descriptor. One could picture and understand what was happening. VS2005 is different though. You could create and delete tables and define them dynamically. VS2005 seems to be different. It seems that things are done up front in the IDE Almost as if the relationships are drawn. Instructions are to click on this and do that. One creates table adapters and and dataadapers and with these apparoaches everything seems quite removed from what really happening. Al ...Show All

  • .NET Development Problems implementing a Data Provider in VS2005

    We had a working Data Provider coded in C# using VS2003. The same code gives a problem in VS2005 and I'm hoping someone here can help out. Sample code: DataSet ds = new DataSet (); TTDataAdapter da = new TTDataAdapter ( "select name from master..sysdatabaseinfo", m_Conn ); da.Fill( ds, "Table1" ); This will raise an exception when the data provider is compiled in VS2005: [System.ArgumentException] {"Type of value has a mismatch with column typeCouldn't store <master> in name Column.  Expected type is RuntimeType."} I have checked everwhere I could and the name-Column's DataType is "System.String" as it s ...Show All

  • Visual Studio 2008 (Pre-release) GeneratedInternalTypeHelper

    Hello, i have this error when i build my solution by F5 : the namespace _Generated already contains a definition for GeneratedInternalTypeHelper I use Visual C# Express with the february 2006 CTP. I must rebuild all solution and after i can start debugging. I think this problem is arrive when i add a new WinFx window and i change the start window with this new. this error is fin in the older starting window. Have yout got an idea to resolve this problem I'm trying to reproduce the problem, but I have been unable to given your description. Could you please provide a step by step description Thanks! ...Show All

  • Visual Studio Problem to install .NET Framework 1.0 Servicepack 3

    Hi I am not quite sure this is the right forum, but I start here. I am trying to have Microsoft Update install for me, (XP Home, + SP 2) and most works OK, but ".NET Framework 1.0 Servicepack 3" that refuses to install. I get an error every time trying to install and reinstall like this: SLC.tmp - Common Language Runtime Debugging Services Application has generated an exception that could not be handled Process id=0xe1c (3612), thread id=0x984 (2436) Then the installation stops, and looking in the Microsoft Update log, for this failed installation, I get an error message " Error code: 0xE0434F4 ...Show All

  • Visual Studio Team System n mi Upgrade database to specified version in automated build task

    We are using team build to run a nightly build and deployment to our test environment. We are thinking about to create a DBScripter.exe app to upgrade our Oracle DB to the specified version. It will look for change scripts and handle the upgrade of the database to a specified version. What can be a good approach to integrate this in the build process I was thinking about calling this at the BeforeCompile Event and the Exec command. But if the return code is less than zero from DBScripter.exe I want to cancel the build. How can I check for the return code and cancel the build if there is any error I would also thinking about using th ...Show All

  • Visual C++ New to Windows Programming

    I have an old C program (written under UNIX) and I need to convert it into a Windows program with a GUI. The program only does some calculations and saves the output to a file. I have V. Studio 2005 and I'm confused!! I don't know which type of project I need and if I need to use C++ (which I don't know too much about). Can someone please give me some guidance Sphinx06 You can use winfroms for such application. Also, MFC or general Win32 API could do the job but Winform projects in my opinion is easier if you don't have background in C/C++. Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual Studio Team System Error 28100.Error loading Event web service.

    Hi,   During installation I got "Error 28100.Error loading Event web service.". Any idea what is going wrong TFS is being installed on a Virtual Machine.   Please feel free to contact me if you need any more information. Thanks, Bart ps. Is it possible to upload the setup log I went back to some lessons learned when installing tfs beta 2, one of which was to install wss before sql server (even though the install guide says to do it after).  I installed wss, stopped the default web site, set the sharepoint site to port 80, then installed sql server.  Then I manually configured report ...Show All

  • Visual Basic C# Conversion - AddressOf Delegate

    I am looking for help converting the following block of C# code to VB.Net: public static void CloseSplash() { frmSplash formSplash = SplashInstance(); if (formSplash.InvokeRequired) formSplash.Invoke(new CloseDelegate(CloseSplash), null); else formSplash.Close(); } I have used various C# to VB Converters... They return the following: Public Shared Sub CloseSplash() Dim FormSplash As frmSplash = SplashInstance If FormSplash.InvokeRequired Then FormSplash.Invoke(AddressOf CloseSplash, Nothing) Else FormSplash.Close() End If End Sub However this code generates ...Show All

  • Visual C# How get inner class info by Reflection

    public abstract class ClassBase { public abstract class InnerClassBase { } public void CheckInfo() { Type currentType = this.GetType(); //How to get method info of this inner Class } } public class TestClass:ClassBase { public new class InnerClassBase { public void Test() { } } } //Testing code TestClass test = new TestClass(); test.CheckInfo(); I'm not sure I understand the problem. You can't get a MethodInfo for a class. I'm also not sure what the purpose of the two InnerClassBase classes are. Classes aren't polymorphic so what's your reason for declaring a new InnerClassBase in TestClass ...Show All

  • Smart Device Development Why always show me the time out error when calling Web Service?

    Recently i call web service in my ppc with win form that show me the time out error and more strange is fail to call on the second time. in fact it run fast on frist time calling. Hi, What version of NETCF are you using If you are using NETCF V1, can you try using NETCF V2 instead to see if this problem persists. There are some bugs in V1 that were fixed in V2. Also in your V1 application you should try setting ServicePointManager.DefaultConnectionLimit to a very high number before making the web service call. Also what type of network connection are you using ...Show All

  • Software Development for Windows Vista Where can I download Visual Studio 2005 Beta 2 (builds 50215.44 & .45).

    I'm trying to work with the WWF, I've installed several different VS 2005s, team and Pro from MSDN, and I tried unsuccessfully to install from the 'bad' CDs from PDC. Many other folks seem to be working with the right version, so I assume I'm just not looking in the right place. Can someone point me to Visual Studio 2005 Beta 2 (builds 50215.44 & .45) bits , please Try it out online at MSDN Virtual Labs , no install required. Pretty unlikely you'll get a new copy og Beta 2 now that the Visual Studio 2005 launch is on Monday. Regards, Paul ...Show All

  • Visual Studio Express Editions how connect a Visual Basic express edition application to an Oracle database

    Hi, the title of this message, says quite everything I want to know. I'm developping a human ressource tool and the database I have to use has been developped with Oracle 9i. And I don't know how to connect my application made with visual studio 2005 express edition to Oracle Tkanks everybody -) Google is your friend http://oraclevsmicrosoft.blogspot.com/2004/12/connect-net-application-to-oracle.html This particular blog should provide you with the answers you need. james aka:Trucker ...Show All

  • Visual C++ Dialog bar (CDialog Bar) activex(flexgrid control) fire events

      S.O: winxp visual c++ 6.0 service pack 5 well i tried to use flexgrid contron over dialog bar (works well). functions are working. but when y tried to fire events and nothing happens. in a dialog based App Work's, but in a sdi App(MFC wizard) doesn't work, of course in a dialog bar(CDialogBar Type) . the following code is a little example in mainfrm.cpp file: BEGIN_EVENTSINK_MAP(CMainFrame, CFrameWnd)     //{{AFX_EVENTSINK_MAP(CMainFrame)  ON_EVENT(CMainFrame, IDC_DATAG, 69 /* SelChange */, OnSelChangeDatag, VTS_NONE)  //}}AFX_EVENTSINK_MAP END_EVENTSINK_MAP()   void CMainFrame::OnSelChangeDatag() { &nb ...Show All

  • Windows Forms Problems creating XML and Schema from SQL

    I am using a vb.net program to process SQL Stored procedures to create XML data and schemas. When I validdate the schema (generated from vb) against the XML (generated from vb) I am getting the following error:  The 'prodai' element has an invalid value according to its data type. An error occurred at (10770, 22).  Prodai is defined as a decimal ( ...Show All

©2008 Software Development Network