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

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

Jaque

Member List

somebodynobody
Nadeem Hashmi
koti
tango2310
badbadboy
cuy
JoLee
Eddie Garcia
susanowo
lobot
bobberino1
cc2001a
ronnyh
Jason Reis
ksona
earthmaker
Gauguin
Riiii
KenY
Pikios
Only Title

Jaque's Q&A profile

  • Software Development for Windows Vista Tiny question about MSDTC behaviour

    Can MSDTC abort\rollback transaction if I create instance of COM-object (COM object marked as "Transaction - Not supported" in "Component Services" snap-in) during "transactioned" part of .NET code Which way MSTDC will act Alexey, MSDTC can abort a transaction at any time. By creating a COM+ object marked "Transaction-Not Supported" you will ensure that the code that runs in that component will not participate in the transaction of the caller (if any), nor the component will create a transaction of its own. I don't understand what you mean by &quo ...Show All

  • Visual Studio Team System application center test viewstate over SSL

    Instead of auto recording, I manually created a Application center test script with view state to stress my application, it works fine while connecting to server without SSL, but when connecting to server with SSL enabled,  no response is returned, maybe the server does not take manually created view state over SSL anybody done this before        Set g_oConnection = Test.CreateConnection(myserver, 80, false)  'connecting to server without SSL or  Set g_oConnection = Test.CreateConnection(mysecuredserver, 443, true) 'connecting to server with SSL enabled  g_oReque ...Show All

  • Visual Studio 2008 (Pre-release) Customizing NavigationWindow and using Property Aliasing

    PROBLEM: The main window of my application will have 3 areas: 1) A header where there will be diferent controls such as links, menus, images, etc, besides a previous/next navigation button with customized appearance; 2) A footer with more controls on it; 3) A content area where different pages will be displayed. SOLUTION CONSIDERED: WindowsFX provides a build-in NavigationWindow that can be customized using ControlTemplate mechanism. It comes with a default Header (with buttons) and a page area. I decided it would be convenient to inherit from the NavigationWindow, define 2 DependencyProperties: one to hold a cont ...Show All

  • .NET Development Designed for Windows XP 64 ?

    Microsoft have a program for registering a product and then allowing the use of "Designed for Windows XP" logo by that product vendor. It seems that this is also open to products that run on Windows XP 64, but that there is no distinct logo for 64-bit. A product designed for Windows XP 64 or Windows 2003 64, may in fact be unable to run on 32-bit versions, so surely a seperate logo and designation exists So, is there in fact a logo: "Designed for Windows XP 64" or not Thanks Hugh Jochen is correct. There is a "Designed for Microsoft Windows XP x64 Edition" Logo. I would recommend the detailed document ...Show All

  • Smart Device Development Device Emulator Storage Card Disappears on Soft Reset

    I'm having problems with my device emulator. I have a shared folder on my computer linked as a storage card on the device emulator. I can see the storage card and copy files to/from it, but when I am forced to do a soft reset after installing a program, I can no longer see my storage card. I have tried the emulator which comes with Visual Studio 2005, as well as the stand-alone device emulators 1.0 and 2.0 beta. Does anyone know what causes this Thanks for your help. This is a known bug in the CE drivers that implement folder sharing. It will be fixed in newer Windows Mobile OS releases, but there are no pl ...Show All

  • Visual FoxPro video control

    While waiting for answers to my other post I tried to play with a video control. It gives me an error I cannot understand: cFileName = JUSTSTEM ( JUSTFNAME ( cLine )) THISFORM . O_VIDEOPLAYER1 . cfilename = cLine THISFORM . O_VIDEOPLAYER1 . playvideo ( cFileName , 100 , 100 ) cLine is the complete path to an .AVI file. The error is that "no parameter statement is found" Is anybody familiar with this control Thanks. Alex, While you're reading other:) go to VFP9 tools\task pane. Click more panes (chevron) and check solution samples. There at least 2 samples for playi ...Show All

  • SQL Server Licensing of launch SQL Server 2005 Standard Edition

    Sorry, but I wasn't sure where to ask this.... Microsoft is giving out SQL Server 2005 Standard edition at the launch events. At least they gave a copy out at the Nov 7th San Francisco launch. My question is.... is this just a copy of the software, or is there some form of license that goes with it The software is nice, but I'm trying to figure out if I can legally do anything with it beyond look at it -- thus I'm trying to figure out what type of license was granted - if any - with the copy given out. Anyone know Brad!   Tom Rizzo - MSFT wrote: It's Standard Edition licensed via the server/cal m ...Show All

  • Visual Studio Express Editions Check Array for in another Array

    I have a console utility I am trying to build and I am wondering what's the best way to go about checking one array to see if each of it's values are in another array Let me explain. I have a text file which is set up like this: UserID1,Group1 Group2 Group3 Group4 UserID2,Group1 Group3 Group4 UserID2,Group5 Group6 So, one UserID can be on multiple lines, but groups never repeat. I also have setup an array of groups that the user SHOULD be a member of. GroupsNeeded = ("Group1", "Group2", "Group3", "Group4") (I don't know how to initialize multiple values in an a ...Show All

  • Visual Studio 2008 (Pre-release) Why is it possible to generate proxy with svcutil for localhost only?

    Why is it possible to generate proxy with svcutil for http://localhost ... only You can generate proxy for remote services also,can you please give us more info about this problem. -Thank you Madhu ...Show All

  • Windows Forms Treeview Nodes.Add Problem

    I have a problem when I add a child node. When the tree loads the first time, all the child nodes display correctly.  If I add a child node, it gets saved to the database, and I clear out the tree (treeview.Nodes.Clear) and repopulate it for the new node to show.  However, now the new node I just added, appears in another location and I end up with 2 child nodes with the same name. Any ideas on how to make the treeview refresh correctly   I have stepped through the code when it reloads the tree and the code says it is adding the node from the database, but the treeview doesn't reflect it for some reason.  I have trie ...Show All

  • Windows Forms Modify text file.

    How can I modify values in text file  File is tab delimited as follows  Date   Buy   Sell  13-Jan-2005   0.9970776   0.9901224  18-Jan-2005   0.9910566   0.9841434  I want to modify Buy and Sell values for a particular Date.  Thanks ...Show All

  • .NET Development Compiling in Native Code

    Hi, I am having managed code in C#.Net, I want to compile it in Native code instead of MSIL, is there any compiler option available in the .Net IDE, how shall i compile my code in native code. Thanks & Regards Benin. As far as I know, you can't compile a .net assembly to native code using the .NET ide. You could create a native image of compiled assembly. However, this has to be done on the machine on which the assembly runs, so it can't be done at design time (the native image gets installed in the local computers image cache). If you use an deployment solution to install the application, you could add a custom action ...Show All

  • Visual Studio Team System Traceability Matrix in MSF for CMMI

    How can I input the dependencys between requirements in VST How can I to inform that a requirement is subitem another requirement in VST Thank you. ...Show All

  • SQL Server connect to SQL server 2005 databse using perl

    we moved recently to SQL server 2005, i have perl scripts that i use to connect to the database, retrieve information and updata datas. since we moved the perl scripts are unable to connect to the database. I created the system DSN in the odbc manager that is used to connect to that database. this is the error message we are getting when we try to cnnect to the databse : DBI connect('billing3','dbo',...) failed: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified (SQL-IM002)(DBD: db_login/ SQLConnect err=-1) at night_process.pl line 30 the perl script that tries to connect is : #!/usr/bin/perl -w ...Show All

  • Windows Forms PropertyGrid not showing

    Hi all I've build a custom control that inherits from Datagrid I've added an extra property Source that is a custom object with only 3 properties, all 3 are strings I have created a custom class that inherits from ExpandableObjectConverter that serves as TypeConverter.  This all works fine! Now i wanted to have a custom Editor for the Source property, and there& ...Show All

©2008 Software Development Network