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

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

LATurner

Member List

wPa
Dimitris_De
BCras
Mayukh142725
JohnMatthews
Mark Essien
bohan
RussellE
Stuart Preston
Mark Aaron
Mark Sztainbok
smithers
Edward Bakker
Jul
MartinMalek
Larry P
Pierre-Andre
John Jeffers
muelle60
57Ford
Only Title

LATurner's Q&A profile

  • Visual Studio 2008 (Pre-release) Cannot set Image Source from IValueConverter?

    I'm trying to use an IValueConverter to pick an image to show. In this case, I have images of country flags that I want to show next to the country code. I also have a tooltip with the full country name. Here is the Xaml I'm using. This Xaml shows a hard-coded image name that works and another image whose source is set from the IValueConverter. The tooltip is also set via an IValueConverter and that works great:  <ControlTempla ...Show All

  • Visual C++ how can i use the type struct in VISUAL C++??... i'm new in visual c++

    hi! i have a   program in c++ and i want to  do it in visual c++, but i found a problem, in the  code program  made in c++ i use a type struct : struct  ind {   char *c;   int f; }     but i think that in visual c++ doesn’t exist the type struct ,  i'm not sure..... can i use the type struct in VISUAL C++ or what other kind of struct may i use i think that is the main question.... WH ...Show All

  • SQL Server Help: I can open my database in Management Studio, but can't connect it in Integration Services

    Received error tip: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) I'm using the Evaluation Edition of SQL Server 2005, Windows XP SP2 Home Edition. I have disabled the firew ...Show All

  • Visual Basic VS2005 IDE is soooooooooo heavy!

    I have a Pentium M 2.0, 1GB RAM with WinXP PRO... ...and VS 2005 IDE is soooooooooooo heavy and slow! I know that working on a VB solution with 10 projects is not the same as working with the "Hello World" sample! Some delays should be expected. But my IDE stops responding every 10 minutes on sereral actions, like opening the designer of a form, modifying a typed dataset. Sometimes I have to wait for a few seconds for just a copy to ...Show All

  • Architecture Middle Tier Design Question

    Let's say I have two applications that needs to communicate with each other. In a nutschell, when I design an application (not always of course), I have my business component (Facade Layer), data access component, and my domain objects (DTO's), which makes up three seperate assemblies. Now, let's say I am building the Sales & Marketing application that needs to communicate with the Accounting components. I am not sure if the Sales ap ...Show All

  • Software Development for Windows Vista Xaml-only workflows and customization

    I've got a question or two about the long-term plans for Xaml-only (markup-only, xoml) workflows. It seems that if you want to allow some level of end-user customization of workflows, you'll want to implement them in Xaml-only rather than using the code-only workflows. Then you can distribute a set of Xaml files with your app and load them at runtime to execute the workflows. You can even host the workflow designer and give your users a way to m ...Show All

  • .NET Development Logout user programatically in ASP.NET 2.0

    Hi everyone, I want to logout the user programatically in the code behind file when the session variables get lost. I have a userID Session variable setted when the user logs in that I use to many things site wide but frequetly the value of this variable is null so I want to logout the user to set the variable again. I am using the default ASP.NET way to store session state. Other question is: Do you know why a lost the session varia ...Show All

  • Visual C++ meaning of a=a++

    I hold the idea that the current result of this code is 0,but in vc6 and vc2003,it's result is 10! could you tell me why btw,the result if this code is 0 with java compiler. int main() { int a=0; for(int i=0;i<10;i++) { a =( a++); } cout<<a<<endl; return 0; } Can you explain why you expect it to be zero You have initialized a to 0, then you increment it inside a for-loop that loops ...Show All

  • .NET Development SqlParameter Caching in ASP.NET on server side.

    Hello Friends, I have an idea to cache the SqlParameter objects in an ASP.NET application or website. I mean when we are using any SqlCommand object to execute any stored procedure, we have to add SqlParameter objects to this SqlCommand object to execute the given stored procedure. Now my concern is, after creating any SqlParameter object and adding it to parameters collection of SqlCommand object, i want to cache this newly created SqlPa ...Show All

  • Windows Forms Email from app

    How do I setup a linklabel in my Windows form to use outlook to send email  I'm assuming this is much different than doing from a web page. Robert Have you added the reference to System.Web.dll   This involves more than the Im ...Show All

  • Software Development for Windows Vista How to programly remove a system font

    It is a little hard to choose an appropriate sub-forum to post this thread. What I can tell you is the question is related to windows SDK. I use RemoveFontResourceW in GDI32 to remove the system font Roman, but failed. The step as follows, 1. Call RemoveFontResourceW. (The return value is non-zero, that is, the function succeeds) 2. Call SendMessage(HWND_BROADCAST,WM_FONTCHANGE,0,0) (The return value indicates it succeeds) 3. Move ro ...Show All

  • Windows Forms Autocompletion in Textbox

    Hi From a database I retrives information from a UserTable into a custom class UserClass. This table contains stuff like Title, FirstName, LastName, Birth, etc........ wich is mapped into the my UserClass. I use my UserClass to populate a AutoCompleteStringCollection variable. During this step I combine Title + FirstName + LastName + etc,, to FullName,  to give a informative list to the user. In a Textbox the user can select from t ...Show All

  • Visual Studio Express Editions Developing on XP for Win2k, Office 2000 and above

    I am using Visual Studio Express for Visual Basic on a Windows XP machine with Office 2003 installed. I have written a VB application that collects data from the USB, manipulates it, and places the manipulated data in Excel and configures a graph. I have run into problems deploying the application on a Windows 2000 machine with Office 2000. I have been able to resolve these problems by editing the project on the WIndows 2000 machine an ...Show All

  • Windows Forms .NET application crashes until it is moved to another directory

    Hello I have a very strange behaving: I have a compiled .NET application which uses System.Windows.Forms and some dlls which I have written. All dlls are pure managed code dlls. I work with .NET Framework 1.1 and Visual Studio .Net 2003 on a platform with Windows XP professional SP 2. When I start the application in its Debug folder It crashes when I close its main window. In the Folder Debug thre is only my application (MyApp.exe). The ass ...Show All

  • Visual Studio Team System Track the "for" statement

    Hi, I need to track the "for" statement in my code. For this i am going thru the instructions and checking for the node type "for". But i could not get the solution. My code is ......... -------------------------- int memberCount = type.Members.Length; for ( int  mc = 0; mc < memberCount; mc++) { Method method = type.Members[mc] as Method ; for ( int count = 0; count < method.Instruction ...Show All

©2008 Software Development Network

powered by phorum