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

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

JerryPG

Member List

JBrinx
Roberto Jucá
verv
JonnoQ
Ara Petrosyan
Carlosmcg
Michael Tissington
Suneel kumar
bY73-_-j0b
AE-Sol
Jon Mikel Inza
jehan
Wodahs
Richc12345
Cinthia Junguitu
Rob Pinion
Vinay Mandy
Code_Explorer
johnlaus
mrsmithsp1
Only Title

JerryPG's Q&A profile

  • Visual Studio Team System Could some one tell how to test mixed c++?

    As MSDN said: A mixed project is a project that uses the /clr compiler option. This kind of a test project provides the ability to test the following production code: Static native libraries Native DLL entry points Standalone .obj files Mixed-mode DLL assemblies with methods that are callable. This does not include executable files because they contain unmanaged code, and unmanaged executable code is generally not re-base address ...Show All

  • Visual Studio Express Editions TreeView question #2

    Hi Is there any way to get a TreeView which is being populated with Files to read the appropriate file icons for each of the files I do have a useful program (Audacity) which can rip icons from files, but I suspect that would be a rather long and laborious procedure. Is there any inbuilt function or method to do this kind of thing Even just the system file icons would do most of the job for me. It is a bit boring when I just have on ...Show All

  • Smart Device Development Need help on MObile Internet Explorer ..

    Hi all, I have created Mobile web using Asp.net Mobile Controls. As you know, mobile phones have many different web browsers, thus I like to know more about Mobile Internet explorer's capabilities so I create more useful mobile application. I have these questions as they are very important for Mobile web application.  1.Does latest Mobile internet Explorer in Window mobile V5.0 support xhtml 2. What is the latest Html version s ...Show All

  • Visual C++ VC++ project hangs at startup?

    Hi, I was wondering if anyone has the same problem as I do. Currently my project hangs when I startup VC++. I can not figure what is wrong with my project. I can not even open my project at all. I did not do anything different when creating the project. I started off by creating an empty new project, added 1 windows form, and couple source/file files which I added and wrote myself. I was wondering can open my project to see if they have the same ...Show All

  • Visual Studio Tools for Office EXCEL

    DEAR SIR PLS HELP ASSISTANCE IN THE FOLLOWING:   1. HOW TO LIMIT THE EXCEL SHEET TO 100 ROWS AND 20 COLUMNS SO THAT THE USERS DONE KEEP SCROLLING UNWANTED BLANK AREAS.   2. CUSTOMIZED MENU BAR DOES NOT WORK, IF THE FILE NAME IS CHANGED AS THE MACRO PATH CHANGES ON SAVING THE FILE AS A DIFFERENT NAME.     For questions unrelated to VSTO, but related to Excel's object ...Show All

  • SQL Server Problem with Execute SQL Task

    I am having problems creating an "Execute SQL Task" which calls a stored procedure. I have tested the procedure successfully using parameters that I have hardcoded on the command line (i.e., EXEC procedure_name 1, 2). This works fine, but I'm having problems using variables(i.e., EXEC procedure_name @VAR1, @VAR2). I'm using a ConnectionType of OLE DB. When I parse the Query I get an error message that says "The query failed to parse.  ...Show All

  • Smart Device Development Activesync fails to sync after installing vers. 4.0

    Hello to all,  I have upgrade activesync from version 3.7.1 to 4.0 in order to deploy my application in VS2005 beta2 to the device. After doing that, activesync stops to work: although the AS icon show connection (green) when the PDA is in the cradle, is is not possible to get the main screen of activesync ; and, when trying to explore the device, I get the following error window:  " Critical communications services have failed to ...Show All

  • Smart Device Development Please help! PPC2003, VB.net 2005 and my app just disappears!

    Hi all, I'm at my whits end. I sincerely hope you can help point me in the right direction. I'm currently writing an application in VB.net 2005 for a Pocket PC 2003.  This app is pretty sophisticated in that it connects to a MySQL server via MySQLMobile, it reads information from ini files via Nini, it connects to a bluetooth printer via a serial port, and it uses many OpenNETCF controls, including 15 buttons on one form. Th ...Show All

  • Visual C++ Conversion of projects from Visual C/C++ version 2.0

    Hi In the msdn library there is an article describing serial communications in Win32. This article includes the complete source code of a sample program called MTTTY . I use Visual C++ 2005 (beta 2) and would like to compile the source. When I run the convertion wizzard on the sample makefile I get the following message: Conversion Issues - MTTTY: Unable to open file. This appears to be a project file from a version of ...Show All

  • Visual Studio Text template load a file

    Hi, I need to load a project file from text template and write all lines. The below code work fine, but I need to put complete "path" in property " FileSourceCode" I need to load from "current path". <# if (System.IO.File.Exists(att.FileSourceCode)) { System.IO.StreamReader sr = new System.IO.StreamReader(att.FileSourceCode); #> <![CDATA[ <# while (!sr.EndOfStream) { #> <#= sr.Read ...Show All

  • .NET Development Active Directory - Development Sandbox

    Hello, I have a project coming up where i will need to pull lists of users and groups from Active Directory for a project however i just have my XP Pro machine at home and i'm stuck as to how i could simulate a typical companies Active Directory store while i am developing the application. Has anyone got round this before or could anyone point me in the right direction Cheers John Hi John, This forum is typic ...Show All

  • Windows Forms XML in Vb.net

    Hi, I am writing a application in which I need to store some data. Now I have three option  Windows Registry, ini file or XML to choose from I choose XML as it is New concept to me.  Now when I try to make a XML document i got co ...Show All

  • Visual C++ Remember and restore a ClistCtrl Horiz Scroll Position

    I'm trying to remember and restore a list control's horizontal scroll position in my dialog. The list control displays calibration data. If new cal data is captured, the list control's contents are deleted and completely redrawn with the new data (not the best way to do things, I know...but I don't have time to redo all of that...). My users want to be able to watch a certain "area" of the list control while collecting cal data and not ...Show All

  • Visual Studio 2008 (Pre-release) Problem with TextBox ControlTemplate

    Hi, Is there a way to set the ControlTemplate of a TextBox and not putting a TextBox in it It looks like I will loose the functionallity of it when there's only a TextBlock in it. So, I have Rectangles, etc in the ControlTemplate. I have also a few Triggers in it. No the problem: I've defined a Trigger for "IsEnabled" Value="False" (Disabled) and I have this TextBox in the ControlTemplate of the Trigger: ...Show All

  • Windows Forms how to make textbox trigger on 'enter' key?

    how do i make a textbox to cause an event when the 'enter' key is pressed  do i have to just catch it in the 'KeyUp' evnet  or is there a better way thanks! KeyDown/KeyUp and KeyPress will all fire on the TextBox if&nbs ...Show All

©2008 Software Development Network

powered by phorum