RayRayN's Q&A profile
Visual Studio Team System Create Report Problems
Dear Microsoft Cracks ;-) I have to try out VS05TFS. My boss want a reporting worked hour tool for developers. I have found some forum entries (http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=326021&SiteID=1), but i'm new in this software "branch" and i actually discover the report builder, and i think, there i can fill scripts like in the above forum link displayed. anyway, i can not create an new report, because "No Report Builder models are available". Anyone here who knows how to solve my problem, so i can go further and trainning my query skills on sql 2005 ! ;-) best thanks, regards riv Hi Riv, in V1 version of Team Foundation we didn't have enough time to provide a ...Show All
.NET Development IO.Ports.SerialPort DataReceived EventType=Eof
I never get an "Eof" EventType fom the SerialDataReceivedEventArgs. When the DataReceived event is raised the EventType is allways "Chars". I played around with the SerialPort.NewLine property but no success. Any ideas why Thanks, Eduardo It was technically possible to get an Eof event in the old days. The DCB structure, used to initialize the serial port, contains an EofChar member that allows one to define a special end-of-file character. Modern Windows operating systems no longer support non-binary transfers so the Eof event will never be raised. Accordingly, the SerialPort class doesn't have a EofChar member, the DCB member always gets initialized to 0x1A (Ctrl+Z). Why MSFT still defines Seria ...Show All
Visual C++ Building 3rd Party Libraries - cl.exe and link.exe errors
I'm having difficulty trying to build a dll from source provided by a 3rd party. The source is actually free and can be found at http://librsync.sourceforge.net/ I am trying to build the librsync library in Visual Studio 2005. If you download the above source, after extract the code, you will see a folder labeled PCBuild. I migrated the VS6 project to VS2005 and get the two common errors... Error spawning 'cl.exe' and Error spawning 'link.exe'. If I add the appropriate folders in the executable paths, it then gives me the Error result -1073741515 returned from 'C:\Program Files\Microsoft Visual Studio 8\VC\bin\cl.exe'. error. Can anyone offer any assistance with this Any idea what I am doing wrong Thanks for your assistance! ...Show All
Visual Studio unable browse new site with sharepoint
i sucess create a new portal name as http://wss in the share pointer server administrator said the portal is sucess without any error but when i browse it, the page showing "the page can not found" does anyone know what configuration i was miss you probably would be best posting at the appropriate communities for sharepoint: www.microsoft.com/communities ...Show All
SQL Server SQL Server 2005 Standard Ediiton.
Hi: A friend of mine who works with oracle claims that they could not install SQL Server 2005 Standard Edition to a drive other than the C:\ Drive. I know I could with Enterprise Edition and never tried with standard edition. Can any one please confirm that Standard Edition could be installed to a drive other than C:\ drive Thank you AK There is no difference in installation options (as it relates to path location) between Standard and Enterprise. Some files are put in the system drive, but you can checkout the template.ini file for the install path options (I think the parameter is something like INSTALLSQLDIR off the top of my head). Thanks, Sam Lester (MSFT) ...Show All
.NET Development SqlReader not working
I am nearly there, on my thing. Now to get the result For Some reason If i type System.Data.SqlClinet.SqlReader rdr = cmd.ExecuteReader; I get can error saying The type or namespcae name 'SqlReader' does not exists in the namespace 'Sytstem.Data.SqlClinet' (are you missing an assembly reference) I have the following at the top using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; Am I missing something Is it a config erorr The main question, How do I resolve this ALSO.... The query I am running is to select the row, where th ...Show All
Visual Basic Run time Error
Private Sub cmd_DeleteTables_Click() MsgBox "Click yes when prompted to delete records" Dim sqldel As String sqldel = "DELETE tbl_physical_main.*, tbl_physical_main.[Material Number] FROM tbl_physical_main WHERE (((tbl_physical_main.[Material Number]) Is Not Null))" DoCmd.RunSQL sqldel, no sqldel = "DELETE tbl_noDataForTag.* FROM tbl_noDataForTag" DoCmd.RunSQL sqldel, no sqldel = "DELETE tbl_SAPmaterials.* FROM tbl_SAPmaterials" DoCmd.RunSQL sqldel, no MsgBox "All previous inventory data has been deleted and the next inventory load may continue." End Sub DoCmd.RunSQL sqldel, no after delete the record I have run time error, Please advice. Gee1 ...Show All
Smart Device Development DivideByZeroException running GPS example code
I’m new to pocketpc development with Visual Studio and just learning from the examples shipping with Windows Pocket PC SDK. I’m specially interested in devloping GPS aplications so I’m quite frustrated by getting an DivideByZeroException running the GPS example ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/mobilesdk5/html/mogrfGpsSample.asp ). The exact error which shows up: GpsSample.exe DivideByZeroException Application::Run+0xf Form1::Main+0xa I can’t find any divisions in this example and would appriciate any help to figure out which part of the code throws this exception. I’m running Windows Mobile 5.0 on a Eten X 500 pocket PC ( http://www.etencorp.com/products/Communication/X500.php ) and cgacutil.exe s ...Show All
Visual Studio 2008 (Pre-release) Dragging forms around with mousedown
Just wondering - just looking at my code at the moment... I've got a login form to capture mouseclicks anywhere on the form surface and be able to drag it. I had to use the below to pass the window handle to the API function. Dim objWindowInteropHelper As WindowInteropHelper = New WindowInteropHelper(Window) ReleaseCapture() SendMessage(objWindowInteropHelper.Handle.ToInt32, WM_NCLBUTTONDOWN, HT_CAPTION, 0) Is this do-able within WPF itself Chris ...Show All
Visual Studio Express Editions Carriage Return on a Msgbox
Can anyone help me with the syntax for this I tried (CHR(10)) and that did not work. Thanks in advance. Eric In MsgBox("hello" & Chr(13) & "there!") it works for me ...Show All
SQL Server Question about Database Mirroring and Possibly NLB
OK since my company really would not prefer to spend the money for Windows 2003 Enterprise and MS SQL 2005 Enterprise I was thinking about this idea... Server1 - W2K3 Std - SQL2005 Std - Primary Server2 - W2K3 Std - SQL2005 Std - Mirror Server3 - W2K3 Std - SQL2005 Std - Witness Server4 - W2K3 Std - SQL2005 Std - Processing OK So we have Server1 & Server2 doing the Database Mirroring. Then I have Server3 as the Witness to say who is the Primary and so forth. Now Server4 I thinking to us to create jobs that will run on a Schedule to pull data from our Ticketing system and import it into Server1 & Server2 (Yes this is a Datawarehouse).. So what I am wondering... We really wish to not have to change our connections to the DB wit ...Show All
SQL Server SSAS YTD with Multisets
Hi All, I'm not that well versed with MDX (I'm more of a TSQL guy). I have a simple calculated member as below: AGGREGATE ( PeriodsToDate ( [end_date].[Financial].[FYear] , [end_date].[Financial].CurrentMember ), [Measures].[ActualVolume] ) This works fine if I filter on the year or a single period, however it fails if I try any mltiset selections (for example 2 quartuers). Any help would be appreciated. thanks, Hi, I managed to get this far: SUM ( EXISTING [end_date].[Financial].[FYYYYMM]. Members , SUM ( PeriodsToDate ( [end_date].[Financial].[FYear], [end_date].[Financial]. CurrentMember ), [Measures].[ActualVolume] ) ...Show All
Visual Studio communicate/add content to property view
How can I add content to the Property View When a file is open e.g. a Html file, I'd like to query the property view and get detail on what html control is presently selected etc, then add content to the property view. I've seen how to add information to the property view but I do not know how to query it! Hi Nisham, I see the example is in VB, I'm using C# I should have mentioned this. Is there an equivelent example implemented in C# I see from the blog, Craig is describing editing the Project Properties, is the same method as one would use for extending properties of a control ...Show All
Visual Studio Support for Web Application Project
Does the Guidance Atomation Toolkit support the new project type "Web application Project" that should be an alternative to the WebSite project type Thanks for the answer. I see what you mean. Unfortunaltely I'm currently assigned to a 'critical' project, and won't be able to try it right away. I'll keep you posted as soon as I (or someone else) did. ...Show All
SQL Server SUBSTRING with multibyte codeset
SELECT SUBSTRING(fieldOne, 1, 4) FROM tableOne; For the above statement, I want to get EXACTLY four bytes. However, if fieldOne contains some multibyte characters, it will return more than four bytes. I don't have too much experience in SQL server. Any solutions/suggestion will be appreciated. Thank you. Hi Wilson I cant say will this is helpful to you or not. Just make a try of this SELECT cast ( 'abc' as image) SELECT cast ( 'abc' AS varbinary) this returns the Hex of : a b c 0x616263 Gurpreet S. Gill ...Show All
