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

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

ladymuck

Member List

Autox
Ischyrus
Ireland75
Ramesh Babu Chejarla
Skitter
Miguel Angelo
RolfBjarne
Venu123321
Ram Prasad
Samuel L
MarceloRamos
massiveoni
Spyros Christodoulou
tod
jborza
ewald simonis
WeBe
Naren Datha - MSFT
Mark Raimondi
fitzglitz
Only Title

ladymuck's Q&A profile

  • Visual Studio Tom, I see what has been keeping you busy post the E.L.

    I'm friends with Brian Button and really jazzed at this new release. I am inches from joining the Redmond campus. Anyway I wanted to let everyone know I am running a GotDotNet workspace on thiese technologies and we have over 83 members. To join simply go here: http://www.gotdotnet.com/Workspaces/Workspace.aspx id=15536008-e1a7-4c7f-b7c1-dc148491e2c6 I'd love to join your team.. I'm not sure where they have me currently located... I am 110% be ...Show All

  • Visual Studio Modify ChartObject from Code

    Hello All:      I want to be able to modify the Legend and other chart properties      from within code I can do this using Text and Field objects however      There does not seem to be a way to do this with ChartObects. Is there      another method of doing this            public void FormatReports(string strRptFileName) &n ...Show All

  • .NET Development Execute web services by name and location...

    Hi all, I am having some references for the five web services and i am having one databse to execute the web services based on some orders. I maen the order of executing the webservices is different. Suppose i want to execute web service2 as first, web service5 as second and so on.... I am having the web service name and location in the databse and i am also having the reference for the web services in my application. How to create the instance ...Show All

  • Visual Basic Open presets hyperterminal

    ok, i have a program, that pending on what is done it should open hyperterminal with the following setings Connects to COM port 2 Buad Rate: 1200 Data Bits: 8 Parity: none Stop Bits: 1 Flow Control: None Now i would think that i could just open a hyperterminal presets file. But every thing i have tired i can't seems to open it. a few examples: 1). Shell("C:\BT900.ht", AppWinStyle.NormalFocus, False )   2). Openfiledialog1.filen ...Show All

  • SQL Server Enterprise Manager Interface for SQL 2005 Standard Version

    I have been reading a lot of question and answers on the forums regarding an interface for 2005 that looks like enterprise manager. Everything says you can find it in Management Studio. I have not found it. I am looking for the query interface that enterprise manager used that looked most like an Access interface. This is what I haven't found. I am looking to right click in the database folder and have the option to create a new database. I am l ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. samples from directx SDK fails

    I am trying to build the sample code which came with directx sdk, hopefully this is the right place to ask for help. When I build the sample code from "SimpleSample", I get alot of linker errors: ------ Build started: Project: SimpleSample, Configuration: Debug Win32 ------ Compiling... dxstdafx.cpp Compiling... DXUT.cpp DXUTenum.cpp DXUTgui.cpp DXUTRes.cpp DXUTmisc.cpp DXUTSettingsDlg.cpp SimpleSample.cpp Generating Code... Compiling ...Show All

  • .NET Development Get connection string from app.config file

    How do i read my connection string from app.config file I also know that connection string is saved in settings.settings, but i don't know how to get value from there either (I found info about this only for vb, not for c#) Here is the app.config file: < xml version="1.0" encoding="utf-8" > <configuration>     <configSections>         <sectionGroup name="userSettings" type=" ...Show All

  • Visual C# How to resolve the error?

    Namaste for all, I am working on COM interop. I got a problem with an error message as "0X80070604 RPC_X_NULL_REF_POINTER." Can anybody help me how to resolve this problem with brief description. Thanks in advance. Regards, Shaji Kumar.V.K Namaste ji, You are gettin this error becoz you are passing one the parameters as null , whilst the COM component is expecting a not null value. You need to pass come va ...Show All

  • Windows Forms Treeviews and Collections

    All I would like to do is move a node on a tree. i tried doing something like: n = TreeView.Nodes(x) TreeView.Nodes(x) = TreeView.Nodes(y) TreeView.Nodes(y) = n but then i get really bizzare problems, like each time i do one of these swaps, i get 3& ...Show All

  • Visual Studio 2008 (Pre-release) "OperationFormatter encountered an invalid Message body" on Vista Beta 2

    Hello! We have 2 different deployment scenarios for our WCF solution: 1. Windows 2003 Server SP1 + Winfx Beta 2 2. Windows XP SP2 + Winfx Beta 2 The application is hosted in IIS. On both scenarios we connect through a WPF client and client proxies generated by svcutil to the host. With both deployment scenarios everything works fine. Now we tried to deploy our server solution on Windows Vista Beta 2 + IIS 7 + Winfx Beta 2. Tryi ...Show All

  • .NET Development Memory issue

    Hi buddies, I am facing serious issues on memmory release. Issue is after disposing the objects also the memory is not releasing. It may be my code issue. I am using IDisposable to dispose and using, [System.Runtime.InteropServices.DllImport("Kernel32")] private extern static Boolean CloseHandle( object ClientList) to release the objects to memory, but still the app is holdin the allocated memory. Please help&nbs ...Show All

  • .NET Development how to setup a vpn connection in C# windows based applications code?

    hi,        I am new in this group. I have problem to transfer remote computer and client computer. These computer are connected through vpn connection in manually.        I want sample code in C# to make a connection vpn connection both remote and client side code regards, thangarasu Check out the posting in this forum on  How to setup a VPN connection i ...Show All

  • Windows Forms DataGridView and combobox

    I have a datagridview where a comboboxcolumn's values are relying on another comboboxcolumn like: CodeCategory            Code PRODUCTIVE              TRAVEL INPRODUCTIVE            ... The Code has to get populated upon the selection of the user in the ...Show All

  • Visual C# 'My' in Vb.net

    in VB.net we can write ' My ' in our code like My .Network My .Computer what can we use equal that in C# Dear faty we were talking about My in Vb.net 2005 not in 1.1 but i want to help you so check this link Hope it helps ...Show All

  • Visual C++ template template parameter C3200 compile error

    Hi, The following C++ code generates a C3200 compile error in the retail release of VS 2005, which seems to me to be a compiler bug. Anyone seen this Know a workaround template < class P> class RefCounted{}; template < class T, template < class > class Policy > class tSmartPtr : public Policy< T >{}; template < class T> class InterfacePtr : public tSmartPtr<T, RefCounte ...Show All

©2008 Software Development Network

powered by phorum