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

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

DIW

Member List

haran14
faithfuldave
Vidhi Yadav
Drakkaris
Mike Turner
SASMJS
Barry.Kelly
Allam
Leonardo Rodriguez
Swammie
oha_li
faktujaa
Charles Chung
Ramesh Narayanan
TXOSU
PhrankBooth
Deadlock42440
jbeaudoin_qc
peterxz
vhalexxs
Only Title

DIW's Q&A profile

  • Visual Studio Tools for Office List WordML (ilfo and ilvl) getting lost when calling get_xml()

    We have the following WordML inside our document (as viewed through Word XML Toolbox):         <w:p>           <w:pPr>             <w:pStyle w:val="Section" />             <w:listPr>               <w:ilvl w:val="0" />               <w:ilfo w:val="0" />      &n ...Show All

  • Windows Live Developer Forums API Questions

    I've run into a couple of issues in my development. Both are easy enough to work around but I'd prefer clarification if possible. The first issue is with the response. I seem to be getting a garbage character at the beginning of my response stream. This is preventing me from duming the response directly into the XmlDocument.Load() method. To verify I wrote a console stub and dumped the stream to the screen and it shows as a " " there. I've worked around this by writing the stream to a string then checking for the first occurance of the "<" and passing the substring from there into the .LoadXml() method instead but it feels very hackish ...Show All

  • SQL Server SQL 2005 Report Site Permissions

    I can design and deploy my reports to localhost no problem, however instead of the usual RS menu i get this My reports view just fine, but it means i can set permisions to allow other users to view them. Can anyone help Thanks Bad install, i just uninstalled and used the latest ctp. Works well thnx ...Show All

  • Visual Studio Binary/ASCII recognition and Binary_Masks option with SS 2005 does not work

    Hi !   We have switched to VS2005 and VSS 2005 and have now some problems with the file type recognition .   We have a filetype that contains a lot of ascii line (Defines) and after that there is a CTRL-Z and binary data. Because the recognition is very hard we set the BINARY_MASKS-option in the ss.ini to that extension. That worked fine with VS6, but VS2005 doesn`t care about the option and sets the filetype to ASCII. Whats wrong   Regards from Germany Joerg FYI, in case they are dupes of each other, I filed a bug in December about autodetect encoding in VSS ...Show All

  • Visual Studio Team System Unable to locate control ctl00oReportCell

    Hello.  I am new to TFS and am trying to complete / debug the installation of the latest 2005 Beta 2 Version. When I open the default Sharepoint page for the project I have created, I get the same error twice (title of question) in a popup box.  Anyone else have this issue and/or suggestions to fix it Thanks in advance. Steve See the following thread. http://forums.microsoft.com/msdn/ShowPost.aspx PostID=4508 Buck ...Show All

  • Windows Forms Control hosted in Web page works in IIS5 but not IIS6

    I have created a control that is hosted in a web page. It works great when deployed from a Windows 2000 server with IIS5. However, when I move the control and web page to a new Windows Server 2003 machine with IIS6. The main control loads but it displays an exception 'one of the dependent dll's can not be found'. I have checked the  ...Show All

  • Visual Studio Which SQL to install with VSTS Beta 2

    I've worked with VS 2005 before, but always with SQL server 2000.  I'm going to start over with a fresh install of the latest VSTS Beta 2 and was wondering which SQL 2005 I should install with it and which I should install first. I would like to create and debug stored procedures on the SQL server from within the VS IDE. Thanks for any advice. Hi, if you have windows installer 3.0 then sql server 2005 will be able to get installed first. if not you will get a error message about the same. The setup files for Windows Installer 3.0 is found on the team system suite DVD. Run vs.net 2005 first and you will be able to get sql serv ...Show All

  • Visual C++ Thread safety and atomicity of byte operations

    I apologize if this is not in the right forum but because of its relation to the CRT, I thought I'd start here. Using VC++ 2005 Pro in a mixed (/clr) project, I am sharing memory between processes (the other being a mixture of legacy code from various programming languages and platforms) running on Win2K Pro or WinXP Pro (same computer). I map a view to a filemap using a struct. For example, if I had a sequence of a double, an int and a byte (unsigned char), I'd have a struct like this: struct MyMap { double dVar; int iVar; byte ucVar; } and the mapping would work like this: MyMap *ptrToMyMap; ...Show All

  • Visual Basic How to halt a program???

    Let say i have two program called program A and program B, i run program A, but inside program A, i use [call shell(C:\....\programB.exe)] at the 2nd line of my codes in program A, how do i stop program A at 2nd line, until i finished running program B then only continue execute the rest of the code from 2nd line in program A Please help, if you dun understand wat im saying above, u can ask ...thanks a lot!!! ReneeC, too bad to hear that ... but i dint receive anything from you...  if you dun mind, can you please do it for me again   many thanks to you ....   Jerry ...Show All

  • Windows Forms TabControl Design Time Problem

    In C++/CLI (2005) I place a TabControl to the left, and add tab pages aligned to the left.  Problem One:  With Appearance "Normal" the tab page is fine; but the text on the vertical tabs does not show up.  If I change to "Buttons" the text show up but then there is a new problem. Call that Problem Two:  With Appearance "Buttons" the size and location the page can not be controlled.  If I edit the size property, it reverts (immediately) back to the IDEs preference.  I can't change the tab page via the mouse (move or resize).  If I go to the code, I can change these things; but I don't see that the ...Show All

  • SQL Server embed office document

    is it at all feasible to embed an office doument (specifically word) into an ssrs report so that the document will print out when renderered to pdf No, this is really not possible. You would need to translate the text into RDL to do this. We are looking at the ability to provide rich text formatting (including embedded HTML) in a future release. ...Show All

  • Visual Studio Team System How do you read pdb files so that you can extract the line number and source file information of the memebrs being checked?

    I need to get information such as the line number and the source file of the violation checked in FxCop. I've searched some threads and it is telling to use pdb files. How can I read pdb files using FxCop sdk Pdb files contain the link between the executable code (ie the assembly or binary) and the source code. You shouldn't need to read the pdb file yourself as FxCop will automatically use this to point to the source file/line in the UI if you pass the node to the Problem constructor. Under what context (ie within a rule, in the FxCop UI, etc) do you need to know the source and line ...Show All

  • Windows Forms Problem with the KeyDown event...

    Hi, I experienced a strange problem - I am currently building an application that has a user control in it and for this control I want to trap the pressing of the ARROWS keys. BUT... The problem is that only the OnKeyUp event occurs for THOSE KEYS - this is not what I  need :((. I tried overriding the ProcessKeyMessage method and found out that&nb ...Show All

  • .NET Development Static object instantiated multiple times

    I've just recompiled an app I've been working on for about a year with the final release of .NET 2.0, and I've come across a rather shocking problem. I am attempting to use a singleton for my app's preferences. A code sample is below, followed by a detailed description. namespace Apex.ProgramData {     public class ApexPrefs     {         private PrefsClass _data = null ;         private static readonly ApexPrefs _thePrefs = new ApexPrefs();         private ApexPrefs()       ...Show All

  • Visual Studio Express Editions Send information to mail

    What can i do if i want some information sent to my mail My code : Public Class Form1 Private Sub TextBox1_TextChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged End Sub Private Sub Label1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click End Sub Private Sub Label2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click End Sub Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load ...Show All

©2008 Software Development Network