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

Software Development Network >> Svetlana Loksh's Q&A profile

Svetlana Loksh

Member List

Ahmed Rob
Marco Minerva
Ronald S.
johnx
RyanWilkes
Mario Chenier
RayB1
FABIOG
AceWeb
BobPSmith
Stijn Fonck
Kyrin
Bil
matt
loris
Jeremy Jones
Carwile
Suneel kumar
bablo
DecaysChampion
Only Title

Svetlana Loksh's Q&A profile

  • Smart Device Development Using the emulator with eMbedded Visual C++ 4.0

    I am trying to use the emulator with eMbedded Visual C++ 4.0 but the compiler does not seem to recognize that the emulator exists.  How do I configure eMbedded Visual C++ 4.0 to use the emulator eVC sees it as a cradled activesync device, the same as a real PDA.    Choose "PocketPC 2003 Device". Barry ...Show All

  • Windows Forms Need help formatting a ToolTip please

    Hi, I'm coding VB.NET using VS.Net 2003, and I've got a datagrid that lists customers and the time spent working for each customer. When you mouse over the time field, a ToolTip that breaks down the specific minutes worked on for each job/task for the customer. Unfortunately, the way it is formatted now, the minutes just appear inline, right after the the job description....so the minutes don't line up from one row to the next (because the job descriptions are different lengths). Is there any way to create a ToolTip that has two columns (one for job description and one for minutes) Or, if that's not possible, is it possible to set the fo ...Show All

  • Visual C# Where's my Immediate window???

    I load up a web project or a win forms project, run it and get the debugger and the project loads. I put in a break point, it stops on the break point. I go down to my command window that in the past allowed me to do things like lblSomething.Text and it would spit out the value of the .Text property and it is now some sort of shell thing with a > beside it that doesn't allow me to do this anymore.  (Even RC1 allowed this and defaulted to it correctly)  So I go to the view command looking for the Immediate window and I sitll can't find it. What am I doing wrong I can't use VS.net 2005 until I have this, it's just such a huge wast ...Show All

  • Visual Basic How to debug

    Hello, I am relatively new to VB.NET and I've inherited an old project which is causing some grief with one particular user. Unfortunately, all I've managed to obtain from her is what appears when it dies: EventType : clr20r3 P1 : customsales.exe P2 : 2.5.0.1325 P3 : 43f209ce P4 : microsoft.visualbasic P5 : 8.0.0.0 P6 : 4333d6d8 P7 : 35e P8 : 36 P9 : system.invalidcastexception How exactly can one use this information to find out where in the code this is going on JeffL No worries, glad to help. You can also handle the ApplicationException ( from memory ) event, which equat ...Show All

  • Visual Studio Express Editions c# 2005 Aug CTP SDK doc etc...

    Hi, I installed the Visual C# 2005 Express August CTP, but it does not include the standanrd .NET SDK debugger (to debug apps in other languages) and the .NET SDK documentation is also missing !!! (very important as far as I'm concerned ;-) Since I uninstalled .NET SDK Beta 2 I don't have any documentation anymore ... I think I remember separately downloading a SDK for a prev beta version of C# Express ( ) Is it possible to get the .NET SDK corresponding to Aug CTP .NET or at least the SDK doc thank you Philippe Montreal ok, for those interested, I found the .NET 2.0 doc online here : http://msdn2.micros ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Pixel and vertex shaders

    hi, im wanting to learn how to use common framework inorder to show off my own vertex and pixel shaders. does anyone know where there might be a tuttorial for creating an evironment using programable shaders thanks in advance Okay... well there are two approaches you could take: 1. If you know what your shaders do (and hence what sort of input/output they require) then you can try and pick an SDK example that's similar and retrofit it. This will work fine for the specific shader(s) you know about, but isn't flexible enough to handle any/every shader. 2. Attempt to write a fully flexible shader-based gr ...Show All

  • Visual C# How many Lines in RichTextBox

    I've loaded a .rtf file in richtextboxt control. Now i need to know: 1) How many Lines are there pls help me & encourage me Int32 numberOfLines = myRichTextBox.Lines.Length; Sheva ...Show All

  • Visual Studio Team System private branch for developer

    I know that this is not the default way to work in VSTS, but I think that when there is a big change private branch should be used. that way: 1. changes of others will not be a problem 2. at the end of the work merge to the main branch will be done this is an option - instead of working on a normal workspace. I wanted to asked if someone works that way, and if it is recommended thanks Ori, If you are talking about an item of work performed by a single developer, I would recommend using a Shelveset rather than cluttering up the repository with another branch. ...Show All

  • Visual Basic Win Forms Databinding with DataGridView - how to hide columns?

    I apologize in advance for asking such a simple question, but I've looked around quite a bit and can't find an answer. I'm trying to do something like this:         Dim dt As New DataTable         dt = MyObject.GetList(RecordID)         Dim bs As New BindingSource         bs.DataSource = dt         With dgReports             .DataSource = bs         End With Which works fine, but ...Show All

  • .NET Development SSL connection by SOAP Client

    I want build a soap client that connect it to a asp net webservice. I imported the wsdl file via the Viual studio 2003 plugin. (Add webreference) My question is: Is the SSL support by the created classes enabeld   If the web sevice you are calling is at a https address then SSL will be used by the underlying HttpWebRequest object. You can verify this by using System.Net tracing or netmon: see the posts here: http://blogs.msdn.com/dgorti for more details. ...Show All

  • Visual Studio 2008 (Pre-release) XSD for system.serviceModel configuration

    Is there an XSD available for the system.serviceModel configuration Juval from Idesign updated XSD, it works in most of the cases, so you can use this xsd file for now. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=284646&SiteID=1 How to: (1)Download xsd file from here http://www.idesign.net/idesign/temp/dotNetConfig.zip (2)rename current dotnet config file (3) copy the downloaded file(.XSD file) to C:\Program Files\Microsoft Visual Studio 8\Xml\Schemas -Thank you Madhu ...Show All

  • Visual Studio Team System TeamFoundationServerUnauthorizedException

    I'm trying to access TeamFoundationServer from another machine, and keep getting TeamFoundationServerUnauthorizedException errors. I'm writing a simple app to list WorkItems but cannot get access to the Server.         NetworkCredential nc = new NetworkCredential( "myusernameondomain", "mypassword","domain_name_tfs_sits_on" );         TeamFoundationServer tfServer = TeamFoundationServerFactory.GetServer( "http: //vsts_server_address:8080", nc );         WorkItemStore wiStore = (WorkItemStore)tfServer.GetService(typeof(WorkItemStore));  &nbs ...Show All

  • Software Development for Windows Vista Uninstall?

    Is there a way to uninstall vista beta 1 and have it move my old windows folder back I also can't seem to get back onto my windows xp from booting up, the loading screen freezes on me. I'm sorry if this isn't the right forum for this but this is all I could think of. ...Show All

  • Visual Basic Mail Slots for message passing between threads

    Hello all hope you can help i need to read and write to mail slots or find another way to message between a main application and a connection handler thread but i am struggling to find information on this. here is my declaration of the mailslots. 'Mail Slot Declaration Private Declare Auto Function CreateMailslot Lib "kernel32" ( _ ByVal lpName As String , _ ByVal nMaxMessageSize As Integer , _ ByVal lReadTimeout As Integer ) As IntPtr Private Declare Function GetMailslotInfo Lib "kernel32" ( _ ByVal hMailslot As IntPtr, _ ByRef lpMaxMessageSize As Integer ...Show All

  • Visual C# Ineritance Questions

    I have a class that I have derived from anther class. Something like this: class Parent { // Few public property's here // Our save function protected void Save ( string fileName ) { // Save our baseAI Utilities.XMLSerializer.Save ( this , fileName ); } // End save function } class Child : Parent { // Function to save the player public void Save ( ) { // Call our base save function base .Save ( "test" + ".ply" ); return ; } // End Save function }   My XMLSerializer serializes an object and saves it. I know it works and it not causing the problem. What I am trying to accomplish is get my Parent to s ...Show All

©2008 Software Development Network