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

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

V3M4

Member List

FerroFreak
Gail Erickson [MS]
skrvigneshkumar
HuaMin Chen
JamesInLondon
Amir Duany
ericsmoth
hadas_r
akhilkiller
Abhishek_Goel
thelovebadger
nelson888
meArun
KSmitty
Mike Wachal
mrtnld
Tyagi
Merzhin
DZ_Little_Rock
EvenOvich
Only Title

V3M4's Q&A profile

  • Visual Studio Express Editions How to print receipt in a picture box?

    Hi, I made a simple program that would generate a receipt preview, but I wander on how to do it in Visual Basic Express. I am going to use Picture Box because, other said that picture box can hold up a text or an image. How can I do this with my example format below: MyCompanyLogo MyCompanyAddress DATE: 05/06/2006 RCPT: 34566 STAFF: 23455 SND: 3467785667 1 480MLNSTEA ICE 18.00 2 SFGUAR SOAP 5 ...Show All

  • .NET Development Mixing XmlSerializer and XmlTextWriter/Reader

    Like many people, I have an application with some data to save to a single file (and to read it back later).  My data consists of ints, strings, objects, etc. I want to avoid/minimize the laborious and error prone work of converting all my objects into a series of strings to represent its properties. I want an easy way of reading back the data without having to have scores of switch statements. The examples I have se ...Show All

  • .NET Development Possibility to query the CLR execution engine ?

    Hi, anyone out there who knows if (and if so, how) it is possible in the .NET framework to obtain the list of objects which are actually managed in a running application Thanks. Sure. Use Assembly.GetTypes() method: http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfSystemReflectionAssemblyClassGetTypesTopic.asp ...Show All

  • Visual Basic html to pdf

    Hey guys, I'm thinking about writing an application that will convert html to pdf and vise versa and I have a few questions if you don't mind. 1) Is VB.NET a good choice for such a project I can do C++ or Java if it's more reasonable. 2) What exactly should I look up I'm guessing I'll have to use a third party component for this, so please point me to one if needed. If you have any information or tips on this then please let me know. Thanks ...Show All

  • Visual C# How to run multiple processes with the same executable?

    Hi, I want to run multiple processes (for example 10 processes who get started after each other) after a button is pressed from a Windows form. Each process executes the same executable. For example: Process 1: ipconfig /all Process 2: ipconfig /release Process 3: ipconfig /renew Etc. I know I should use the Process class, but how can I do this I don't think (and I don't know how) I can use a loop, because the commands are different. Anyone who ...Show All

  • Software Development for Windows Vista SetState from Host

    I developed a statemachine Workflow with 3 states - New, Ready1, Ready2 In New State- After HandleExternalEvent, i placed one externalcall Method and raising an event to host. In Host the following is the code... In Host take the Instance of LocalServiceCommunication like workflowRuntime.GetService< ServiceRequestDataExchangeService >().OnSetTargetState += new EventHandler < TargetStateEventArgs >(SRIntakeForm_OnSetTar ...Show All

  • Software Development for Windows Vista The easiest way to check aworkflowistance variable

    I have a private variable for my workflow like this public sealed partial class SampleWorkflow : StateMachineWorkflow     {         private string statusWf;     .....     .... Wich is the easiest way to check the value of this variable and insert it in a label of a web form. At this moment I have added an event 'CheckStatus' in my service interface, and each state of ...Show All

  • Visual C++ Button Position in Terms of Dialog

    Hi Everyone, I have looked all over the CWnd class (or perhaps i just didn't understand a function), but how do I obtain a button's position in terms of a dialog that it's in. In other words, if I have a Dialog that is 400 by 600, and I have a button that's around the middle of the dialog, how can I get that dialogs position in terms of the Dialog window itself In VC++, I can place a button on the Dialog.... I could then call: CWnd* myButtonW ...Show All

  • .NET Development XML and Datagrids

    Hi I'm trying to read an xml file and show results in Datagrid (the normal one in Windows Forms). The xml schema shows me that there are several tables (not related) and one table PSC5 which has 18 child table. I'm using ReadXml function throught a dataset created at the runtime. The data grid shows me tables only from PCS5 table and its child tables, but not the other one. My code is simple as: Dim ds as new dataset() ds.ReadXml(" ...Show All

  • Smart Device Development A problem about the menus in Smartphone 2003

    I created a new MFC Smart Device Application Project for Smartphone 2003 using VS2005.  And then I found the menu didn't work right.  So I searched the solution here and found the article: http://blogs.msdn.com/johnkenn/archive/2005/08/22/454858.aspx I followed the all instructions in the artcile but I still have a little trouble. Here is a part of the Test03sp.rc: IDR_MAINFRAME MENU BEGIN     MENUITEM ...Show All

  • Visual Studio Express Editions Why? My post dissapeared.....

    Hi, I posted a question about 9:00-10:00 UTC, but it is disapared... I'm just curious, what happaned Did I do something wrong Is there any extra rule, what I have to fulfill I know, probably this isn't the best place to ask questions like this, but as my post was here so I ask here. My post seems to be removed for some reason.... Thanks in advance, Lacko I believe this is the thread ...Show All

  • Software Development for Windows Vista The sample of Beta1 can't run on Beta2 runtime.

    Most of the samples can't run on beta2.such as Workflow Designer Control、SimpleReadWriteActivities.... Hi, You are correct the WF Beta 1 samples are not compatible with WF Beta 2. Instead you can use the WF Beta 2 samples from here: http://www.windowsworkflow.net/default.aspx tabindex=4&tabid=49 You can also download the Hands on Labs for Beta 2 from here: http://www.microsoft.com/downloads/detai ...Show All

  • .NET Development password protected xml file

    Hi guys! Does anyone can help to making an XML file password protected I just want to prevent other users from reading my database. Thanks a lot, Aldo. Aldo, You may want to encrypt the strings in your XML file, or encrypt all of the XML file and decrypt into memory when reading it. Search for encrption and XML for this. ...Show All

  • .NET Development custom marshalling of System::Object* to VARIANT and back again in IJW assembly

    I have two native C++ functions: One takes a VARIANT as its argument and the other returns one. I'm compiling these functions using the Managed C++ compiler to create an IJW assembly, and I want to provide real managed functions that take and return System::Object* instead. They would just marshal the arguments and call the VARIANT version to do the real work. I know that this must be possible without too much magic involved because the ...Show All

  • Visual Studio 2008 (Pre-release) extensibility

    Eric Meijer and myself both worked on Xen/C-Omega, and both worked on the design of LINQ. The languages are similar in that they share some of the people and ideas. ...Show All

©2008 Software Development Network

powered by phorum