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

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

mscherotter

Member List

Marius Roets
Dmac721
KSV
Ashish757
A. Argueta
sosodef_87
DorD
lfunk3
Toronto Media Tech
kalyan chakrarthy
DesperateCoder
ETor
Johan Olsson
Nanneq
Karthik987
Leif Eklund
Fess Up
Ventmore
technoxicated
Mike Boone
Only Title

mscherotter's Q&A profile

  • Smart Device Development Regarding Emulator Device

    Hi To All, I am  new to the Emulator device environment, I want to know how to start my programming with this device. Please Help Me.   Thanks In Advance Raja   Hello, This link might be useful for you http://msdn2.microsoft.com/en-us/library/sa69he4t(en-US,VS.80).aspx -Thanks, Mohit     ...Show All

  • SQL Server Reporting Servers - Export to Multiple tabs in Excel

    I need to create a Reporting Services report that contains multiple result sets.  I want each result set to export to a different tab in Excel.  I want to be able to name the tab.  I would also like the headings in Excel to show up in the Header section of Excel, rather than in the body of the spreadsheet.  Is there a way to accomplish this task. Put multiple tables in your report and then put page breaks before them. Each manual page break becomes a new tab. For headers, you need to use a Excel DeviceInfo setting, SimplePageHeaders (see http://msdn2.microsoft.com/en-us/library/ms155069(en-US,SQL.90).aspx ). If yo ...Show All

  • Visual Studio Express Editions Using Data from a Checked Listbox

    Howdy, I'm trying to use a checked listbox to choose some numbers to add and return the total value to a label. Here's where I'm at so far (i'll throw in as much code as I can). I want to step thru the checked listbox list and if a box is checked add it's value to the total and then return the total of the checked boxes to a label. I can do it with a bunch of If statements, but I've got 14 checked listbox items and would rather use more automation and less code, i.e. For/Next or Do/Until all the items have been checked for check marks: Dim i, intSumOfNumbers, intBox1, intBox2, intBox3, intBox4 as Integer intBox1 = 4 intBox2 = 3 ...Show All

  • Software Development for Windows Vista Which DDK to use?

    This seems like a dumb question, but which DDK should we use to develop with the Feb CTP version of Vista We would like to see a WaveRT sample driver... There is a WaveRT sample in the latest WDK which simships with Vista CTPs. MSDN Universal subscription is recommended to ensure you receive these things. ...Show All

  • Software Development for Windows Vista CreateWorkflow() - where is it?

    hey guys i am using 1.2 beta of WWF and can't find the CreateWorkflow method in WorkflowRuntime class. is it going to be released in beta 2 or i am not doing something right cheers  http://msdn.microsoft.com/msdnmag/issues/06/01/WindowsWorkflowFoundation/default.aspx   This article is based on Beta 2 of WF - so yea I believe it is coming in beta 2. ...Show All

  • Windows Forms Multi-threading problem with Windows Forms (possibly SerialPort too)

    I've been having a problem when updating a windows form from a different thread. Data is received on using a SerialPort class which fires the DataReceived event (on a different thread). This thread then calls a method on a form which updates a text box. The code used in the method is just like the sample from the MSDN below, which reroutes the call so that the textbox update is done from the same thread. private void SetText(string text) { // InvokeRequired required compares the thread ID of the // calling thread to the thread ID of the creating thread. // If these threads are different, it returns true. if (this.textBox1.In ...Show All

  • Visual Studio Tools for Office launching a VSTO app within a whidbey win app

    hiya, I have a whidbey win app that contains several menu options.Some of these menu options should launch a specific smartDoc.At the moment, I have the VSTO project within the solution. Is this the  best way to do this I don't want loads of "rogue" word docs open at the same time.I have looked but haven't found an example that would be a good starting point for this sort of thing. Can anyone point me in the right direction cheers, yogi righto, ta for the swift reply.I'll do a bit more reading on the subject as it's still a bit new :-) cheers, yogi ...Show All

  • Windows Forms Data grid multiline problem

    Hi, how can i turn off the multine feature of a datagrid cell    I have a data grid whose cell accepts arbitrary size of text but the text seems to wrap and the user feels the data is lost because the cell only shows the last content entered.  When user hits Home in the cell being edited only the beginning of the last line is&n ...Show All

  • Visual Studio 2008 (Pre-release) GridLengthAnimation missing

    There is no such thing as a GridLengthAnimation which makes it impossible to animate the Grid panel. And since Value of GridLength isn't a dependencyproperty it can't be animated either. Would be nice to have this in a later CTP so that "everything" can be animated. Thanks for a great API! There's this work around that might help you depending on your design. However, you can always write your own implementation by simply writing your own AnimationTimeline implementation that returns GridLengths. For an example of how this would be done, check out Ian Griffiths post where he writes a samp ...Show All

  • .NET Development XsltCompiledTransform inheriting or implementing

    In a project i am making i needed something similar to Xslt, but quite different too. I managed to create it, it basically works the same as Xslt but with some differences. The language is called Sslt, and the class that does transformations SsltCompiledTransform (~ XsltCompiledTransform). I now have the following problem. The application uses both Xslt and Sslt transform classes. I also have a class that monitors a folder checking it for new files to transform. I would like for this class to have an instance of either XsltCompiledTransform or SsltCompiledTransform. Using an interface seemed like a neat solution... The class is called Monito ...Show All

  • .NET Development how to modify HTTP Post behavior when calling a webservice

    hi, i'm making a .net client for a JAX-RPC based webservice. unfortunatelly, the web service cannot be modified. i have a problem that i cannot solve: when calling a method of the webservice, an HTTP POST is sent to the server, but it needs a response from the server to continue to post the xml-data (the soap message). (i've sniffed the port the software uses, so i can tell a more precise description: in the HTTP message that is being sent out there's a field: "Expect: 100-continue" and "Connection: Keep-Alive", then, the server sends response: "HTTP/1.1 100 Continue", and then, the soap-message is sent to ...Show All

  • Windows Forms CheckedListBox Only Check One Time

    I know this is an easy thing but instead of coding a work around is there an intrinsic method to force the CheckedListBox to only allow one time to be selected   Or has anyone already coded a workaround   Thanks. I'm gonna wrap this up in a User Control But Here Is What I Did     Private Sub contactType_ItemCheck(ByVal  ...Show All

  • .NET Development Run a method in another thread

    Hi, I'm currently working on a network library that offers an XMPP stream to a server, written in C# (.NET 2.0). After the stream has been initialised, the client can send elements to the server and the server can send elements to the client independently. Now I thought I run a separate thread listening on the stream and put all incoming elements in a queue, member of the XMPP.Stream class, a client could then read from the queue when needed. Additionally I have added events in the stream that are fired when an element comes in and when the stream is remotely closed. Now when I call the event function, it will be run inside the stream reader ...Show All

  • Visual Basic Deleting files from hard drive

    What I'm trying to do is simple.  I'm just trying to delete these files from my hard drive.  My problem is I only get a popup with the last file in the array.  Here's my code. Imports System.IO Public Class Start_reference_table_update Inherits System.Windows.Forms.Form Private Sub Start_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Start.Click Dim iCount As Integer = 0 Dim mCount As Integer = 13 Dim f, fc, fso, msg, sfo fso = CreateObject("Scripting.FileSystemObject") Dim files() As String = {"cmp.dbf", "cmp.dbt", "cmp.mdx", "desc ...Show All

  • Windows Forms Reading datagrid values in a row

    Hi, I want to how can i read the current row number and the data values of the different fields in that selected row of datagrid in windows forms. plz help. Imran int CurrentRowNumber = MyDataGrid.CurrentRowIndex int ColumnToRead = 1; string DataValue = MyDataGrid[CurrentRowNumber , ColumnToRead].ToString(); easy ...Show All

©2008 Software Development Network