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

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

unionize

Member List

Craig N
IanGilroy
IGeorgeI
ColinGQ
GanitMandir
BStarDev
Tony Lambert
Sniper167
James 39b
N Lyons
nattier
Romain Aubier
Jdawson
Josh Korn at Diligentsia
Suresh B
gurpreet11
-lance
Jeremy_B
vai23
TSZ
Only Title

unionize's Q&A profile

  • Visual C++ Full duplex serial port

    Hi all. What I have a problem with is writing a code that continuously listens for incoming data but at the same time being able to send data. When I wait for an event either rxchar or hardware handshaking event I can not send at the same time. Is this somehow possible Or is there some way to kill the wait for event so that I can send data and then go back to wait Now I have to Poll the serialport with a timer and use a mutex so that the send and receive does not collide. Is there really no easy way to make an interrupt driven serial port application Polling is just ugly J Many thanks in advance. /Tobias ...Show All

  • Visual Basic Where to look to find the list of all Visual Basic events...

    I have a looked in books as well as on-line and I can't find a list of all the possible events for Visual Basic and Windows Forms. Thanks, Claude. Different classes have different events...you can get a list of a given class' events from MSDN, for example, here's the events for the Form class: http://msdn2.microsoft.com/en-us/library/td1s43eb(VS.80).aspx Hope that helps, Jonathan Aneja The VB Team ...Show All

  • SQL Server Deployment 'utility' script using sqlcmd

    Hi all, I'm looking at creating a sample utility script that will invoking scripts to deploy some SQL code. For example, a utlity script that will run a SQL script, and on successful completion, execute the next script. Having not used SQLCMD at all before, and being very new to SQL2005 (< 1 month) please guide me if there is a better way of invoking this... For example, a way of avoiding the xp_cmdshell invocation! The following code invokes a script, but I'm trying to find a way of getting a return code back from sqlcmd, so I can progress and do the next, or fail if the return code <> 0 (success). [code] ...Show All

  • Microsoft ISV Community Center Forums Superscripting in PowerPoint

    Does anyone know how to Superscript part of a datalabel in PowerPoint from Excel VBA. The following code works. With oGraph.SeriesCollection(rowX) For colY = 1 To .Points.Count .Points(colY).DataLabel.Caption = .Points(colY).DataLabel.Caption & "ABC" Next End With But I am unable to Superscript the "ABC". Here's some additional info from the engineer: I hope the code is helpful. =============================== Sub MakeSuperScript() Dim intIndex As Integer Dim strPower As String ' Adjust SeriesCollection(2) so it ...Show All

  • .NET Development .NET 1.1 process.kill?

    Hi. in .NET 1.1, I can create a process: Process someProcess = new Process(); someProcess.StartInfo.FileName = this .someTextBox.Text; someProcess.Start();   However, if i wish to kill that process, I have tried using: someProcess.Kill(); //AND: someProcess.Close();     however both of the processes to close/kill results in an exception: "No process is associated with this object"   Now that is quite understandable BUT how can I make an object of a proper "program/application" which the process can be killed from The user basically can type in a url/some Windows app name ( ...Show All

  • SQL Server publishing downloading report model

    Hi friends is it possible download a report model (.smdl) from a report server and also how to publish a report model i know how to do this from report manager page but i need to do this programmatically (from C#). any ideas please. Thanks. publish model using SOAP method CreateModel , then bind it to a data source using SetItemDataSources ...Show All

  • SQL Server View with SELECT * doesn't pickup new columns in table

    Hi I have noticed that when adding a new column to a table that is used in a view with the following tsql: CREATE VIEW [dbo] . [vwPersons] AS SELECT tb1 .* FROM tb1 LEFT OUTER JOIN tb2 ON tb2 . PersonID = tb1 . PersonID the new column is not shown in the following tsql: SELECT * FROM vwPersons In addition to this, when modifying a view in Management Studio, all columns will be returned when the view is opened in the view editor, thus effectively removing: SELECT tb1 .* and replacing it with: SELECT dbo.tb1 .PersonID, dbo.tb1 .PersonName FROM etc... When dropping and recreating the ...Show All

  • Architecture Delivering Agile Business Process & Integration Solutions Session

    Hi, I will be co-presenting a session on the second day under solutions titled: " Delivering Agile Business Process & Integration Solutions ". This session will cover architecting and implementing Business Process and Integrations solutions (BPI) the Agile Way. We believe that a traditional waterfall process often demands unrealistic skills and accuracy that inevitably leads to the architecture either being invalid or out of date even before development starts. An Agile approach to implementation of Business Process and Integration (BPI) solutions provides a far more realistic framework for solution delivery. This sessi ...Show All

  • Visual Studio Team System Beta 3 SCC Bug: Get latest does not work.

    If I delete a folder on the disk and then goes to SCC Explorer and do a "Get Latest" it tells me that "All files are up to date".... even though they are non-existing on my local disk. This makes it difficult for me to trust the SCC, because it is totally wrong on what are on my disk, and when I am rebuilding the system I have no guarantee that it is in fact a "latest build". However if I checkout and undo pending checkouts it fetches all the directories and files. Is this a known bug Thanks. /borge3000 The reason we do this is that it allows the system to compute what you need very quickly even when you hav ...Show All

  • SQL Server SQL Server 2005 - Generate DB Script...

    In SQL Server 2000 we were able to set the scripting formats like adding the script to drop the object if exists and then re-create the object.  Could anyone tell me how would I do that in SQL Server 2005, please The options I am talking about are like shown below: if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Category Sales for 1997]') and OBJECTPROPERTY(id, N'IsView') = 1) drop view [dbo].[Category Sales for 1997] GO CREATE TABLE [dbo].[Categories] (  [CategoryID] [int] IDENTITY (1, 1) NOT NULL ,  [CategoryName] [nvarchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,  [Description] [ntex ...Show All

  • Windows Forms problems modifying access db data...

    Hi, I have an access database with these tables: TableName : General Columns : ID, Name, etc... TableName : Blah Columns : ID, Whaever, etc... TableName : Buh Columns : ID, Date, etc... Now, ID is supposed to be a primary key in all tables, and in the table Buh, ID and Date are primary keys. Also, there is a relationship between the General ID and other tab ...Show All

  • Windows Forms Problem deploying with ClickOnce

    I am having similar problem with the one in the following link, but seems a bit different (in the exception message). http://www.windowsforms.net/Forums/ShowPost.aspx tabIndex=1&tabId=41&PostID=19299 I created my .application and .exe.manifest files with MageUI.exe, and the application could be deployed successfully if I do that locally, clicking the .application file in Windows Explorer. Then I mo ...Show All

  • Visual Basic winform in ie? possible?

    Hi... Can I have a winform and display it in IE I can assume users will have .net framework 2.0 installed. Alan, anything that allows me to have a designed winform displayed in IE would work.... ...Show All

  • Visual Studio Tools for Office XMI - Tool compatibility

    Hi, Is it possible to get the formats in which different tools use to emit XMI while exporting file As of now, there is no standard XMI format that all tools follow isn't Why is it so Is there any possibility that this could become possible in the future Thank you. Hi, Could be please answer the second part to the question "Why isn't there a common standard that all tools follow Will it become possible in the future " I searched around but itseems the formats aren't available for public use. Thank you. ...Show All

  • Visual C++ Pass 2D String Array By Reference

    Attn C++ Jedi Masters, I've done lots of web searching on this topic, so it's time to plea for help.  :) I'll use pseudo-code and fictitious examples herein for brevity and clarity. In function f1, I build a 2 dimensional (2D) array of strings, called array1 (not const char* elements, but rather elements of the string class).  The size of each dimension is not known at compile time.  At the end of f1, I assign array1's first element's address to a string pointer so that I can work with the array later through the pointer (I need to be able to pass the array between functions): string* f1() {    ... &nb ...Show All

©2008 Software Development Network