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

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

Jagadeesan

Member List

Mark Shvarts
jcollomosse
DavideB
Mitch5713
Jassim Rahma
Sam Hobbs
Talyrond
No-spam Sam
Azzboy
mwalsh
Mattdu
TrevorHughes
Dennis Wang
Michael Hansen
Ori'
waheyluggage
David Weller - MSFT
Jag711
Eric Brinkerink
ClaudiaHelpOnVSTO
Only Title

Jagadeesan's Q&A profile

  • SQL Server SQL Server Mobile with Visual Studio 2003

    I've recently noticed the availability of SQL Server Mobile, and would like to take advantage of some of the new features, however, I'm currently using Visual Studio 2003. The requirements state that Visual Studio 2005 is required, but I was wondering if anyone has had any success getting it to work with VS 2003 I hope that I can do this with VS 2003, but if VS 2005 will be required, I'd like to clear up a few issues before asking my workplace to fork out more money for the upgrade: What have your experiences been like in getting clients to upgrade from SQL Server CE to SQL Server Mobile I've seen some postings regarding problems with specific devices which seem a bit worrying, but I was wondering how easy it was in gen ...Show All

  • SharePoint Products and Technologies Link two List Views to make Master Details

    Hi, I have created two seperate views and want to be able to click a link in one of them which will take you to the other view and only show the list items associated with the record that was clicked on, and also be able to edit and add new items that would be associated with the record that was clicked. Any help would be much appreciated. Thanks in advance, Grant. If you have a Business Data Catalog, you could try using the "Business Data List" and "Business Data Related List" web parts. From the description, they sound promising. Good luck! -Brian ...Show All

  • Software Development for Windows Vista NullReferenceException in RegisterForStatusChange

    Hi, I have a really trivial call to Activity.RegisterForStatusChange that results in a NullReferenceException. I'm doing something wrong, but am unable to find out what. My code: WorkflowInstance workflow = runtime.CreateWorkflow( typeof (MyWorkflow. BlaWorkflow ), workflowArgumentValues, workflowId); workflow.Start(); Activity activity = workflow.GetWorkflowDefinition(); activity.RegisterForStatusChange( Activity .CancelingEvent, this ); What's wrong with this The relevant part of the stack trace:    at System.Workflow.ComponentModel.ActivityExecutorDelegateInfo`1..ctor(Boolean useCurrentContext, IActivityEventListener`1 eventListener, Activity contextActivity)    at System.Workflow.C ...Show All

  • Internet Explorer Development IE 7 opening to Run Once page with error on it.

    I downloaded updates last week. I have been using IE7 for a while with no problem. I dwnloaded the updates. Now when I open my browser the page tries to go to http://runonce.msn.com/runonce2.aspx . There is an error reported for this page and it will not open up I get a blue screen. How do I eliminate this I have my home page set in the tools section but when opening it won't go to my home page until I hit the home button on the tool bar. I tried running IE7 with out add-ons. The run once page did not come up to open at all. The browser did not go to anything except a page that said that the add-ons were disabled. ...Show All

  • Visual Basic Timed Duration Run

    I need to create a loop on the same thread that will loop for a given number of seconds and provide a means to stop while counting. How might I do this   Public Sub Test () Dim StartTime As DateTime Dim LoopTime As Integer = 10 Dim x As Integer   StartTime = Now   Do Until StartTime . AddSeconds ( LoopTime ) = Now   x += 1 Loop   MessageBox . Show ( x ) End Sub   ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where is the download?

    It is 12:48 pm here (GMT + 1)... in Nuku'alofa (GMT + 13) it is tomorrow... So where the hell is my download link :-D EvilOneSD wrote: Hmmm... the holy grail is here on my desk. Btw... it's "tomorrow" now... What, you have one too :p It's been "tomorrow" here all day... heck, it's almost the day after here! ...Show All

  • Gadgets prevent Setting UI from opening?

    Does anybody know of a way to take control and prevent the Settings UI from opening when the user clicks the little wrench icon I've set a breakpoint in the onShowSettings event that I set and looked to see if I could see some kind of event object that I could set cancel on but no go. I also tried returning false, but that had no effect either. I'm thinking I'd like to trap the user action and display my own setting within the gadget itelf or just block the setting UI during certain times of the gadget lifecycle. It's mostly becasue I think I should be able to, but there's also this: There is a small window of time between when I click a button that launches a flyout and it actually opens. If you are quick enough, you can also ...Show All

  • Visual Basic How do you use Serialization and deserialization to save a class which contains other classes ?

    I have a class <Serializable()> _ Public Class bunchOfData Implements ISerializable Public abool As Boolean = False Public  asingle As Single = 0 Public alist As List( Of PointF) = New List( Of PointF) <SecurityPermissionAttribute(SecurityAction.Demand, _ SerializationFormatter:= True )> _ Overridable Sub GetObjectData( _ ByVal info As SerializationInfo, ByVal context As StreamingContext) _ Implements ISerializable.GetObjectData info.AddValue( "abool" , abool) info.AddValue( " asingle " , asingle ) info.AddValue( " alist" , alist ) End Sub Protected Sub New ( _ ByVal info As SerializationInfo, ByVal context As ...Show All

  • SQL Server Service Unavailable - SSRS 64bit

    We've recently attempted to get RS 2005 64bit up and running on MS Virtual Server and the installation seems to have worked properly (the RS Configuration all seemed fine also). However, when going to http://localhost/Reports or http://localhost/Reports Server , it gives me the message "Service Unavailable". Everything looks good in IIS (using 2.0). What else can I do to troubleshoot this issue Are the services started properly What does the event log and the log entries in the LOG directory of Reporting Services tell you There has to be a problem while starting up the service. HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Windows Forms How to enable a control from the parent form when the child form is closed?

    This is the code I have but havent found a way to compile it Private Sub Form2_FormClosed( ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles MyBase .FormClosed Dim myForm As Form1 Dim btn As Button Dim myControl As System.Windows.Forms.Control myControl = myForm.Controls.Find( "Button1" , True ) btn = CType (myControl, Button) btn.Enabled = True End Sub Tks I changed the code to this, but the button is still disabled after closing the child form Dim myForm As New Form1 Dim btn As Button Dim myControl() As System.Windows.Forms.Control myControl = myForm.Controls.Find( "Button1" ...Show All

  • Visual Studio 2008 (Pre-release) Not able to add a visual to another UIElement

    I am trying to copy a visual to another UIElement like canvas from my selected/hit test visual and I am getting this errror. Must disconnect specified child from current parent Visual before attaching to new parent Visual. Although I am removing the visual from the current parent. _currentVisualCollection.Remove(( Visual )_hitResultsList[0]); Any suggestions. Basically I am trying to implement drag preview with lower level visual objects. Thanks Atul ...Show All

  • SQL Server exporting to CSV

    I have a need to run an export of fields from a table into a CSV text file located on my e:\exports. Is there a simple way to do this use the following query... master..xp_cmdshell 'bcp "select * from master..sysobjects" queryout e:\exports\exported.csv -SMYSERVER -UMyUserName -pMyPassword -c -t "," -r "\n"' ...Show All

  • Visual Studio 2008 (Pre-release) Default value?

    I have the below contract but it does not seem to work. When the client calls this api without specifying the optional argument instead of setting the value to the default it is always null. I have included the datacontract and a portion of the service reference from the client. The client service reference code seems to "know" that this parameter is optional but it does not seem to "know" about the default value. What am I doing wrong Kevin < xsd:element name =" Culture " type =" xsd:string " default =" en-US " minOccurs =" 0 "/> [ DataContract ()] public class GetPaymentTypesRequestType { private string cultureField; public GetPa ...Show All

  • Visual Studio 2008 (Pre-release) How to make a window half-transparent?

    Why the flowing codes is invalid for WPF window window.opacity is also How to make a window half-transparent Help me! [DllImport("User32", CharSet = CharSet.Auto)] // API call to get the current window layout private static extern int GetWindowLong(IntPtr hWnd, int Index); [DllImport("User32", CharSet = CharSet.Auto)] // API call to set the window layout private static extern int SetWindowLong(IntPtr hWnd, int Index, int Value); [DllImport("User32", CharSet = CharSet.Auto)] // API call to make the window transpairent private static extern int SetLayeredWindowAttributes(IntPtr hWnd, int clrKey, Byte bAlpha, int dwFlags); priv ...Show All

  • Visual Studio Debugging AppDomains

    Hi! I need to debug code loaded into separate AppDomains, but it seems VS debugger will not stop at break points in these AppDomains. How can I make the debugger do this Thanks in advance. Dmitry. goddamn it! feel like a stupid :-( Thank you, John! I did actually forget to load plugin's debug symbols into appdomain along with its code. ...Show All

©2008 Software Development Network