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

Software Development Network >> i386 Solutions's Q&A profile

i386 Solutions

Member List

zbzb
Ian Thomas
RoiLipman
jeyakumar
ostsee
Grigoriy Pogulskiy
oct_ruiz
Christopher D
SRasheed
sspotts
Reggie Chen
Chris Drie
Isabel_ve
XPDev
Tarik Soulami
lamp
sirji
JulieReid
Mark Henneman
Popa
Only Title

i386 Solutions's Q&A profile

  • Visual Studio Team System Web Test - Any way to compare an Extracted value (Context Variable) against an expected result?

    Hi, Is there any way to compare an Extracted value against another expected value without using coded Web Tests Thanks The extracted value can be compared without using coded Web Test. It can be done by combination of Extraction rule and Validation rule. The "Context Parameter Name" entered in extraction rule can be used in the validation rule as expected value. It has to be taken care that the context parameter name should b ...Show All

  • .NET Development Using TransactionScope to share transactions between Methods

    Hi, Before we start: This is all taking place on a single database. And I really don't want the overhead of Distributed Transactions. If I want to have lots of separate data access routines that do work on the database. Sometimes I want these routines to take part in a larger transaction. Sometimes they will just be running in their own transaction. I looked at TransactionScope and I thought this would do the trick. I now realise I w ...Show All

  • Windows Forms to start two threads simultaneously

    i want to start two threads simultaneously...but it is not happening...the first thread starts and then second one starts. { demo = new Thread(new ThreadStart(this.ProgSafe2)); demothread = new Thread(new ThreadStart(ProgSafeS)); demo.Start(); demothread.Start(); } First, unless you have multiple processors it is impossible to have two threads start at EXACTLY the same time. To get them to start closer together you ...Show All

  • Windows Forms TabControls with Panels in another class

    Here's my goal. To have a TabControl on the MainForm.  And when you click to a different tab the tab will load a panel from another class into that space.  I want to be able to graphically design that panel independently as well,  ...Show All

  • Smart Device Development Webbrowser Control - .net cf 2.0

    Hello, I’m having a problem with an application i’ve been developing with VS.NET 2005 beta 2 and currently being developed under VS.NET 2005 Professional Edition (both with Windows Mobile 5.0 SDK). Compact framework 2.0 seems to have some differences between its beta 2. Now, links ("<a>") on the webbrowser control don’t work anymore with my pocket pc 2003 device. I don’t even get the navigating event (it does work on emulator on windows mo ...Show All

  • Software Development for Windows Vista Production

    Is this beta release of wwf stable enought to develop and deploy to production environments   PS: I need to develop a workflow application... now! ;)   thanks! Hi, WIndows Workflow Foundation does not still have a go live license associated with it which means you cannot run applications built using WWF in production as of now. Regards, Vikram ...Show All

  • .NET Development How to enable DataGridView updates for xpath extract results

    Hi, I wrote a program to extract part of XML elements, fill in the dataset with extracted elements,and display them in dataGridView (C++). for example : to extract only ADDRESSES and display the Id,Street,Postcode, city and country as the table columns in dataGridView <MEMBER> <GENDER>FEMALE</GENDER> <AGE>35</AGE> - <ADDRESSES> - <ADDRESS> <ID>1</ID> <STREET>cranbrook ave</S ...Show All

  • Visual Studio Team System Test-Project (vstesthost.exe) and app.config

    Hi, I'm pretty frustrated because I can't unit-test my application because the app.config from the test-project is not being used by the vstesthost.exe. Does anyone know how the heck to get the test-environment of VS2005 to use the app.config of the test-project thank you! Under beta2, you have to manually cause the app.config or <TestDll>.dll.config to be moved to the output directory where it will be picked up. To do this: 1: In y ...Show All

  • Visual C++ What equals to C# ref keyword in VC++ 7

    Can somebody tell me what equals to C# ref keyword in VC++ 7 Thanks in advance. It can, but its neater and less prone to mistakes if you use the &. The ** means a double pointer or a pointer to a pointer, so setting this up can be awkward. & on the other hand is just passing the variable by reference. The following demonstrates the difference. void fun1(int** a) {     *a = 1; }   void fun2 ...Show All

  • .NET Development Zip files in c#

    Hi, Does anyone know of a way to zip files in c#. I tried using sharplib but the compression utility that comes with XP is not able to unzip the files. I need a format that can be unzipped by this and most other compression tools since I am not sure exactly what my users will be using to unzip the files. Thanks in advance   stax0711 wrote: I wonder how hard it is to zip/unzip a folder using Sytem.IO.C ...Show All

  • .NET Development Are NGen images shareable between processes under different windows accounts

    Hi everybody, I've read http://msdn.microsoft.com/vcsharp/default.aspx pull=/msdnmag/issues/06/05/CLRInsideOut/default.aspx I'm not quite sure whether there are any restrictions on between which processes the NGen images can be shared. Given my assemblies fullfill the requirements (no rebasing etc.), and users start my application on one physical machine using a terminal server. Will then my assemblies be shared or the "shareabilit ...Show All

  • Windows Forms How can I launch a brower from windows form with linklabel?

    Inside a window form, I have a linkLabel like this. this->linkLabel1->Links->Add(0, this->linkLabel1->Text->Length, S" http://www.microsoft.com "); Microsoft is just for example. If I click it, it should open a brower and go to the web site. I need handle it in click event handler, but do not know how to launch a brower from windows form Help please.. ( c# or c++ or VB fine ) Thanks, Process.Start(" http://www.micro ...Show All

  • Smart Device Development Connecting to pocket PC from Server using GPRS

    Hi, Is there a way for a pocket pc 2003 emulator to "simulate" connecting to a GPRS network Other forums say that as long as ur desktop pc is connected to the internet or to a network, it is already enough for the pocket pc emulator to simulate a GPRS connection. Is this true thanks and regards, espi Hello. Attempting to "simulate connecting to GPRS network" is in my experience not very useful. In Norway, whereI am, the GPRS network has a ...Show All

  • Visual Studio VSTSBeta2 VPC the evaluation period for this copy of windows has ended.

    I have downloaded the VSTSbeta2 VPC image, decompressed the Virtual PC files and started in Virtual PC.  The following error came up on windows 2003 Server: The evaluation period for this copy of windows has ended.  Windows cannot start ... Then it reboots the Virtual PC. The documentation states that is expires Sept, 16, 2006. Has anyone else seen this   Any ideas   Tried setting time in the BIOS to a week  ago, but no ...Show All

  • Software Development for Windows Vista Adding Listen Activity to a State

    I create a State Machine Workflow, in one of my states I need to add a listen activity that will wait for User Approval before it can continue.. But i can't see the Listen Activity in the toolbox.. It seems like you can't add a listen activity to a state.. Is there another way The listen activity is not allowed in the State Machine model. You can achieve this by using Event Driven activity within the state and then listen for the user appr ...Show All

©2008 Software Development Network

powered by phorum