Software Development Network Logo
  • Visual C++
  • Visual C#
  • Windows Vista
  • VS Express Editions
  • Visual Basic
  • VS Team System
  • SQL Server
  • Architecture
  • Microsoft ISV
  • Visual Studio
  • .NET Development
  • Windows Live
  • Visual FoxPro
  • Windows Forms
  • Visual J#

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

JonSiii

Member List

smc750
Flame_Djinn
TMacPhail
Gerlop
XMLViking
Vinh Lam
LambrosKaralis
Robert Green
Kim_
Paul Seaton-Smith
keithster
JK302
androKLez
Penny Reed
Sven De Bont
Alex Suzuki
Wylbur
the test guy
Sista
Zabi
Only Title

JonSiii's Q&A profile

  • Visual Studio What is MSBuild?

    It would help if someone let on what MS Build is Siv Just one clarification here. > Also, the msbuild.exe command line environment will ship with the .NET Framework SDK 2.0. Actually, msbuild.exe will ship with the .NET Redist (the .NET Framework) itself . So you'll be able to build almost any managed project without even the SDK. Here's some exceptions that will need extra installs:    -- VC projects: you'll need to install the .NET SDK for this, or VS itself, or the Platform SDK, to get vcbuild.exe and the VC tools    -- msi deployment projects: not supported by msbuild, install VS and uses ...Show All

  • .NET Development Transporting a newline character (\r\n) across a web service

    Hi, I had some trouble getting newlines to serialize across web services. I then read that a web service in .NET 2.0 adheres to a certain soap/xml standard wherein each \r\n character is serialized as \n. I've already written a string substitute class that overrides its own serialization and replaces the unix newlines (\n) back to Environment.Newline (\r\n). I was wondering if there is a better (cleaner) way to do this, e.g. some setting or tweak on the way objects are (de)serialized. The WS does not need full interoperability, so anything that would limit it to be used only on the .NET platform would be ok too. thanks, Stephane ...Show All

  • Visual Studio 2008 (Pre-release) Reliable Transactions.....

    Is there a way to call a method at a publish endpoint and if that site is down, have messages queued so that when the site comes back up, those messages are sent all with out the client not caring or knowing   thanks Ralph Yes, using the netMsmqBinding. The service exposes an endpoint over netMsmqBinding, the client will be configured for the same binding. So long as MSMQ is installed on the client (and enabled) the client queue will be automatically created if the service endpoint is offline. ...Show All

  • Visual Studio Tools for Office Microsoft Word 2003 and WordML (How to Show/Hide Content in a Document)?

    All, How to show/hide specific sections(assume a paragraph) of a document by checking/unchecking a checkbox (I'm using Word 2003) How to lock/unlock a specific section(assume a paragraph) of a document based on (Checking / Unchecking)check boxes Can we achieve this without using VBA in Microsfot Word 2003 If at all i need to use VBA, as i'm not familiar with VBA, can anybody provide the sample code to show/hide parts(assume if i check the checkbox, i need to see a paragraph in the document, by unchecking the checkbox it should be hided) of the document using check boxes. Clear instruction with sample code (if i need to use V ...Show All

  • Visual Studio Team System /file doesn't work with directories?

    The fxcopcmd docs say that you can specify a directory using the /file option, but I can't get it to work. It just says "could not load file: [folder name]." Am I doing something wrong, or are the docs wrong What version of FxCop are you using Are you surrounding the folder with quotes to take into account any spaces that may be contained in the name Can you post the exact command-line you are using ...Show All

  • Visual C++ R

    wrote in message news:c7211700-d745-4be9-9b47-9cb493fd90ea@discussions.microsoft.com... Is it possible to read the LOGONSERVER environment variable of another domain I tried the following: -login as a local user -LogonUser() into another domain -ExpandEnvironmentStrings() impersonating the token -LOGONSERVER ist still the name of the work station Thanks for your help How does this question relate to C++ Anyway, the Environment block is loaded with the process, so it represents the current users environment, if you need the impersonating users environment you have to load it's profile (see Win32 API - Loa ...Show All

  • Windows Forms Intellisense won't work on many collections

    Am I missing anything special here references or something  A lot of collections in the .net frame work will not give any intellisense support, they all work and compile but intellisense never works with them. Some Examples. System.Windows.Forms.ListBox.SelectedObjectCollection selected = this.listBox1.SelectedItems; SelectedObjectCollection does not show up in the dropdown for the listbox. And then&n ...Show All

  • Software Development for Windows Vista ASP.NET and WWF Beta 2.2

    Does anyone know if ASP.NET still works with beta 2.2 When I try to run the sample applications, the build fails and gives me this error: "The name 'WorkflowWebRequestContext' does not exist in the current context C:\Windows Workflow Foundation\Examples\ASPNETWorkflowExample\2006-01-14\WebSite1\Default.aspx.cs 52 43 C:\...\WebSite1\" The WorkflowWebRequestContext should be included in the Workflow.Runtime.Hosting namespace, but when I try to do intellisense on it, it doesn't seem to find it. Does anyone have any suggestions Thanks, Nichole WorkflowWebRequestContext was removed i ...Show All

  • Smart Device Development copy file from PDA to desktop PC

    hi all any idea on how to programatically copy file from PDA to desktop PC using vb.net in VS.NET 2003 to send it from the pda to the pc you would need to do something like ftp on the device and send it to ftp server in IIS on the desktop pc. you can use ftp on if the winnet.dll exists on the pda. for ftp look at www.opennetcf.org they have a ftp class in their sdk its much easier if you get the pc to get the file from the device ...Show All

  • Windows Forms Sending keystrokes...

    I'm trying to emulate sending a "CTRL-N" to a form in a Windows app after checking for a previous instance of the application. Once I determine if the users has the existing application up, I activate the current window, send a keystroke and then close the app that had the previous instance when launched. When the AppActivate runs, I can see& ...Show All

  • SQL Server Microsoft SQL Server 2005 JDBC Driver

    I'm getting the following exception when attempting to connect to SQL Server 2005 using Microsoft's new JDBC driver: com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host has failed. java.net.ConnectException: Connection refused: connect The help docs suggest checking connectivity using telnet. So attempting to connect via telnet to 127.0.0.1:1433 generates: Could not open connection to the host, on port 23: Connect failed. So I try to start telnet: net start telnet I get the following error message: The service cannot be started either because it is disabled or because it has no enables devi ...Show All

  • Visual Basic Hex function and Byte type declaration problem

    I have a program that is supposed to format data into 4 hex bytes and sent thru the serial port. The declaration section contains the following: Dim Addr, MsData, LsData, CkSum as Byte Dim Cmd1, Cmd2, Cmd3, Cmd4 as Byte Data is input to the Addr, MsData and LsData bytes and ChkSum is computed as (MsData and LSData are parsed from a single text box input (0 to 4095 range): MsData = Int(InputData / 64) LsData = InputData Mod 64 CkSum = Addr Xor MsData XOr LsData Xor &HFF Cmd1 thru Cmd4 are formatted as follows: Cmd1 = Format(Hex(Addr),"00") Cmd2 = Format(Hex(MsData),"00") Cmd3 ...Show All

  • SQL Server Data Transformation: copying a table to a table... How does it work?

    Hello, Probabaly a silly question yet as a DOTNET developer, I'm trying to simulate DTS when for example, I don't have permission to perform DTS on a production server. In particular and interested regards caching of rows before the service decides to flush the buffer and write to the target table. Safe to assume DTS is cursor based What type of cursors and where Not really sure where that comes from, as this is not really ADO or T-SQL which is were I have com eaccross cursors before. SSIS and DTS shouldn't use cursors for extract or loading SQL Server, just look at the connections used, standard O ...Show All

  • SQL Server Open a table from Diagram

    In SQL 2000 when you see the database diagram, you can select a table and open it to view the data. SQL 2005, however does not allow me to do this. Is this feature missing or I am just able to find it. Thanks for your help I guess there is no such functionality in SSMS At least does someone know if we can programmatically add this functionality Best regards, Andreas Botsikas ...Show All

  • Visual FoxPro DHTML Edit Control for IE5

    I am trying to use this OLE for simple viewing some files, primarily text files, C++ header files, etc. It works well, although the text appears to be unformatted in the window. The characters are just jammed, no paragraphs or indentations preserved. It may be fine with me for this task. My question is how to implement sting search in the control. Is it possible If it is not possible, I can do it in the source file and take the coordinates but how to find this pixel in the Editor window There are a number of methods I do not understand what they do. Not only in this control  but in many others: doVerb, contextMenuAction, ac ...Show All

©2008 Software Development Network