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

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

Webzest

Member List

ChrisSmales
nirmal_babu
Saileyee Thakur
Kembreg
yaron nahari
spoox2
MetaMeta
Michael007
Ermac
m.schwandner
Adam24
wells.yap
grainne foley
Everett
invoice
CTEZ
bumz
Brent Rector - MSFT
vinny15
swd
Only Title

Webzest's Q&A profile

  • Visual Studio Tools for Office Conversion problem

    I am trying to convert my VSTO 2003 projects to VSTO 2005 and failing one after another.  VS says it converted them successfully, but the Solutioin Explorer shows they are unavailable. Attached is the log of one of the conversions. If I remove the unavailable converted proejct and try to add it back, then I get the following error: The operation could not be completed. No such interface supported. Could anyone offer any hint Thanks, H   Project: AB5000Centers Filename Status Errors Warnings AB5000Centers\.\AB5000CENTERS.XLS 0 0 Conversion Issues - AB50 ...Show All

  • Windows Live Developer Forums Clarification

    So if i'm right, Microsoft is releasing MSN Messenger Activity API's for the protocol Good, in a way, but will Microsoft change they're licence to allow us to create applications (such as MSN Messenger Robots and 3rd Party MSN Messenger Clients) that will connect to the .NET Messenger Network , because if not, then this is really just for refrence.... Yes, although the protocol itself you don't have to worry about, which is part of the coolness of this. Yes, the idea is to allow more third-party apps. ...Show All

  • SQL Server Syntax Error when using variables in SQL Statement

    Hello! I want to use a variable in my CREATE LOGIN statement but the syntax check in says "Wrong Syntax near @pwd" in Line 7. When i use ... WITH PASSWORD = N 'pwd' instead of WITH PASSWORD = @pwd then it works. Has anyone a explanation for this syntax error (the code below is only a simplification of a more reasonable code) use mobs ; Go DECLARE @pwd varchar ( 20 ); DECLARE @username varchar ( 20 ); SET @pwd = 'pwd' ; SET @username = 'hubert' CREATE LOGIN [@username] WITH PASSWORD = @pwd ; Go I tested this code with: Microsoft SQL Server Management ...Show All

  • Visual Studio Team System Change Domains

    I recently migrated my BETA3 TFS install to a new domain.  Everything went fairly smoothly, but I'm having one problem that I'm unable to fix.  I cannot change the user assigned to the [SERVER]\Service Accounts group.  The group has a single read-only member: the TFSSERVICE user from the domain the server has left. TFS seems to be working okay with this account as is for Source Control.  However, when I try and create a new Team Project, I get an error that I don't have sufficient priveledges to do this.  Unfortunately, I'm writing this post from home so I don't have the exact text of the error message, but I su ...Show All

  • Visual Basic SQL Query into Array

    I have a stored SQL query that in the query builder returns a table with all of the distinct years in my database. Is there any way to put this information into an array I have been trouble using the data since the "schema" that the query returns is different than my database. Thanks! ...Show All

  • Smart Device Development "unable to establish connection to network" webexception

    hello, i'm cresting a mobile application that uses a web service, i'm deploying it using the pocket pc 2003 se emulator , i have the activesync & i cradle the emulator to it. but when the app is about to access the web service it gives the exception "unable to establish connection to network" with status : System.Net.WebExceptionStatus.ConnectionFailure & here is the code that uses the web service from the url : http://www.webservicex.net/length.asmx WSDL net.webservicex.www.lengthUnit L = new DeviceApplication2.net.webservicex.www.lengthUnit(); double x =L.ChangeLengthUnit(120, DeviceApplication2.net.webservic ...Show All

  • .NET Development Single .NET executable - linkers

    The guys at http://thinstall.com/  claim that with their product, you can create a single .NET executable, and run it directly off a CD-ROM, or just copy it to any location, whether the .NET framework is installed or not. Any experiences Thanks, Eyvind. I think the legal implications must have been handled by now -- this product has been out a while. Security is an issue, but it has always been the same with all statically linked applications. The fact is, one barrier to .NET adoption is installation of the framework! Most reasons for not wanting to install are stupid, but you cannot change that. ...Show All

  • Visual Basic Visual Studio 2005 Standard vs Professional

    Hi, I am trying to decide between the Standard and Professional versions of visual studio. The only information I can find on the Microsoft web site with a product comparison is ... http://lab.msdn.microsoft.com/vs2005/productinfo/productline/default.aspx this lists several differences which may/may not be of concern to me. Does anybody know where I could find more information on.... 1. The difference between the 'streamlined' and 'full' user experience (I assume this means IDE) 2. What is extensibility available in the professional edition above the 'consume extensions' of the standard edition 3. Does 'remote' debuggi ...Show All

  • SQL Server Updatable subscription in Transactional Replication

    Hi guys, I am trying to setup a Transactional Replication for my data. My publisher and distributor is MS-SQL 2000 server; while subscriber is on a Oracle server. All are locally installed. I have also setup the linked server connection and created the publication. Data is able to be replicated correctly onto my Oracle database. However, this time ard, I want my changes in the oracle database to be reflected back into the SQL database. So I had my publication re-setup with Updatable Subscription. I tried to test it out by making some changes in my SQL database, and my Distribution Agent failed, with error "Invalid HEX number". I belie ...Show All

  • Visual Basic AnalogTVTuningSpace and MSVidCtl

    Hi Schuon Per your request, my VB app code is shown below.  When the app is run,  1) the form appears with a blue screen (the colorKey) 2) the system speakers start buzzing and humming. 3) the red activity LED on on the winTV-USB box turns on. 4) there is no video picture! If I start the WinTV2000 program running while my VB app is also runni ...Show All

  • Visual Studio Team System Sample Templates

    I downloaded the MSF Sample Tempates v3 and tried to open the MS Project files. I can't see nothing in there, altough the files are prety big. Can someone tell me how can I see for example the Gant chart It's about MSFforAgileSwDevBetaProcessTemplate-100.1.zip from http://www.microsoft.com/downloads/details.aspx familyid=f9fd355e-98c2-4b51-86ab-4d4a6b34aafc&displaylang=en and MSFforCMMIProcessImpBetaPG-51125.00.zip from http://www.microsoft.com/downloads/details.aspx FamilyId=10B578F1-B7A4-459F-A783-04BC82CB2359&displaylang=en in the Templates folder (I'm not using the Team System s ...Show All

  • Visual Basic Images in a combobox?

    I have seen this is a few programs. There were comboboxes that contained images as well as text, with the image preceeding the text. Any idea if this can be done in vb.net Don't think the default ComboBox can achieve this, so you probably have to code a custom control. I found this in codeproject.com: http://www.codeproject.com/cs/miscctrl/ImageComboBoxControl.asp ...Show All

  • Windows Forms Fatal Error in Windows Forms

    In my Windows Forms application, a fatal error occurs with an error message "Fail to load resources from resource file. Please check setup." then closes down the my application immediately. All other forms work fine, except one. The error occurs when/after I called SaveData() method in my data access layer. I stepped through each line in the SaveData() method, no line causes any exception. The error happens as soon as the SaveData() method exits. I have no way to find the source of the error. Any idea Help! Regards, William I tried forcing my .NET 1.1 application to run ...Show All

  • Windows Forms Datagrid.Cell Backcolor

    is it possible to change the particular cells backcolor  pl'z provide me an example thanks in advance PrasantH You could also check out the following: http://www.syncfusion.com/FAQ/WinForms/FAQ_c44c.asp#q745q Hope this helps. ...Show All

  • Visual C++ Another problem with 2005 beta 2 and libcp.lib

    I'm using the boost library which I'm assuming uses the libcp.lib. If I try to compile I get this linker error LINK : fatal error LNK1104: cannot open file 'libcp.lib' If I try to ignore that library I get this error LINK : fatal error LNK1104: cannot open file 'LIBC.lib' If I try to ignore that library I get this error Linking... libboost_filesystem-vc71-s-1_32.lib(operations_posix_windows.obj) : error LNK2019: unresolved external symbol "public: void __thiscall std::_String_base::_Xran(void)const " ( _Xran@_String_base@std@@QBEXXZ) referenced in function "public: class std::basic_string<char,struct std::char_traits<char> ...Show All

©2008 Software Development Network