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

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

DJeX

Member List

Manoj Karki
SSTXX
jayoscar
yaron nahari
Aadi1
razvantim
K8CPA
Idanle
Tracey_nz
RongPengCheng
PK_SSIS
Danielyaakove
fischere
ducati1212
Ryofire_Net
patl
itai_sh100
Jack Stone
smcer
zookeeper
Only Title

DJeX's Q&A profile

  • Visual C# SaveFile

    Ok. Can anyone tell me how to save a file as a folder format Ok. Can anyone tell me how to save a file as a folder format Link ------------- You can use System.IO.Directory.CreateDirectory () http://msdn2.microsoft.com/system.io.directory.createdirectory.aspx ...Show All

  • Visual Basic Interfacing VB app with C++ plugin

    Hi, im working on a project which includes one Application (VB) and several Plugins (both C++ and VB). Now im trying to setup an interface between both sides, to make it possible for the host to call the plugin but also vice versa from plugin to host. Now have i tried some things, like using a Interface dll which should be implemented on both the host and plugin sides. This works well for a VB plugin, but cant get in to work on C++ (cast error). Does someone as an idea to fix this problem or to solve it in another way Tnx! ...Show All

  • Windows Forms DesignerHost.exe Name property

    I'm working with the DesignerHost.exe example from Microsoft to build a custom form designer. Found here:  http://support.microsoft.com/ id=813808 My problem is that I can't get the NAME property to appear in the properties grid for the forms and controls.   Does anyone know how to get the NAME property to show up in the property grid Thanks, ...Show All

  • Visual Basic Closing an App by its process name.

    Hello,     I'm looking for a simple and effective code to add to a button for closing an application by it's process name.    If this is possible without having to play around with HWind I would be thankful for an example.    Ultimately, when the user hits the button, I would like every instance of that application to shut down.    This means scanning the process list for the number of open instances of that application. Unless there is a better way. Cheers and thanks. Private Sub KillAllProcessByName ( ByVal NameOfProcess As String ) ...Show All

  • Visual C++ ::GetWindowLongPtr() and cast errors

    It seems that ::SetWindowLongPtr() and ::GetWindowLongPtr() are defined to just map to set/get window long in 32-bit windows. The problem with this is that, even though I use the correct casts and functions, I still get a warning from VC++ about possible loss of data (because I stuff a pointer into this field). Is there any way of writing code that calls ::SetWindowLongPtr() and ::GetWindowLongPtr() that doesn't issue this warning, without turning off the warning using command line options or #pragma warning You're probably gettings warnings because the casts won't work in 64-bit code. To disable: Project + Properties, Configuration ...Show All

  • Visual C# Please help - How to get the Path of Executable of a Windows Service...

    Dear Experts, I would like to get the parameter "Path to Executable" of a Windows Service programmatically. As you know, we can use Service MMC snap-in (Control Panel --> Services) to adminstrate Windows Services. If you right click any one of the Windows Services and then choose Properties , you would see the Service snap-in. In the Service snap-in, there is an item called "Path to Executable" that shows you the original location of your Windows Service's executable. Now I would like to get this path programmatically. Could you please tell me how I can achieve that Many thanks for your help. :-) Tigger ...Show All

  • Smart Device Development Trouble enabling WSE in NETCF

    I enabled WSE 3.0 in my web services app but as soon as i built my code I got a lot of errors. So I tried msdn and found foll article . This did a great work and most of the errors were removed except one "The type 'System.Web.Services.Protocols.SoapHttpClientProtocol' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' in Reference.cs. Is this assembly only in .net framework I just want MTOM enabled on my web service. Is there a workaround From the error you are getting, the P ...Show All

  • Windows Forms Help me designer has Bugs bugs bugs

    For some reason whenever I use certain controls in Visual Studio 2005 the designer will not reload the form and I get Initialization errors in the designer. Ive downloaded the TaskVision app to see if it was something that I was doing, but I am unable to view any complex forms in that project either.. One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. The designer cannot process the code at line 58, please see the Task List for details. The code within the method 'InitializeCompone ...Show All

  • Visual Studio 2008 (Pre-release) Using per-pixel opacity and there's nothing to see

    Hi, I'm experimenting with the per-pixel opacity and I used the "MSN stockwatch" example from unni's blog http://blogs.msdn.com/unnir/archive/2006/03/01/541154.aspx Problem is that I don't see anything. At first, I had two windows open, but I fixed that. But all I see now is that there's a window open, but not visible. Anyone who had this problem that can/wants to help me thanks in advance, kimme this might help http://blogs.msdn.com/llobo/archive/2006/02/24/538757.aspx ...Show All

  • Windows Forms Bind the datagrid with two datatables

    I have two data tables: 1. datatable1 has fields from Table A 2. datatable2 has fields from Table B Is it possible for me to bind these two tables to the datagrid so that datatable1 is header and datatable2 is data. Eg: datatable1 has number, description, value datatable2 has rows : 12  Row1  24 13  Row2  25 Is it possible to get the following in  ...Show All

  • Visual Studio 2008 (Pre-release) Any opinions on the untyped-ness of xaml?

    I love xaml and I think it's super powerful. However, the whole system gets much of it's productivity by being untyped. Meaning, if I can bind to a 'path' that is found in a datacontext that I can set/change in the code-behind, no compiler will ever be able to help me figure out that I made a typo in the path. Actually, when I change a property name on the dataobject I'm binding to, goodluck finding all the references in xaml files. This seems like a step back (mind you, we get lots of power back ofcourse). Are there any thoughts on this Should we start binding in the codebehind instead of the xaml (ouch, that would lose mucho producti ...Show All

  • Visual Basic P/Invoke

    I am a vb.net 2003 developer. I have however a need to interface with C++ routines that are unmanaged such as wininet and autoproxy. Can someone explain a little about P/Invoke from a vb.net perspective for develpers needing to access unmanaged dll's. Thanks, Fred Check out Adam Nathan's blog on PInvoke. http://blogs.msdn.com/adam_nathan/archive/2004/05/06/127403.aspx Adam is considered the expert in all things PInvoke and he is also the Author of the book .NET and COM: The Complete Interoperability Guide http://www.amazon.com/gp/product/067232170X/102-7701799-1548107 v=glance&n=283155 Also, this site has a bunc ...Show All

  • Smart Device Development Why binding Dataset to DataGrid couldn't display on ppc , However it's right on pc.

    Why binding Dataset to DataGrid couldn't display on ppc , However it's right on pc. Code like those: DataSet _ds; XmlTextReader _xmlReader; _xmlReader = new XmlTextReader(Server.MapPath("./demo.xml")); _ds.ReadXml(_xmlReader); if(_ds.Tables[0].Rows.Count !=0) dataGrid.DataSource = _ds.Tables[0]; else { dataGrid1.Visible= false; label1.Text = "No Any Records"; label1.Visible = true; } run this code on PC then displays some rows , but on PPC no any rows and the label1 didn't display. I'm not quite sure what IE has to do with it. This XML file you're loading, it's on device file sys ...Show All

  • Software Development for Windows Vista end-user workflow design & compilation

    In WWF, you compile a workflow, which I believe calls the workflow compiler wfc.exe, and then calls the C# compiler, which outputs a .NET assembly. What I'm wondering is how this will work for end-user workflow design, where I have re-hosted the designer in my own app. Will this require me to output the workflow definition to a file on disk, call the workflow compiler, then generate a .NET assembly from that for a specific workflow Do I end up with potentially hundreds of compiled workflow assemblies in that case, if I have many workflows  Or can I do all this compilation in memory The idea of compiling a workflow seems somewhat s ...Show All

  • Windows Live Developer Forums Problems with Messenger Beta 8.0

    I received an invite to messenger beta and I’ve intalled in my computer. When I connected I realize that all my contact were gone !!! And appear a message saying that I have do add more contacts !!! This problem is related to my passport My email is from gmail. Can be that Anyone knows Thanks. Rodrigo, It sounds like you experienced server problem with the beta server network. You should log in again and you contact list should appear. Moving to the beta from MSN Messenger 7.5 should not cause your contains to disappear. -Scott ...Show All

©2008 Software Development Network