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

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

guy691us

Member List

apan
VJ_AS
Varix
Yuri de Jager
kscdavefl
huhu
reesr
Erch
ChampAmp
ijprest
Carlos Vara
Arturo_RX7
Shirley
Constantin Crstian
Mike Orlyk
NoelAnthony
boris_skarbo
Lawrence Ricci
Zafar Ullah
yandi
Only Title

guy691us's Q&A profile

  • Visual Studio Express Editions Installation of VB

    After downloading end extracting Visual Basic 2005 Express Edition Beta2, I run setup.exe. Everytime it finishes with an error: "A problem has been encountered while loading setup components. Canceling setup." Where can I find more information what is really missing I extracted files from VB.img file using ISOBuster. It created a new folder VBD1. Then I tried to install SETUP.EXE from this folder. I didn't find any of the files you've mentioned ( vsbasereqs.dll and vs70uimgr.dll) but I found files: vsbasere.dll and vs70uimg.dll. After I had carefully checked names of all the files in the installati ...Show All

  • Software Development for Windows Vista Whats the differente with biztalk 2006?

    Thanks Biztalk is designed to move messages from one place to another. It does this realibly etc... In a standard biztalk process (unless you have an orchastraion - which is basiclly the same thing as wwf)  there are no  execution phases -  A message enters the system from an Import port and imdeiatlly flows thru to the appropriate output ports. WWF on the other hand is a execution engine. For example - once the message arrives at the output port what happens to it. For example what does the person deailing with it have to do before it can be sent for fullfilment etc.. You used to be able sort of to do thesew things wit ...Show All

  • Smart Device Development How to change web service IP address

    Hi, I've written a smart device application that communicates with my web service. How do I go about changing the IP address in the PDA application so that I can still communicate to the web service when I deploy both the web service to the web server (which will have different IP address that development server) and the PDA application to the PDA Thanks. Thanks, it works. ...Show All

  • Visual C++ Wither winuser.rh

    I am importing projects created with Visual C++ 6 into Visual 2005 Express but the compile is failing because fatal error RC1015: cannot open include file 'winuser.rh'. It isn't in the latest PSDK or in the VC++ 2005 include folders. Is it now it some other SDK (it isn't in the DX one either but I wouldn't have expected that). Is it in the pro or standard versions of VC++ 2005. Thanks, Mike This does appear to be in the PSDK (or I should say that it exists on my machine in the PSDK directory - but as I don't actually download the PSDK this should not be taken as evidence that it is ...Show All

  • Software Development for Windows Vista GdiPlusEffects.h missing in February 2006 SDK

    I downloaded the new Feb CTP Windows SDK and the compiler complains about missing GdiPlusEffects.h. This file is included conditionaly when GDI+ version at least 1.1 is detected. Where can this file be found The workaround is to edit GdiPlus.h and change the GDIPVER from 0x0110 to 0x0100: // Define the Current GDIPlus Version #ifndef GDIPVER #define GDIPVER 0x0100 #endif Hi Benny. Thanks for the ping. I re-pinged the people I originally pinged to see what the status was. All that ping-pong to say that...I know we have found the location of the header file in question, just a matter now of its dispos ...Show All

  • Windows Forms XP loaded twice

    I have managed to load XP twice but it has not separated into different partitions. One works and the other doesn't. The one that doesn't work is because I did not activate it in time. Is there a way to delete the version that does not work ...Show All

  • Visual Basic Events: why use them instead of member call coupled with DoEvents()?

    Hello. I've been reading up on Events, and don't see what they offer that just doing a member call, followed by DoEvents() would not do for you When I indicate an event, the function that indicated it must wait anyway for the event to return control. And DoEvents() would accomplish the same thing of seeing if, for example, the user clicked the 'Cancel' button if I was to call a function, then DoEvents() after it, then checking for cancel button. What am I missing I don't see any difference. I searched these forums as well and didn't see an appropriate response. Any help, or references to where an identical question was asked would be a ...Show All

  • Windows Forms Add custom button to a form caption

    Hi, I'm looking for a way to add a custom button to a form caption  (like and near the minimize/maximize boxes). Has anyone done that with Windows Forms I've searched the net for such an example, but with no success. Thanks. There's this in C++:  http://www.catch22.net/tuts/titlebar.asp  and there's my old VBClassic example on PSC:  http://www.planetsourcecode.com/vb/scripts/Sh ...Show All

  • Windows Forms Alternative to Java applet hosted in IE

    My company has in the past created local browser applications with front end in HTML/JavaScript and backend in the form of a Java applet. The applet code contained the business code and calculations. Benefit of this approach is that we could distribute the entire app on a CDROM. As you might guess, I am looking for the .NET way of this scenario. I ...Show All

  • .NET Development The behavior of Enum.ToString()

    I wrote this code. enum MyEnum { One, Two, Three, Four, Five, Six, [ System.Obsolete ] xTwo = Two, [ System.Obsolete ] xThree = Three, [ System.Obsolete ] xSix = Six, } MyEnum e2 = MyEnum.Two; string s2 = e2.ToString(); MyEnum e3 = MyEnum.Three; string s3 = e3.ToString(); As a result, s2 is "Two" and s3 is "xThree". Why s3 is not "Three" When you have multiple members with the same value it's unpredictable which one name will be returned by ToString. Changing the order of the members may help but it's still implementation dependent which string you get back. ...Show All

  • Windows Live Developer Forums About Control

    Ok, I'm trying to do a Application, in deed I have it but, now i have the problem to know who is who, I mean, how I can know wich playar have the turn, to block some controls in the page for the laste player... Example: Inviter post 1 number, then is the player 2 turn, but how can I block the Submit botton for the Player 1, and this at the same time is turned on for the Player 2... Please... I need a clue. Hi You can do something like this. Once you get who's the inviter I guess you have all you need.     var Users = window.external.Users;     if (Users.Me === Users.Inviter) {     ...Show All

  • SQL Server does Sql server has command equalent to Rollback to in Oracle

    HI All does Sql server has command equalent to Rollback to in Oracle. That means when you do some update operation and i want to revertback the original record. If so what is that command. With Regards, AHARI Yes it does: BEGIN TRAN UPDATE.... <your update statement> ROLLBACK/COMMIT TRAN By the way, you should try the T-SQL forum for this sort of question: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=85&SiteID=1 -Jamie ...Show All

  • .NET Development 2 projects same solution

    my solution is set up: Solution  | --vbProject  |             |-----References  |                             |-----cppProject  |                             |-----mscorlib  |--cppProject  |             |-----References  |                      &n ...Show All

  • Visual Studio Team System VSTS Architect vs. VSTS Developer

    With he proposed changes in MSDN subscriptions and Visual Studio licensing, I now have to make a decision between VSTS Architect and VSTS Developer. As I understand, MSDN Universal subscribers will have a choice - they can either go for VSTS Architect and VSTS Developer. I believe that I need both architecture and development tools. Which out of two should I go for The information was interesting but too high-level to be really useful or answer the questions I feel most developers have. I hope you folks will be releasing something with a bit of meat on it like a feature by feature breakdown of what is included in each edition in t ...Show All

  • SQL Server Package variables in case of an Exception

    Hi there, I may be blind, but I'm sure that I have seen a post about package variables 'ExceptionMessage' and 'ExceptionCode' or somehow which are only available when an Exception occurs. I cannot find it anywhere :( If there isn't any then the question is: Can I read out the message and the code of an occurring Exception e.g. from a Script Component/ Custom Task which is controlled by an error constraint Can someone help Fridtjof OMG, I've got it!!! You meant the Eventhandler of the package which is available at the Workbench!!! I tried to implement an EventHandler in C# in the Custom task. How stupid :( ...Show All

©2008 Software Development Network