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

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

filousnt

Member List

holyfrik
Scott
Yaron Becker
Ryan Lederman
Jason Sacks - MSFT
Don Peterson
sel
智慧机器
Sam01
bandreasen
GS80
MKU
Cross
baysbenj
Thierry Tuo
Eric M
Karulont
Ramu Devarasetty
JSMARTIN
Mike Pelton
Only Title

filousnt's Q&A profile

  • Visual Studio Express Editions read write serial port

    I have found several classes online that say they make using the serial ports easy. I am never able to get any of them to compile. Is there a bare bones example of how to read/write to a serial port all bundled in a project for Visual C++ Express Edition It depends what classes you found. You need a class based purely on the Win32 API. Even than you need to install the PSDK as documented. If you used one using MFC and ATL you must fail because MFC and ATL are not part of VC Express. http://msdn.microsoft.com/visualc/learning/vcexpvids/default.aspx ...Show All

  • Software Development for Windows Vista How do I Pass Values from an Event Sink

    Hi, I have an event sink which has passed into it custom event args (similar to the statemachine sample). That event sink invokes a Code Activity - my question is what is the syntax for extracting the parameters out of the event sink for use in the Code Activity. private void SendMailCode_ExecuteCode(object sender, EventArgs e) { //TODO:pick up parameters from event sink and pass to this code to send the email. System.Diagnostics.Debug.Print("Send Email to Purchasing Officer"); } I basically passing in List<string> for use in emailing upon an event be ...Show All

  • Visual Studio Express Editions LessonResources File not found Help!!!!!!!

        Hi Guys,     In Lesson 2 the guy says around the 31 min. mark that a file call LessonResources can be found where I downloaded the video (http://lab.msdn.microsoft.com/express/beginner/).  But its not there. Can you please help me get that file so I can continue the lesson. Thanks for the help                       Winchester1897 Dear Mr. Fernandez, You point us to the "...final download VB/C# in the "rss_icons" directory", and states: &q ...Show All

  • Windows Forms DataSet change does not update bindingSource.

    Hi, I have a DGV with a datasource of a BindingSource. THe BindingSource has a DataSource of a typed DataSet table. These have been linked using the designer. On a button, I want to change the rows that the DataSet table contains, and then have the bindingSource and DGV update automatically (as well as any other controls bound to the bindingSource). Currently, I make the change to the DataSet using tableAdapter.Fill(DataSet.Table) and the bindingSource and DGV do not update. I've tried adding resetbindings to the bindingSource.. but no avail. Any ideas... please. Also, is there any standard doc on this type of thing.. e.g ...Show All

  • Visual C++ On adjacent ">"s in a parameterized declaration

    Hello, There is a syntax erron in the following code -- adjacent ">"s need a delimiter (it is marked AAAA) template <class T> class A {}; template <class T> class B {}; int main() { A<B<int>>(); // AAAA } But VC8 can compile it. It seems to be a error but on the other hand Mr. Stroustrup have being dreaming on such a syntax for ages and he promotes it pretty vigorously now, as far as know. So, I am just curious if it is the bug or a favor -- Michael Kochetkov Probably a bug.  Forgiving incorrect C++ syntax is not a favor if it means non-portable code. ...Show All

  • Windows Forms Problem with applications launched from a html link.

    Hi. I'm building a smart client application and have decided to go for the no-touch deployment moddel. I can live with the security restriction such as only read/write files trough dialogs, only talk to web services on the server launching the app etc. I've written a simple test application to get my head around deployment. It's a simple dictionary application t ...Show All

  • Windows Forms Signing the Assembly Manifests

    I am getting this error at Install time: PLATFORM VERSION INFO  Windows    : 5.1.2600.131072 (Win32NT)  Common Language Runtime  : 2.0.50215.44  System.Deployment.dll   : 2.0.50215.44 (beta2.050215-4400)  mscorwks.dll    : 2.0.50215.44 (beta2.050215-4400)  dfdll.dll    : 8.0.50215.44 (beta2.050215-4400)  dfshim.dll    : 2.0.50215.44 (beta2.050215-4400) SOURCES  Deployment url   : http://install.inventorymanager2005.com/InventoryManager2005.application ERROR SUMMARY  Below is a summary of the errors, details of t ...Show All

  • Microsoft ISV Community Center Forums Add code in control image in time of execution

    (First of all they forgive me my English) Good, to all I am grateful for his help I have a routine that adds in a sheet a few Images control If he finds the word Graphis what I want is, that when the user of clic in an image executes Function ImageLoad does there exist any way of including this routine when the control is created or that, on having clicked in an image, obtains the name I have been trying with the event Private Sub Worksheet_SelectionChange(ByVal Target As Range), but I have not found like Thanks for his time '--------------------------------------------------------- ...Show All

  • .NET Development ISAM installable file not found

    Hello,     I am trying to open a connection to an Microsoft Access data base in visual basic.net.  I get the message ISAM installable file not found.  I have the file MSISAM11.dll in c:\windows\system32.  I registered it with regsvr32. and it still does not work.  What can I do thanks a lot in advance for your help Aurora Tellez. Actually, I am using MS Access at work, so I never try to open the media player. All I know is this file does not exist on my system!!! ...Show All

  • Windows Forms HELP I want to change the BaseDirectory

    Hi all, Actually I developped a component in C# which is used through a VBScript. In the component I have to serialize/deserialize a binary file and when I call the method, I get an Assembly cannot found exception. It's logic, the framework cannot found my assembly in the C:\Windows\System32 directory (path from the wscript.exe file). Now i'm searching to change  ...Show All

  • SQL Server Enable/Disable Job with SMO

    I am trying to enable/disable a job using a using smo in a script task with the following code Imports System.Object Imports Microsoft.SqlServer.Management.Common Imports Microsoft.SqlServer.Management.Smo Imports Microsoft.SqlServer.Management.Smo.Agent Imports Microsoft.SqlServer.Management.Smo.SqlSmoObject Imports Microsoft.SqlServer.Management.Smo.SmoObjectBase Imports Microsoft.SqlServer.Management.Smo.NamedSmoObject Imports Microsoft.SqlServer.Management.Smo.Agent.Job Imports Microsoft.SqlServer.Management.Smo.Agent.Jobserver Imports Microsoft.SqlServer.Management.Smo.Agent.AgentObjectBase Public Class ScriptMain   &nb ...Show All

  • Visual C# How to launch process in c#.net web application(on button's click event)

      Hi All,   using System.Diagnostics; Process process = new Process(); process.StartInfo.FileName ="msimn.exe"; process.Start(); This code runs perfectly with Console Application but I need to run  same " msimn.exe" on button's click event in web application..I have tried but unable to do that.. Pls..let me know how to do that ,Thanks in advance Leena       What are you trying to achieve Do you want to run the application on the client or server side If its the former, you won't be able to do that as the Process code runs on the service si ...Show All

  • SQL Server Installing SQL 2005 Workgroup failing

    I am trying to install SQL 2005 WorkGroup on a machine that falls within the hardware specs, but the installer says that it dosn't make it.. Hardware Celeron 1g with 760m ram, installing on SBS Standard 2003 SP1. Anyone have any ideas how to move forward. Glenn, Go ahead and file a bug with http://lab.msdn.microsoft.com/productfeedback/ and include the log files from %ProgramFiles%\Microsoft SQL Server\90\Setup Bootstrap\Log\Files. Also include all relevant information about your hardware and what OS you are installing on. I'll look at the log files and get back to you. -Jeffrey ...Show All

  • Windows Forms TableAdapter Update Error

    I made a TableAdapter and use ObjectSource to bind it to GridView, when I insert new rows it works OK, but when I try to Update or Delete it gives me this error: ObjectDataSource 'RegionObject' could not find a non-generic method 'Update' that has parameters: RegionDescription, original_RegionID. Version Information:  Microsoft .NET Framework Version:2.0.50215.44; ASP.NET Version:2.0.50215.44 Thanks Alaa Bhr Software Developer Hi, Could you check your *.xsd file See if the update queries available in your tableadapter has these kind of arguments. If not try creating it... cheers, Paul June A. Domag ...Show All

  • SQL Server Using SQL Server 2005 as a front end to a SQL Server 2000 database

    I really like the tools in SQL Server 2005. Especially the upgrade for Enterprise Manager/Query Analyzer, the SQL Server Management Studio. Is it possible to use the Management Studio against a SQL Server 2000 database without damaging it The database is still run on a SQL Server 2000 instance with SQL Server 2000 clients. E.g. could I run simple sql-statements like queries and updates against a SQL Server 2000 database with the 2005 SQL Server Management Studio Thanks, Klas YOu can do the whole administration 7 querying etc. with the managment studio against 2k database / servers. HTH, jens Suessmeyer. --- http://www.sqlse ...Show All

©2008 Software Development Network