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

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

JoeCousins

Member List

Abhi_N
zhyluo
Mark Rejhon
digitalsuperman
Kirangazz
avner ben-zvi
biap
Stefan Grasmann
Albert_Bouwman
Benjamino
zhu.zheng
Andrey Nikovskiy
Philipp - San Diego
lmb
gouda
paulfriday
PC MacLeif
Nishad S
Vitaly S.
sniwas24x7
Only Title

JoeCousins's Q&A profile

  • Smart Device Development CDialog::OnOK() does not close Modal DIalog

    I am developiong using Embedded C++ 4.0 for a device by a company called Advantech. The unit is a TPC-60S and uses WIndows CE .Net 4.2 I have a problem with CDialog. I have searched newgroups and MSDN and have not found a solution or anything like this problem. Basically I have a dialog based app and have 4 nested modal dialog boxes all create using DoModal like this: dlg1 has a button that calls dlg2 and button calls dlg3 and button calls dlg4 Something like this in each case: CDialog dlg1; int nResponse = dlg.DoModal(); In dlg4 there is a button that is has an ID of IDC_BTNEXIT and the void CSellCodesDlg::OnBtnexit() h ...Show All

  • Visual Basic Tabbed Browsing in VB .Net

    Hi, I have a question regarding tabbed browsing. I am writing my own custom web browser in vb .net studio 2005. I can create, dynamically at runtime, additonal tabs on a tab control, which will - in each - have a dedicated webbrowser control. So what will happen is 5 search engines will be searched and the results be placed in seperate webbrowsers under 5 dynamically-created tabs. The user can then tab throw each set of results. The problem is, I cannot crack for the life of me the creation of the dynamic webbrowser controls in line with creating the tabs. I will need to send a URL to each webbrowser too, to show the resulting searc ...Show All

  • Visual Studio VS 2005/VSS 2005 - Error while checking (HTTP)

    I read thru this forum and finally had the Internet access setup. The server is not in the same LAN as the client computer. I created a new project and VS 2005 beta 2 and tried to add the solution to my test VSS database. However, I always get the following error no matter how I tried: --------------------------- Visual SourceSafe Internet --------------------------- There was a failure uploading the URL http://www.abc.com/SourceSafe/VssUpload_db1/680bb406-5457-4430-974f-e35885d19821/{2E2C9C61-D8DA-41E3-B440-00FA1DF0081D}. Do you want to retry the operation --------------------------- Yes   No    ------------------------- ...Show All

  • Visual Studio Express Editions C Question

    i was wondering is it c99 compatible if not is there a way to convert it to c99 if so how cause i heard vsc++ is only c90 compatible and i don't want c90 only c99 Take a look at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=333319&SiteID=1 Hope this is helpful! Thanks, Ayman Shoukry VC++ Team ...Show All

  • Windows Forms .msi file created under Visual Studio 2003 does not run under .NET 2.0

    My applicaton and its installation package was created under Visual Studio 2003 for .NET 1.1. Unfortunately, my customer upgraded all their w/s to .NET 2.0. Now, each time the .msi file runs, this is the error message I see: "This setup requires the .NET Framework version 1.1.4322. Please install the .NET Framework and run this setup again. ...." I've tried to edited the setup.ini file to set SupportedRuntimes and the Property VSDSuppported Runtimes (using orca) in the msi file to 2.0.50727. Well, no luck. My understanding from what I read is that appl that runs under 1.1 should have no problem to run under 2.0. Where do I go wro ...Show All

  • Visual Basic Object Test Bench

    in VS2005 Standard, when I right click a class in class view, select create instance, and say OK, I get "create instance failed", with details = 0x80004005. I've tried this with several different classes...which have warnings but no compile errors, and which I don't think are "generic" (because I don't know what that is and didn't try to make them that.) Any suggestions Thanks! The Object Test Bench is available in Standard (I have standard, and I have Object Test Bench). The only thing mentioned as being only available to Professional and Enterprise is the Class Designer. I had ...Show All

  • SQL Server Getting the name of the updated table

    I am writing a generic trigger in VS 2005 that selects records from the inserted table, and updates an audit table. I am, however, unable to retrieve the name of the table that the insert occurred on. I am using the following code to select the records, and obtain the name.. Can anyone offer any alternatives to accomplishing this task Thanks in advnace for any help you can provide. Craig SqlDataAdapter tableLoader = new SqlDataAdapter ( "SELECT * FROM inserted" , connection); DataTable insertedTable = new DataTable (); tableLoader.Fill(insertedTable); string insertedTableName = insertedTable.TableName; ...Show All

  • Visual Basic Background image

    How would you set a forms background image through coding not selecting it. Thanks ...Show All

  • Visual Studio Team System Customization of test conditions?

    Hello everybody, IMHO list of test conditions for a Database Unit Test is too restricted, and of course I'd like to customize both list itself, and parameters in existing conditions. Is there any way to do it Sorry, you cannot add test conditions to the drop-down list. However, you can add custom verification code to the C# or VB files behind the designer. Below is an example where I compare the first value in the first table of the first result set to an expected value of "expected" (not very realistic but I hope it helps). :) Thanks! -Jon // Execute the test script // if ((testData.Tes ...Show All

  • Windows Forms Design-Time binding custom control to GridView

    I have a custom control in .NET 2.0 that is wrapping a strongly typed dataset. In .NET 1.1 I was able to implement ICollection and expose the DataSet, such that people could bind to the control as if it was a DataSet itself. I was able to bind it to a DataGrid and the columns would show up in design time. However, this functionality isn't working for the new GridView control in .NET 2.0. I would like it to show bindable columns in design time, just as the SqlDataSource does to the GridView control. I've been trying to reverse-engineer SqlDataSource to figure out how it is done, but have not had any luck just yet. Is anyone here awar ...Show All

  • Visual Studio Extending Project Property Pages

    Hi,   Is it possible to extend the project property pages For instance, adding a MyBuild under the "Configuration Poperties" in the property pages of a project. Thanks, Bart Hi Bart, If you created the project system and your project system is based on MPF, then you can follow the instructions at http://blogs.msdn.com/jim_glass/archive/2005/03/23/401010.aspx . Notre ...Show All

  • Smart Device Development Native C/C++ embedded development in Visual Studio 2005 - supported Windows CE versions

    I understand that Visual Studio 2005 will replace eMbedded Visual C++ for native code development on Windows CE. Will any CE version prior to 5.0 be supported This means that for win ce 4.2 standard C/C++ dev, you still need EVC4 TIA ...Show All

  • Visual Studio Team System Feature request: Class name filters

    It would be very useful if we could create regexp-based filters that would tell whether a particular class should be analyzed. Here's an example: I don't want FxCop to analyze third-party code that is a part of my assembly (PowerCollections), nor do I want to analyze auto-generated xml serializers code that also resides in that assembly. If only I could set up couple of filters like "skip classes whose full name starts with "Wintellect.PowerCollection" and "skip classes whose full name ends with "Serializer"... Andrew, We have discussed this quite extensively before internall ...Show All

  • Visual Basic Where do I download?

     I wish to download it to make a new MMORPG... If you help me, (In either way) consider yourself a GM. (or some )   I also need  Player Worlds... Their Website doesn't show up for me...   You can find Visual Basic 2005 here: http://msdn.microsoft.com/vstudio/express/vb/ The DirectX SDK is here: http://msdn.microsoft.com/directx/sdk/ Mike Carter Visual Basic QA ...Show All

  • .NET Development unable to get IIS 5.1/.NET 2.0 to connect to a remote SQL Server 2005 instance

    Hello all, I'm not new to developing web apps with data access, but I am new to the Microsoft world, specifically Visual Studio 2005 and SQL Server 2005. I have two machines: Machine A (WinXP Pro SP2 with all the latest updates) has SQL Server 2005 and Visual Studio 2005 and .NET 2.0.50727.42 (and no earlier versions of .NET) Machine B (WinXP Pro SP2 with all the latest updates) has IIS 5.1 and .NET 2.0.50727.42 (and no earlier versions of .NET) On machine A I can develop a simple web app, with no database access, deploy it to machine B and run it without problems.  Likewise I can develop a simple web app on machine A ...Show All

©2008 Software Development Network