Software Development Network Logo
  • VS Team System
  • Microsoft ISV
  • Smart Devicet
  • Windows Forms
  • IE Development
  • Visual FoxPro
  • Visual C++
  • Game Technologies
  • Visual Basic
  • Visual C#
  • SQL Server
  • Visual Studio
  • .NET Development
  • SharePoint Products
  • Windows Vista

Software Development Network >> yaron-ct's Q&A profile

yaron-ct

Member List

NigelX
Sébastien Nunes
Xaid
Buddhist
Olivier Cueilliez
Michael Barrett
REspawn
Andrew Shearer
Gerrit L
SnowyT
Lars E.Nes
GermanWillie
darkcypher543
Camulus
defstream
LPlate
Andy Ventura
Steve Dunn
Bill Baker
search and deploy
Only Title

yaron-ct's Q&A profile

  • Software Development for Windows Vista Do Retail Edge people download the final vista, or will they be mailed it? Thanks.

    Hey, I got the Intel retail edge package that included Windows Vista Ultimate in it. I'm doing a clean install of my operating systems, and I was wondering... Is the Vista RC1 that was sent to me with the Retail Edge deal... will that product key upgrade allow me to download the final version when it's released Or will Intel send me the final version in the mail anyone know Thanks. Heyyo, I'm in the same boat. I got RC1, and I don't see any info on upgrading to RTM. I tried borrowing my friend's Ultimate RTM disks and using my code from the Intel Retail Edge RC1 disks, and it didn't work! said, "your product key is invalid."... um... yeah... oh... just found this in the Intel Retail Edge FAQ.. The 2006 Purchase Program bundle incl ...Show All

  • .NET Development Loading values into multiple lables in VB.NET

    What I am trying to deicide is whether I should use multiple datareaders to store the the individual values or if I should query the data an stash it in a dataset then bind the result in set to the labels. Which one should I use and is it doable It really depends upon what your application requirements (and preferences) are. I would take a look at the following article: http://msdn.microsoft.com/msdnmag/issues/04/06/DataPoints/ ...Show All

  • Visual Basic DeviceIOControl Does Not Work on Windows 98

    i wrote a program that get hard disk's firmware serial and it works fine in winXP/Win2000 but when i run it in win98 it doesn't give me the serial number i used Smartvsd.vxd and vWin32.vxd to Solve this problem but it doesn't work yet. any idea plz forgive me for my bad english .   i changed the code but it doesn't work.  Have you verified that the drive support SMART IDE commands i think it doesn't support SMART IDE commands. and can you explain some more   is the call to DeviceIOControl returning a non-zero value if not, what's the error code reported by GetLastError it return 1 .     ...Show All

  • Visual Studio Express Editions can't install the SDK

    Hello,   I've tried everything to get ANY program to work and they won't. Not even "Hello World" or code copied directly from help.   Always the same:   LINK : fatal error LNK1104: cannot open file 'user32.lib'.   I've read all the suggestions here, followed all the directions including from the websites:     1. Uninstall beta versions   Before installing, you must uninstall any previous versions of SQL Server 2005, Visual Studio 2005, and the .NET Framework 2.0 (this includes Tech Preview, Beta, or CTP versions).   2. Download and install Visual C++ 2005 Express Edition!!   3. Register   4. ...Show All

  • Visual Studio 2008 (Pre-release) Using web services with xbap application

    I have created an wpf browser application that relies on calling a web service. However, whenever I call the web service, I recieve a "System.Net.WebPermissions" error message. The web service is located on a different server. How do I get this to work Thank you for the help. Steve Scratch that: it seems to be working now. Not sure what I did to fix it, but it's now working. Sorry to have troubled you if you read my previous post! ...Show All

  • Visual Studio Team System Source Control (project file)

    Is it common practice to checkin the project file Everytime someone adds/removes a class it is forcing a merge.. if the user does not merge the project file, then classes will be downloaded to his local drive but not be in his project.. anyone have solutions for this Yes, by default the Add Solution To SCC wizard will checkin the *.sln & *.XXproj files. This is necessary for the reasons you outlined. Nobody should have to do a merge unless they modify the file at the same time as someone else. If you want to prevent this, an administrator can add *.csproj to the list of unmergeable file types (Team -> TFS settings -> Source Control File Types). ...Show All

  • SQL Server SELECT statement with two retrieved columns originating from the same dbase fields

    Hello, I've been busy all night searching and reading trying to figure out how I can do the following. I have a table that tracks user IDs in multiple fields. When I select records from this table I need a way to resolve those ID fields back into user names by referencing the users table. SQL statement thus far... SELECT A.Username as NameA, B.Username As NameB, FROM theTable, Users As A, Users As B WHERE theTable.UserIDA How do I resolve theTable.UserIDA and theTable.UserIDB back to Users.Username so that the records returned fill the fields NameA and NameB Your help is greatly appreciated. Thanks, -Mike Also, please don't use the column_expression AS 'column_ali ...Show All

  • Visual Basic set internalname property in VB.net

    I want to set internalname property in using AssemblyInfo.vb but how i dont know to use...Anyone to know please help me the problem ... VersionInfo Resource: http://msdn.microsoft.com/library/default.asp url=/library/en-us/tools/tools/versioninfo_resource.asp Using the read-only property... http://msdn2.microsoft.com/en-gb/library/system.diagnostics.fileversioninfo.internalname.aspx ...Show All

  • Smart Device Development LinkLabel question

    Hi all, This is a GUI question. I have a link label on a page of a tab control. Upon clicking on that link label, I'd like to take the user to the next page of the tab control. I could not find any useful examples on how to implement this inside a smart device application. Does any one have any suggestions Cheers Handle The clicked event of LinkLable and put the following code in there: if(tabControl.SelectedIndex < tabControl.TabPages.Count -1) { tabControl.SelectedIndex += 1; } I hope this will work! Cheers ;-) ...Show All

  • Visual Studio Team System FxCop for .Net 1.1

    Where can I download the .Net 1.1 version of FxCop. .Net 2.0 is not available and may not be installed at my client. Unfortunately, we are no longer making FxCop available for the reasons specified over on the blog: FAQ: Why is FxCop 1.32 not available for download By what do you mean by '.NET 2.0 is not available ' Even though FxCop 1.35 runs on .NET 2.0, it can still analyze 1.0 and 1.1 binaries. ...Show All

  • SQL Server Is this considered scale-out?

    I picked back up an effort to get our reporting services DR scenario in place and am having some issues. Our corporate approach for production databases is to back-up the database to the local server disk, copy the back-up files to a remote office and restore the databases on remote DR servers. This process is scripted to run overnight so in the case of failure of the production environment we lose at most one day of work. Now, I would like to set up a parallel scenario for Reporting Services and started with reading a bit of documentation. I read "Moving a Report Server Database to Another Computer" and "Backing Up and Restoring Encryption Keys" and then set to work. I have two instances of SQL Server 2005 Standa ...Show All

  • SQL Server Code error

    ALTER PROCEDURE copy @row int AS GO DECLARE @firstName isim DECLARE @lastName isim DECLARE @age int DECLARE MyCursor CURSOR FOR Select Ad,SoyAd,Yas FROM Bilgi where Row < @row OPEN MyCursor FETCH NEXT FROM MyCursor INTO @firstName,@lastName,@age CREATE TABLE #tablo( ad n z nvarchar(20) NULL, soyAd n z nvarchar(20) NULL, Yas n z int NULL ) while(@@FETCH_STATUS = 0) BEGIN INSERT #tablo VALUES(@firstName,@lastName,@age) FETCH NEXT FROM MyCursor INTO @firstName,@lastName,@age END CLOSE MyCursor DEALLOCATE MyCursor SELECT * FROM #tablo GO When I run the above code snippet, I encounter an error called "Server: Msg 137, Level 15, State 2, Line 5 Must declare the variable '@row'." How can I fix it Again and again thanks very ...Show All

  • Windows Forms CellValueChanged() event inside the KeyDown() event

    Hello All Is it possible to fire CellValueChanged() event inside the KeyDown() event of the DataGridView control. I tried this way but failed Private Sub dgvAlphaNumeric_KeyDown( ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles dgvAlphaNumeric.KeyDown dgvAlphaNumeric_CellValueChanged(sender, CType(CType(e, EventArgs), DataGridViewCellEventArgs)) End Sub Is there any support other than this Thanks in Advance PRash ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creator's Club exclusive content?

    When will we start to see Creator's Club exclusive content I mean, it costs $129 (CDN) for this membership. And I don't think the only thing we payed for was the ability to deploy games on the Xbox 360. I'm guessing we'll have access to some member-only assets. And lots of other cool trinkets. If this is the case, when will see our money's worth Also, any news on XNA Racer @Bapa - There was a large discussion about this a few days ago.... http://forums.microsoft.com/MSDN/ShowPost.aspx PageIndex=2&SiteID=1&PostID=1110180#1110180 Seems like Microsoft are back tracking a little on what the Creators Club is supposed to be. Whilst they are now saying that the main benefit is the ability t ...Show All

  • Visual Studio 2008 (Pre-release) How to return a List<T> using WCF

    I have an application that reads lots of small blocks of records from a data store primarily to supply the application's numerous lists (drop-down etc.) I have been returning DataSets using web services in .NET 2. Now I would like to implement the same functionallity in WCF. I have already got methods that return DataSets in WCF that duplicate the functionallity. However it occurs to me that I could make a list of the rows represented as class objects and return a list instead. The idea being that the server is doing some of the work for me and that I could more easily port a web version of the service if the result is in List<T> form from the service. At this point I take a DataSet and create the List<T> at the client which ...Show All

©2008 Software Development Network