shauli's Q&A profile
Visual Studio 2008 (Pre-release) can't generate proxy classes for WCF SDK samples with svcutil
Hi, I tried to generate a proxy class for GettingStarted service yesterday with FEB CTP svcutil.exe on FEB CTP Vista. But svcutil failed after reporting a few warning messages. The GettingStarted Service was running OK and I didn't modify it in any way. Does anyone know what is it I've read some known issues concerning FEB CTP svcutil. They do not seem to be relevant to the case. Can you send the error message/warnings etc Thanks! Scott ...Show All
Visual C# Web Browerd in C#
I friends I developing application to Web browerd in VS 2005 i want to edit Proxy in Web Browerd how will i do ...Show All
Visual Studio Express Editions Stop Row Deleting
I have a DataGridView with some rows displayed and would like to check if there is any related data before deleting the row. I have a foreign key constraint but would like to popup a nice message when the user tries to delete the row rather than wait until they click on save and have the ugly, default error message. My first thought were to put some code in the RowDeleting routine. I have tried putting in a popup message along with e.row.canceledit and e.row.rejectchanges but the row still gets 'deleted' (until I click on save and get the FK error) Any suggestions hi, you can depend on t ...Show All
Visual C# Bitmaps
Hi, does anyone know of any good tutorials on how to use bitmaps Any tutorials would be helpful - people suggested me to use bitmaps for creating a Tetris game, yet I have never used bitmaps. ...Show All
Software Development for Windows Vista Sleep mode in Vista steals intel ICH6 INUSE_STS semaphore?
One of our clients had us write a small legacy driver for them which communicates with their device over SMBus using the controller in an Intel ICH6. The ICH6 includes a software-semaphore in I/O space at register BASE+0x00, bit 6. This software semaphore, INUSE_STS, allows multiple drivers to share access to the SMBus controller. To request the semaphore, you simply read BASE+0x00, if INUSE_STS reads back as a 0x00, you have been granted the semaphore. All future reads of INUSE_STS will read back as a 1. To release the semaphore, you write a 1 to this register; the next read of INUSE_STS will come back as a 0. This keeps the semaphore r ...Show All
Software Development for Windows Vista 64bit Control Panel Extensions
I use the Microsoft gived function to compiler 64bit AMD program. The Application and DLL could be work on 64bit XP. But when I use this to compiler the Control Panel Extensions, the program could be compiler but could not work on 64bit OS. PROPSHEETPAGE psp; HPROPSHEETPAGE hpage; ZeroMemory ( &psp, sizeof(PROPSHEETPAGE) ); psp.dwSize = sizeof(PROPSHEETPAGE); psp.dwFlags = PSP_USEREFPARENT | PSP_DEFAULT | PSP_USECALLBACK; psp.pszTemplate = MAKEINTRESOURCE( IDD_DIALOG_CURSOR ); psp.pfnDlgProc = DlgCursorProc; psp.lParam = 0; if ( ( hpage = CreatePropertySheetPage( &psp ) ) ...Show All
Visual Studio Crystal Reports: ParameterField Object displaying J# Methods/Properties in Intellisense
In VS .NET 2003, I am trying to duplicate the MSDN C# example here: http://msdn.microsoft.com/library/en-us/crystlmn/html/crtskparameterfieldsruntimecustomization.asp frame=true However, intellisense does not display the ParameterField object's method "ParameterFieldName" or the collection "CurrentValues". But it does display a long list of setters and getters that seem to be used in the J# portion of the above example. Anyone have any ideas on how to fix this Geno & Mark, Thanks for the replies. It appears to be just a problem with intellisense. I was able to type in the syntax for ...Show All
Visual Basic Web Browser Popups
Hello everybody, I have created a successful webbrowser in VB Express Edition 2005, with all controls (back, forward, stop etc..). Yet when a link is clicked which opens a new window on a website, it always opens in internet explorer... how can I prevent this from happening Thankyou Ben Mean while... I have some nice codes that I have created. Web Browser Title, make url show up on address bar, and progress bar... 1. Make a new textbox...name it TextPrecentage(this will be the %age of the progress of your web browser) 2. Make a new progress bar... name it ProgressBar1 3. Make sure TextBox1 is your address bar. If it is n ...Show All
Visual FoxPro Copying a file to EXCEL from FoxPro.
PLEASE HELP! I'm using Visual FoxPro 6.0 and EXCEL 2003. I created a query with FoxPro 6.0 and copied the data to EXCEL 2003. The Table size is 33827 records and it only copied 16384 records. It only copied half the code. Why is this Here is the code. close data all set talk on set dele on SELECT 0 USE "c:\documents and settings\bartech\my documents\fmpdata\software code\fmp reports\fmptables\line02.dbf" shared select *; from line02; group by 3,4,5,6; order by 3,4,5; into cursor x select x copy to c:\line02wmake&model.xls type xls select * ; from ("c:\documents and set ...Show All
Windows Forms How To Change ToolStrip Location ?
Hi, I need to locate the my "toolstrip" in the right side, on the form, under the MenuStrip . Thanks, Boaz. Boaz, I'm not clear on what you exactly mean, however: If you drag a ToolStripContainer onto the form, at runtime the user can dock the ToolStrip to all sides of the form. ...Show All
Visual C++ Building the source code problem
I get this error when i tried building my source code : Linking... .\Release\mcd.res : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt Error executing link.exe. CCalc.exe - 1 error(s), 0 warning(s) Im not sure what it means but when i tried to rebuild all, i get this error message instead Compiling resources... Error executing rc.exe. CCalc.exe - 1 error(s), 0 warning(s) can someone please help me out ps. i tried searching for the rc.exe file and i cant find it, where is it located or do i need to download it separately im still kinda new in C++ thanks for your replies :) ...Show All
Smart Device Development Create CAB
Hi, i have a question: I must create a shortcut in List Progams on my device. For create the cab file. i use this istructions : http://msdn2.microsoft.com/en-us/library/zcebx8f8.aspx but i don't know to create a shortcut in programs list. How can i do it thanks Alessandro Thanks. I have to resolve.... I must to insert the shortcut in the "PROGRAMS FOLDER". Thanks Alessandro ...Show All
.NET Development Software protection problem with MSIL
Hi, I am developping a software protection with the Win32 API. My protection system run perfectly with standard .EXE file but failed with a .NET .EXE file. Explaination of my software protection : I extract and encrypt the code segment of the .EXE file and i replace the original code segment of my .EXE file with the encrypted. The program is also protected because it cannot be run as it is. A loader launch a CreateProcess of my protected .EXE file in suspend mode. I extract the encrypted code segment and decrypt it and restore it. I remove the suspend mode of the process for run the program. This system works with many .exe file, ev ...Show All
Visual Studio Team System AvoidUncalledPrivateCode and other errors.
There seems to be a problem with AvoidUncalledPrivateCode There are quite a number of functions that are flagged with this rule that are not private at all, they are public. Here is an example: public static BusinessFacadeTimeZoneEnum ToFacadeEnum(TimeZoneEnum type) { return (BusinessFacadeTimeZoneEnum)Enum.Parse( typeof (BusinessFacadeTimeZoneEnum), type.ToString()); } Also I get: AvoidTypeNamesInParameters With the following code: public BusinessFacadeException( string message, ErrorClassification errorClass, string detailedErrorCode, string detailErrorString, Exception innerException): base (message, errorClass,detailed ...Show All
.NET Development peer-to-peer connection
hi i want a example that shows peer-to-peer connection We will be including the P2P features in the next version. We don't have a clean way oy using P2P with managed code now. ...Show All
