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

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

slopera

Member List

Steve Sills
gcaplan
limeypilot
jacoroux
Ibrahim Malluf
jeffehrl
wantedNooby
sunshine2005
Tzu-Yie
Peter_DK
uwel
GordonBeMe
Eric_D
tcochran64
GolanHaba
SebasC
Jon Langdon
rushman
MELVINE
Fire2Burn
Only Title

slopera's Q&A profile

  • Windows Forms modifying control properties

    when I create a simple form application project in vc++ express I have these two files created by default, form1.h & project_name.cpp now suppose i add a text box in form1 I'm not able to change the properties like text of this textbox from anywhere else other then form1.h (say if i want to change properties from this file project_name.cpp) its a very basic doubt but I've done evrything from making textbox public to anything wierd possible :( please help.. !! I found VB really easier & faster to use then vc++ :(( tia -- Hi!   All right here. Your form contains con ...Show All

  • Smart Device Development Device Emulator stopped working after uninstalling Platform Builder

    Hello I am using VS 2005. I was recently working on one problem and had to install evaluation edition of Platform Builder. After I uninstall that, I can no longer use the Device Emulator from VS 2005. When opening Device Emulator Manager, it shows only "Others" item, and DataStore is completely missing; though from VS 2005 Tools/Options/Devices I can see all the platforms still on my PC. How can I fix the emulator settings Thank you Hi Igor Have you tried to repair your VS 2005 installation And check this post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=11719&Site ...Show All

  • Windows Forms language

    hello i have installed windows 2000 professional and vs.net 2003 but i have a problem how can i write on my application with arabic language. does this problem is with windows 2000, and if it is yes how can i solve it,and if this problem with VS.Net then how can i solve it  thank you for the time and for the help that you gives to m ...Show All

  • Visual C# Probleme whith WebPartmanager

    i try to use an WebPartmanager in my aplpication but when i excute i have this error [SqlException (0x80131904): 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)] System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) +734979 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) +188 System.Data.Sql ...Show All

  • Visual Studio Express Editions Visual C# Application Development and the .NET Framework

    Hello, Is it possible to create any applications with "Visual C# 2005 Express Edition" that can be deployed on another PC running the Windows XP operating system without the .NET Framework 2.0 installed on that PC computer Thank you, Robert Hi, No, its not possible. .Net applications require the .net framework... cheers, Paul June A. Domag ...Show All

  • Visual Basic Treeview:: SelectedNode()

    Hi, I am working with a Treeview control for some Help Application... I have a node structure like the below one N1 N110 N111 N112 N2 N210 N211 N212 If I Press or Click N110 I need to perform some operation. I am doing it in this way.. strSelectedNode = TreeView1.SelectedNode().Name If (strSelectedNode = "N110" ) Then ..... ElseIf (strSelectedNode = "N111" ) Then End If What happens is for the first time I am not getting correct SelectedNode().Name it refers to the previous or initial selection. Like if N1 is my default selection and if I p ...Show All

  • Visual Studio Tools for Office how to add xml markup to a range

    Could somebody give me some reference links with samples on how to add xml tags to ranges. I need to add those at runtime, have them not show up to the user, and be saved with a document. Is it possible I guess I'm a little unclear as to what you're trying to do here. The simplest way to do what you describe is do use databinding to the ranges I think. If you could describe your problem a bit more I'll be happy to help. Thanks, Ade ...Show All

  • Software Development for Windows Vista state initialization activity is not being executed in a state.

    I kept one state initialization activity and other event driven activities in one state. The state initialization activity has child activities. As i understood the state initialization will be executed immediatly after the state is activated. I started the workflow and it went to initialization state , but the stateInitialization activity is not being executed. Can any body expalin why it is not being exected. Thanks. Hi Kruthi, When the workflow enters a particular state StateInitialization activity (if present in the state) is executed Can you try the following simple Scenario and see if it works InitialState ...Show All

  • Visual Studio Team System No effect of "define _CRT_SECURE_NO_DEPRECATE 1"

    For the moment I want to suppress all the deprecated insecure functions during static code analysis.  I've added this line in two separate files that get included in all source files: #define _CRT_SECURE_NO_DEPRECATE 1 to no effect -- the output still contains warning of these functions.  A colleague has resorted to #pragma to supress these warnings.  I'm curious as to why this doesn't work as documented in the help. Thanks. Sample warning: foo.cpp foo.cpp(18035) : warning C4996: '_wfopen' was declared deprecated c:\program files\microsoft visual studio 8\vc\include\wchar.h(827) : see declaration of '_wfopen' Message: ' ...Show All

  • SQL Server Order converted dates in union query

    I have the following as part of a union query: CONVERT(CHAR(8), r.RRDate, 1) AS [Date] I also want to order by date but when I do that it doesn't order correctly because of the conversion to char data type (for example, it puts 6/15/05 before 9/22/04 because it only looks at the first number(s) and not the year). If I try to cast it back to smalldatetime in the order by clause it tells me that ORDER BY items must appear in the select list if the statement contains a UNION operator. I get the same message if I try putting just "r.RRDate" in the ORDER BY clause. It's not that big of a deal - I can lose the formatting on the dat ...Show All

  • SQL Server New SQL Express Installation

    I just installed SQL Express in my workstation but when I try to create and ODBC connection, the new server does not show in the drop down. Do you have any tips... Thanks. If you are using down-level clients through MDAC, you'll need to enable TCP/IP in order to connect to SQL Express, even on the local computer. If you're additionally trying to connect from a remote computer, you'll need to consider turning on SQL Browser and open up your Firewall. Check out http://blogs.msdn.com/sqlexpress/archive/2005/05/05/415084.aspx for information about this. Mike ...Show All

  • Visual C++ problem in explicit linking of DLL

    I have made a sample Win32 DLL(not MFC) without using .DEF file(I do not have to include a header file thus).To test that i have made a sample application.It loads the DLL using explicit linking(using LoadLibrary() and GetProcAddress()).To make it work I copied the dll to the folder of the exe.Now, the dll is being loaded(the handle returnd by LoadLibrary() is not null).But the GetProcAddress() is returning a null pointer.I have run the dumpbin utility also to check things.It seems to work fine.So no prob in DLL i guess. Please help.If u need I can mail the source code. Hi! Most typical problem is that you forget to use exter ...Show All

  • Visual FoxPro Report Designer Help Needed

    I have created a statement with 2 bands 1)Acctno, 2)Orderno,  Within the page footer band I have created a portion that the user is to cut and submit back, however, due to overflow of information to a 2nd page I end up the next customers data appearing within the "submit with payment" area. I have tried to include this "submit with payment" portion within the Acctno Band, however it does not stay at the bottom of the 2nd page (it floats). Any help would be greatly appreciated! Thank you for your reply, In the event of an overflow of records to a new page "yes" I would reprint the group set, as well ...Show All

  • Visual Studio Team System Unit test generation and multiple solutions.

    Hi all, I would really like to separate my development projects from my test projects by putting them in different solutions. The problem with this is that I am not able to automatically generate unit test code as the test project can not be seen by Studio (as it is in a different solution than the current one). Anyone knows a way to solve this issue Thanks, Patrick THere is no way to directly do this. My recommendation would be to generate the tests, and then remove the the test projects from the solutions into the test solutions. ...Show All

  • Visual C++ Tips for speeding up debugging (stepping through code)?

    I've got one particular large C++ project that, in VC 2005, when stepping through code in the debugger, it takes approximately 2 seconds for each hit of the F10 key (i.e. each line of code) to be executed. I've tried many things to attempt to speed it up: disable intellisense, renaming feacp.dll, removing all additional output windows, watch, breakpoints, etc, removing navigation bar from text editor window, disabling anti-virus on the machine, closing all other apps. It's always the same speed. Running on a dual P4 2.8 gig with 1 gig of memory, and hyperthreading enabled. Are there any other tips for speeding up debugging in the ...Show All

©2008 Software Development Network