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

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

Jasbir

Member List

bobkat
learnerplates
Chila
mfitz
Robin Message
BLW
gigo318
NETknightX
hawklixingyi
peysche
BryanF
Kellyho
jeveret
NarcisoLema
Dave Wesst
DLDeveloper
Khin
msebald
Reema
David_P9
Only Title

Jasbir's Q&A profile

  • Windows Forms VS 2005 Deployment Projct - "Installation is taking longer than expected"

    Hi, I am using VS 2005 Setup and Deployment project. I have got following as prerequisites.... 1) DNF 2.0 2) MDAC 2.8 3) MSI 3.1 Question : Setup.exe starts with .net installation in unattended mode. After progressbar is 100% first time, following status message appears for rest of the installation. "Installation is taking longer than expected" How do I make installation not to display this message Thanks, Kapil ...Show All

  • Visual Studio How do I pop a messagebox in a wizard?

    Does anyone know of an alternative to ReportError in a new project wizard This looks kind of silly: ReportError("Done! Templated project ready for customization...");   This does not work: MessageBox.Show("Done! Templated project ready for customization...");   I'd like some kind of messagebox without the big red X and such that indicates an error.  I have a long project template, and would like to give the user some ...Show All

  • Visual Basic How do I edit properties of a dataset from XML Schema (xsd file)?

    My development environment is Visual Studio.NET 2003. When I change a property value ("NullValue") of my dataset in XML Schema (xsd file) designer and switch to form designer tab page, it often(not always) won't show my form design and display error message on a scary all-white screen.   I can't remember the exact error message but it says like "Can't construct dataset..." something. Whenever this thing happens I overwri ...Show All

  • Visual C++ Handles on a 64 bit OS

    From a MS white paper on 64 bit computing, it appears that a handle for a 64-bit application can be used by a 32 bit process. The document implies this by mentioning that a handle has 32 significant bits of data. Can someone confirm this The handles for some 64 bit test apps I have created all have only 32 significant bits so it appears to be safe to call HandleToLong so I can return a window handle to a 32 bit automation client to allow dr ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. .X Export a simple Maya model

    I've made a model in Maya 6.5 that is a simple temple with a texture applied to it. I have the .X exporter installed however I can't get the mesh to show up correctly in the Mesh Viewer. The mesh shows up pitch black and I can't see any texture applied to it. Is there a way to export a simple textured model from Maya without using shaders and effect files I'm using the June 2005 SDK. Does the SDK exporter supp ...Show All

  • .NET Development Continue a foreach loop after exception

    Hey friends. How to continue to iterate in a foreach loop after a exception is throw For example: ManagementClass mcWep = new ManagementClass("root\\WMI","MSNdis_80211_AddWep", null ); ManagementObjectCollection mocWep = mcWep.GetInstances(); try {     foreach (ManagementObject moWep in mocWep)    <--- This line may throw excetion on some itens    {     &nb ...Show All

  • Windows Forms Switch from Form1 to Form2 in VB2005 HELP

    I have 2 forms (form1 and form2), when a button on form1 is clicked, I want to show form2 upon form1 without closing form1 and go back to from1 when a button on form2 is clicked, it might help if form1 stays unabled while from2 is showing. Im having trouble because when trying I duplicate instances of a same form. Got an idea of how I can do this . What about adding something like this to both of ...Show All

  • Windows Forms Ambient Properties Question

    I'm trying to make a property of my control act just like BackColor does. Here's the code that I have that's not quite working. Private _AlternateBackColor As Color = Color.FromKnownColor(KnownColor.Control) <Category("Appearance"), AmbientValue(GetType(KnownColor), "Control")>&nbs ...Show All

  • Software Development for Windows Vista Workflow terminated by runtime - error details

    I noticed with the Workflow Monitor tool that my workflow got terminated when callling into a webservice. Where can I find more detailed information about why the workflow got terminated,   thx in advance, Joris [MVP WSS - http://jopx.blogspot.com] Thx, this works but how would you do something like this when you expose your workflow as a webservice and it is running within the context of asp.net ...Show All

  • Visual Basic Writing to a notepad

    When keyboard key is pressed, less say key A then a message " you have clicked A" should be entered into a notepad in the applications path. If the note pad already has messages, new messages should be entered after them, not in another new notepad I think you are confused.  Notepad is an application that reads and writes text files.  If you're talking about specifying a path then I'd say you mean a text file, ...Show All

  • Visual Basic Reading an external "Treegrid" control text

    Hi all, There is a control on another form. I have used the following code to determine that the control is a "TreeGrid": wndHandle = WindowFromPoint(x, y) ' get the caption/text of the window wndCaption = Space$(256) length = GetWindowText(wndHandle, wndCaption, Len(wndCaption)) wndCaption = Left$(wndCaption, length) ' get the window's class wndClass = Space$(256) length = GetClassName(wndHandle, wndClass, Len(wnd ...Show All

  • Visual C# How do I get memory back when I don't use a FORM

    Hi all I have a form that I only need to load if it meets the certain criteria.. I am using Ezula^ Ezula1 = gcnew Ezula(); And In the InitializeComponent(); I have some functions to determine if the form needs to run if not return false....... How do I deactive and unload the the gcnew Ezula(); from memory........ I have not done a form_load yet,,,,,, public:Ezula(void){ InitializeComponent(); // //TODO: Add the ...Show All

  • SQL Server Report parameter with datetime

    Hi, Anyone can help me I created a store proc with @startdate and @enddate in query analyser - I run it as Exec SP_Admission '2006/01/01','2006/01/25' and it is ok. Then I created a report in VS2005 and set the parameter as datetime in report parameter. if I manually force to fill startdate and enddate with ‘yyyy/mm/dd’ format in preview, it works. However if I choose the date from the given ...Show All

  • Visual Studio Team System Task "SharePointPortal" from Group "Portal" failed

    Can't create a new project. I've searched for solutions in this forum but not found anything specific. Here's the log: 2006-05-02 20:49:05Z | Module: Engine | Thread: 10 | Running Task "SharePointPortal" from Group "Portal" 2006-05-02 20:49:05Z | Module: WSS | Thread: 10 | Language id: 1033 2006-05-02 20:49:05Z | Module: WSS | Thread: 10 | Verifying site template exists on the server using http://servidor3/_vti_bin/Site ...Show All

  • Visual Studio Express Editions 'static binding' with C++/CLI?

    I have a C++/CLI solution I created in VS2005 Express consisting of a windows forms project (the main programm) and a few libraries - now I'd like to create a single executable instead of an executable and a bunch of dll files. As I can't create static C++/CLI libraries (or can I ) how else can I compile them into a single executable Note: this isn't about the installation only, but mainly about the resulting programm being a (very) small tool t ...Show All

©2008 Software Development Network

powered by phorum