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

Software Development Network >> Vivek Jain's Q&A profile

Vivek Jain

Member List

alien3d
SteveW
LeHobbit31
Frederick R.
Gary8877
Amit Bhave
Mazmo
JDELUNA
Udaya Bhaskar Thummala
cwhenning
suedueno
Udi Dahan
Xinwei Hong - MSFT
Adria Grau Rovira
BarryMarc
Grigory71677
Rafael Salas
T.C.
Passerelle
lamp
Only Title

Vivek Jain's Q&A profile

  • .NET Development Oracle 9i & .NET - problems with character sets

    Hi, I have this project in with the front-end in ASP.NET 1.1 and the back-end in PHP using Oracle 9i running in a LINUX machine. The codebase in both Oracle server and client is AMERICAN_AMERICA.WE8ISO8859P1. When using the wingding font PHP reads and writes all data correctly from the database, but .NET doesn't. I tried using both data providers (Microsoft and Oracle) and the result is the same. Something happens when the conversion is made ...Show All

  • Visual Studio Express Editions Dumb newbie question regarding XP Styles

    Going through the video tutorials which show forms with XP style borders, etc.  However, mimicking those actions of the trainer, I only see plain vanilla-styled form headers and such.  I understand there's a way to "fix" this, but I don't know how.  Any referral links   Note that I have Visual Basic Express on an XP Tablet edition machine. BTW - Microsoft - why aren't XP styles the default for this new version of Vi ...Show All

  • Windows Forms How can I create a global function to start up an MDI Child?

    In VB.NET, I would like to create a function in my startup modul that will create an instance of a form, set it's MDI Parent property to my main form, and show it. I want to call the function from the main menu on my MDI Parent&n ...Show All

  • Software Development for Windows Vista How to use Role-base in Workflow

    I want to attack role-base on Activity in Workflow so the user who have exactly role that can run this activity. So anyone help me. Thank you In the samples we have two roles samples - one using AD roles and another using web roles. This would be a good starting point. If you want to create your own activity, you could put the role based validation logic in the executor for the custom activity that you cr ...Show All

  • .NET Development How to Develop AutoStart WebService?

    Hi All I wand to develop service which should be started automatically. so my timer can be started. and it can perform some event. Web services should not need to be called explicitly. As machine gets started it should be started. my service contains timer which works afterwards. Please Can Any one Tell me In WSE 3.0 see the following Quickstart sample for a Windows Service running a web service. De ...Show All

  • .NET Development Trouble getting value from xml file

    Hi I am new to c# and xml but progressing nicely (I think) anyway I am reading in an xml file and then extracting information from a particular tag and rewriting it to a new file. I have almost got it but I am having a problem getting the value from the element and then writing it as an attribute to the new one. Code is while (reader.Read()) { if (reader.Name == "text" && reader.NodeType == XmlNodeType .Elemen ...Show All

  • Visual Studio 2008 (Pre-release) Webcam preview in an Avalon app

    Hi, I am building a small webcam API which is part of a larger final year project at my university. In the samples I've seen the camera preview attached to a window, given its HWND handle. The lines of code looked roughly like this (taken from the PlayCap sample in the DirectShow SDK): ... HWND ghApp = CreateWindow(...); ... IID_IVideoWindow g_pVW; ... g_pVW->put_Owner((OAHWND)ghApp); ... So, what I want to do is actually have the preview go ...Show All

  • Visual Studio How do I debug code in design mode (i.e. running under the IDE) using VS2005 RTM?

    I have a problem using the new RTM version of Visual Studio 2005. I write a lot of custom components and a lot of the functionality I provide is available at design time, which I need to test and debug. In previous versions of Visual Studio I would just boot up a second VS instance for the same project and attach it to the first to debug, but that does not work in VS 2005 RTM. If I try attaching a second version of the project (DEVENV.EXE ...Show All

  • Visual Basic Newbie Database Question

    This is a very basic question, but I've wasted a few hours trying to figure it out already, so I'm groveling for help. I'm looking for basic code to help me open a database, read some of the contents into variables, and that's it for now (close the database). The database in question is a flat table in mdb format; 8 columns, 15 rows - each row is a record with a name (p01, p02, etc) and seven associated strings - pretty primitive. The 1st column ...Show All

  • Visual Studio 2008 (Pre-release) Updated samples for Beta 2

    I have updated some of the samples to .NET Framework 3.0 Beta 2. http://www.valil.com/winfx Great! I was just trying to demo your chess app to somebody yesterday. More people should provide XBAP or .Application versions of their apps/samples. (i'd prefer people provide XBAPs as there is less hesitancy to download and run it...even if the user doesn't know the publisher...) Thanks, Rob Rob Relyea PM, WPF Team http://spaces.msn.co ...Show All

  • .NET Development Paging Through Large Data

    I'm writing an ASP.NET application that uses a SQL Server 2000 database. The application searches in large tables with 500, 000+ Records and then displays the search results, the search results could be easily 20,000 or 30,000 results. Ofcourse i need to use paging to show like 10 or 20 results per page. I can't use the DataSet ofcourse, that would be too stupid from me to get 30,000 records to display only 20 records. On the other hand the D ...Show All

  • Windows Forms How can one Dial an ISP from a Windows Application?

    Hello. I need to write a WinForm that can dial an Internet Service Provider with custom phone, login and password. Could anyone direct me to a good code (Free or Comm) or to where I should start reading about it Thank you in advance. - Jasem   ...Show All

  • Visual C++ C1083: Cannot open include file: 'crtdefs.h'

    Hi ALL: The Story so far ... We are trying to get C++ Express to go! So Far it is not doing anything except giving cryptic error messages. Build Log Build started: Project: TIM, Configuration: Debug|Win32 Command Lines Creating temporary file "f:\Program Files\Microsoft SDK\Bin\HELLO!\TIM\TIM\Debug\RSP0000392883768.rsp" with con ...Show All

  • Visual Studio Team System About asp.net development web server and tests

    I think i need to clear some concepts. I have a test solution, with a WebApp project, i class library project and a test project with a bunch of unit tests already created. As the documentation say, the WebApp property called "Use dynamic ports" is set to false, and a fixed port is selected. I can run the WebApp and the fixed port instance of the development server stays running, even if i cancel de debug... what (i guess) is c ...Show All

  • Windows Forms Datagrid with a Multiline column

    Hello, I need to make the a Windows form Datagrid column to be able to display multiline text. Any ideas how I can do it  Or Can I use listview instead Madhuri You will have to make a custom column style. though the better&nb ...Show All

©2008 Software Development Network

powered by phorum