Software Development Network Logo
  • Smart Devicet
  • Visual C++
  • Windows Forms
  • Visual C#
  • IE Development
  • Visual Studio
  • Visual FoxPro
  • SQL Server
  • Microsoft ISV
  • .NET Development
  • VS Team System
  • Audio and Video
  • SharePoint Products
  • Visual Basic
  • Game Technologies

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

swapna_n

Member List

Kolja
Kapil Aggarwal
Okugops
edburdo
CalBob
bgrva
Avhacker
eldiener
ItsMe!!!
Marnik Van Hileghem
direwolfe
Austinsnana
CPS
hotsauce
VIKI esquire
fripper
flash.tato
djshades2004
Allen_Iowa
Ogulcank
Only Title

swapna_n's Q&A profile

  • Visual C# MSMQ Remote Transactional Queues

    VC2005, C#. When trying to use a remote (private) transactional queue for sending, it fails when querying the queue for 'Transactional' with 'Specified Format Name is invalid etc.' It works with a public queue, using the PUBLIC format name. I can find no documentation to say that private remote queues do not support transactions (for sending). Any ideas If this is the wrong forum, please can you re-direct me. I could find no forum on MSMQ. THanks Tony ...Show All

  • SQL Server Selecting "like" records

    This might be a simple question. I have a LIKE statement that is working fine, however I am not sure if something else is possible. I can pull all records on a query for a person's name with a parameter value of "MARTIN". It will also pull records for "LYNN MARTIN". However, what if I would like to have that search also pull "LYNN M MARTIN" Currently "LYNN MARTIN" is not finding "LYNN M MARTIN". When the end user wants to search on LYNN MARTIN and that is what they input, I want SQL to find all records that match LYNN MARTIN and also find records that HAVE LYNN % MARTIN. I hope this make sense I guess I need to build my select statement using a WHERE LIKE statement, but I am not ...Show All

  • Windows Forms Locked up .

    Ok , why is it when i try to publish small sample learning programs that I make when doing them from the book , VBexpress hangs and locks up. the programs themselves work fine during testing , But VBXp - wont let me publish them . gives me an error of some sort . anyone else having this problem . "error of some sort". We might be able to help if we know the sort. Please post the exact text of the error message. ...Show All

  • Visual Studio 2008 (Pre-release) Zoom using mouse co-ordinates

    i'm currently building a basic graph package whereby lines (and bar charts/histograms etc) are drawn. the line's are drawn via the polyline element i am just wondering if it is possible for the user to select an area using the mouse (left clicking then dragging), and then the canvas will only display this area, then left clicking and the original screen is shown i know it is possible in other languages but i'm not sure how to do it using xaml and c#. any help would be really appreciated :-) an example of my code is: <TabControl x:Name="graphCanvas" Margin="5"> <TabControl.Items> <TabItem Header ="Line"> <Canvas x:Name="LineCanvas" PreviewMouseMove=" ...Show All

  • Visual C# Practical use of multithreading???

    Hi all, I'm not an expert on threading and to be honest I've not used threads directly before.  I have an interesting problem I'm not sure how to tackle. Basically I'm developing a .NETCF2.0 application in C# and have a class that contains an event handler to recieve SMS messages using the PocketOutlook assemblies (API). When a new SMS message is recieved this handler parses it and stores the data within a SQL mobile DB.  Now most of this processing is pretty quick but I'm a little concerned about the overhead it will have on the UI thread.  My first though was to have another thread handle these events but I cannot find a way of doing this. Basically I want a seperate thread to use the SMS receieved event h ...Show All

  • Visual Studio Team System Team Build unable to Run Auto Builds now

    For some reason today, when I run a build type (automated build) thru the VSTS Interface. I get the following message back: "Failed to retrieve data from the server. Please verify the network connection and try again." I have no problem building the Solutions manually. Only encounter problems thru the Build Type. I see the following in Event Viewer on the Team Foundation Server log: " An unexpected condition has occurred in a Team Foundation component. The information contained here should be made available to your site administrative staff. Technical Information (for the administrative staff): Date (UTC): 5/17/2006 9:01:20 PM Machine: DALENG01 Application Domain: /LM/W3SVC/3/Root/Build-5-127 ...Show All

  • Visual Studio Tools for Office parameter passing to winword.exe

    how do i pass parameter to winword.exe and how do i access that parameter to winword.exe using VSTO2005SE let say i want to pas winword.exe 100 and i would like to read the 100 and do computation before i open the document Hi, Word has no facility for allowing arbitrary parameters to be passed (and retrieived) from the command line. If there is a specific problem you are trying to solve, let us know and perhaps we can suggest an alternative solution. Sincerely, Geoff Darst Microsoft VSTO Team ...Show All

  • SQL Server Raw File reader utility?

    Does anyone happen to know if there is a raw file reader utility available One of my processes drops a couple of interim raw files and I'd like to be able to look at the data in them in a columnar format without having to run a downstream data flow with a reader inserted. Have a look at this one I've just finished. http://sqlblogcasts.com/files/folders/ssis_tools/entry1528.aspx Feedback please as this is hot off the presses ...Show All

  • Visual Studio Express Editions Visual Basic Express Edition E-book

    Where in the registration portal is the link to download the e-book for the Visual Basic Express edition. Can anyone please help me. I am a beginner. Any ideas or recommendations woud help. I think you'll find it will appear after a few days.   http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=371418&SiteID=1 or this may be what your after   http://www.microsoft.com/mspress/companion/0-7356-2213-2/   ...Show All

  • Windows Live Developer Forums Sign In Messages

    How can I detect a user has signed in using MessengerClient.dll I can only find information on local user status changed. ...Show All

  • Software Development for Windows Vista Making a GUI subservient to the WF

    I've got a situation where I am attempting to write a state machine workflow. This workflow responds to events on two data exchanges: 1 for network messages being sent from a central back-end location, and 1 for events sent from the GUI such as a submit button being pushed. I've got the 2 exchanges set up just fine. The other part of this is where I'm having difficulty finding a best practice. I want the Workflow to tell the UI which pieces of the UI should be enabled or disabled based on a rule set that I will probably store in a policy. For example, when the state changes, I want the policy (which reads variables from some dependency properties that are set by incoming events) to then fire off events such as DisableSubmitButton that will ...Show All

  • Windows Forms How do I create a copy of a datatable - and the copy not have any reference to original?

    I would think the clone method could get me a copy of the datatable, but does it copy data too I want to mess with the copied datatable, without ever affecting the original. Any ideas Thanks. you can try as this: DataTable DataTable1 = new DataTable(); DataTable DataTable2 = new DataTable(); DataView DataView1 = new DataView(); DataSet DataSet1 = new DataSet(); // Copy the entire DataTable. DataTable2 = DataTable1.Copy(); DataSet1.Tables.Add(DataTable2); ...Show All

  • Smart Device Development GPRS Connection Setup in Code

    Hi, I was wondering if there is a way to configure a connection for GPRS on a windows mobile 5 device in code. I am having a few problems doing it through setting the registry as I can get the connection to appear under the Connections > Manage existing connections dialog but if I try and connect to the connection I am prompted for the username and password however I do not want this prompt to appear. I have been able to do configure the connection with great success for a windows ce 4.2 and pocket pc OS however it seems a little different for the mobile 5 device I am working ok. I do not want to import registry entries, I would like to be able to set the registry values in code, which is working as I get the connection in the required ...Show All

  • SQL Server Manual validation of external metadata

    Hi, is there a way to start validation of external metadata manual My problem is this: The package uses a variable as connectionstring for flatfile source, and another variable for the destination table. Running the package gives a warning about external metadata that needs to be updated. Normally I update this data by just opening the data flow, and answering the question for updating with yes. This time that deosnt work, I think because the variable is not set, so there can not be any conflicts with external metadata. I dont want do disable validation, but just validate one time and then save the package. Any ideas Regards, Jan Hi Andy, unfortunately it is not an option for me to ...Show All

  • SQL Server On which platforms is SQL Server 2005 Compact Edition supported.

    Will it be possible to run SQL Server 2005 Compact Edition on the following platforms: Windows 2000 Windows XP (if yes then on which versions of it) Vista x86 Vista x64 Are there OLE DB providers for SQL Server 2005 Compact Edition The SqlCe will run on this : http://www.microsoft.com/downloads/details.aspx FamilyId=85E0C3CE-3FA1-453A-8CE9-AF6CA20946C3&displaylang=en#Requirements And it's not OleDb Provider, but it's SqlCe Providers. It's use the OleDb in under layers. OleDbConnection -> SqlCeConnection OleDbCommand -> SqlCeCommand .... ...Show All

©2008 Software Development Network