Kripz's Q&A profile
Visual Studio Team System Having trouble deploying to the report server
Tried every combination with and without SSL, using reports and reportserver - cannot get it to deploy. Tried target folder the same name as my report project and the same name as my team project - still no luck - what am I missing TITLE: Microsoft Report Designer------------------------------A connection could not be made to the report server https://vstudio01:8143/reportserver.------------------------------ADDITIONAL INFORMATION:The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. (System.Web.Services)------------------------------The remote certificate is invalid according to the validation procedure. (System)------------------------------BUTTONS:OK------------------------------ ...Show All
Smart Device Development Timer tick count
Hi, I am having this annoying problem with incrementation of int values in timers. int i = 0; private void timer1_Tick(object sender, EventArgs e) { i++; } The output of i is 2, 4, 6, 8 and so on. There is some strange double increment for every time the timer ticks. It is a Systems.Windows.Forms Timer. My questions are: 1. Is there some already implemented tick count I can use 2. It seems like some method calls from inside the timer1_Tick method (or all method calls in there, possibly) are also called twice in every tick. Just like the i++. How can I prevent this Thanks Olle After much testing of the code above and especially the method calls in the foreach loop above, I am pretty sure all my problems come from the double inc ...Show All
.NET Development How to eliminate the blank line
I have a 2 questions... This is the 1st question. I am using a dataset to populate the XSL file. In the file there is a field --> COMPANY_NAME. The field value should only be see if the value is not equal to 'Individual'. I am achieving this by the code below. But if the value is 'Individual' then I am getting a blank line where this field is placed. How can this blank line be eliminated and also How can I test for a null value < xsl:choose > < xsl:when test ="not(dc:COMPANY_NAME = 'Individual')"> < xsl:value-of select ="dc:COMPANY_NAME"/> </ xsl:when > < xsl:otherwise > </ xsl:otherwise > </ xsl:choose > ...Show All
Visual Basic [OTP]Page_Load Blank Form
I need to make my WebApplication load a blank form so that a user can add the values to the form then save to the database. currently when the page loads all the drop down list boxes have what ever the first value is and everything esle is blank.. what i need is to have everything blank when the page loads and also i need everything blank when i click on the Start New Application button on my form... Any help would be welcomed and i would be thankful for. Thank, WoFe In order to receive faster and better responses to your web application questions please post them on the asp.net forum located here: http://forums.asp.net/ Your question is off-topic for this forum ...Show All
SQL Server KPI Trend depending on last 4 months
Hi! I've created a KPI. My problem is on the creation of the MDX trend expression. I'd like trend to depend on last 4 months. I wrote this query which works fine in SQL Server Management Studio : WITH MEMBER [APPEL].[Hierarchy].[My4Months] AS Aggregate( lastperiods(4,[APPEL].[Hierarchy].[ANNEE APPEL].&[2006].&[02]) ) SELECT [APPEL].[Hierarchy].[My4Months] ON COLUMNS, KPIValue("Pourcentage de respect") ON ROWS FROM [Amon] I'd like to obtain the same result in SSAS. So i created a calaculation nammed My4Months with the expression : Aggregate(lastperiods(4,[APPEL].[Hierarchy].CurrentMember)) ...and I entered as trend expression : CASE WHEN (KPIValue("Pourcentage de respect"),[APPEL].[H ...Show All
Visual FoxPro Why the datas from the .dbf file (table) on the form are not displayed?
Hi all Need help very badly.. I purely have no idea where i go wrong. I'm trying to get the datas (such as CHEVSINSMZ 100,CHEVSINSMZ 100, CHEVSINSMZ 101, CHEVSINSMZ 102, etc) from the table (.dbf) display and then trim into "CHEVSINSMZ 100 & 101 & 102 itself. What i get the result on {.xdf_bl.value= OutPutSTring} of the form is (1)_________ when testing this form. Why cannot the datas be shown on the text field when searching for the value in the .dbf _-_-_-__-_-_-__-_-_-__-_-_-__-_-_-__-_-_-__-_-_-__-_-_-__-_-_-__-_-_-__-_-_-__-_-_-__-_-_-__-_-_-_ tnfjob is the name of the table. Jt_hblno is an attribute of the table (.dbf)in the form. It is like something that originally contains CHEVSINSMZ 100,CHEVSINSMZ 100, ...Show All
Visual Studio 2008 (Pre-release) Test WCF Services using Team Test
Hi, Anyone knows how to use team test to create tests for WCF services thanks a lot oaix Thanks for sharing. That what im doing for unit test. as for load test. how it will simulate multiple different endpoints from client ...Show All
Community Chat .NET Web Browser Effort - First Preview!
Hi Guys, A couple of months ago I started an opensource effort to create a Web Browser better than IE7 in .NET. So far its going GREAT, with a team of 3 including me. As of now, source code is not offered - it will be once I get it to a Beta 2 state. Also, if anyone would like to join the project please send an email to netwebbrowser@gmail.com or add mateuszrajca@msn.com to your MSN/Live Messenger contacts list(email is preferred) Here are some stuff you can help in: Write code(C#), fix bugs in code(C#), make sourcefourge web site, report bugs, optimize code(C#), make app more responsive, make installer, graphics (icons logos) and whatever else you can come up with! Download Now Preview 1! ~Matt ...Show All
Visual Studio Team System Cant install TFS
Hello I got an error on tfs setup. I will paste the last lines of both log files. === Verbose logging started: 02/12/2006 23:20:28 Build type: SHIP UNICODE 3.01.4000.1830 Calling process: E:\Documents and Settings\Administrator\Local Settings\Temp\SIT40817.tmp\setup.exe === MSI (c) (18:78) [23:20:28:703]: Resetting cached policy values MSI (c) (18:78) [23:20:28:703]: Machine policy value 'Debug' is 0 MSI (c) (18:78) [23:20:28:703]: ******* RunEngine: ******* Product: d:\software\utilidades\tfs\atdt\vs_setup.msi ******* Action: ******* CommandLine: ********** MSI (c) (18:78) [23:20:28:703]: Client-side and UI is none or basic: Running entire install on the server. MSI (c) (18:78) [23:20:31:703]: Failed to grab executi ...Show All
Visual Basic Print PDF with PrintDocument
Is there any way to print a PDF through a PrintDocument control I didn't realize adobe had an SDK...I might check that out. Do you have a link Even so, is the ePrint thing a 'printer driver' if it is, you should be able to select it as a printer. Does setting the 'documentName' not change the name of the created PDF document I use PDF995 - a nice cheap PDF printer driver (I believe there are also free ones). When printing to a PDF, just treat it as a piece of paper - so anything you print in the PrintPage handler should show up on the PDF document. If your end result is a TIFF then you may want to create a TIFF directly. A search of MSDN seems to imply that you can create TIFF images directly. ...Show All
Visual Studio Tools for Office infopath 2003 toolkit for visual studio 2005?
Hi, Can u please send me the path for downloading infopath 2003 toolkit for visual studio 2005 i searched in many places every where they i got it visual studio .net 2003 but i want that toolkit for VS 2005 Thanks & Regards The correct version of the Microsoft Office InfoPath 2003 Toolkit for Visual Studio 2005 is now posted on ProductsWeb as the VS 2005 edition “ Tools for Office – InfoPath ”: http://productsweb/product.aspx productnameid=1658&status=3&platformid=-999&category=1 Hope this helps! Mei ------------------------------------------------------------------------------------------------------------------------------------------------ This posting i ...Show All
Windows Forms DataGridView and Update/Insert/Delete data in MS Access
Hello, I have an application (Windows Forms) that populates a table from an *.mdb file to a DataGridView . Is there any tutorial available which shows how to implement Update/Delete of current data, or Adding(Insert) new data using the DataGridView Thank you in advaned. Thanks for the help so far. One last help before i send you the project, Now when i run the project it gives me the OledbException below : Could not find file 'C:\Documents and Settings\Nicholas\My Documents\Visual Studio 2005\Projects\DatabaseProject\DatabaseProject\bin\Debug\datafile.mdb'. The exception is given during the Form1_Load, on the line that the dataset(DbSet) fills t ...Show All
Software Development for Windows Vista Update MSDN To Support WINDOWS WORKFLOW FOUNDATION
From where i can update my msdn to support wwf To get documentation for Windows Workflow Foundation you must install Windows SDK: http://www.microsoft.com/downloads/details.aspx FamilyId=C2B1E300-F358-4523-B479-F53D234CDCCF&displaylang=en ...Show All
Windows Forms Array.ForEach for other types
Hi, how can i convert a rowscollection to an array in this case., does the array.foreach method only for arrays or thereare other similar comparators Private Sub CompareCompleteness_of_grid2() Array.ForEach( Me .ds.Tables( Me .tb2name).Rows, AddressOf verifyPO) End Sub Private Sub verifyPO( ByVal t As DataRow) End Sub You can copy the items to an array like this Dim arRow(ds.Tables("Products").Rows.Count - 1) As DataRow ds.Tables("Products").Rows.CopyTo(arRow, 0) For Each dr As DataRow In arRow Debug.Print(dr(0).ToString) Next ...Show All
Windows Forms How to access different forms controls properties...?
Hi… In my C# MDI application, I have a parent form & on click of some parent forms toolstripmenuitems & toolstripbuttons I am popping up some windows(Forms). All these popped forms are not child form of parent form. I want to access some controls & their properties of parent form from all these popped forms & also I want to access some controls & their properties of those popped forms from parent form. So where I should declare object of parent form & those popped forms for both my requirements. I have declared object of parent form in each of these popped forms load event & I have declared object of those popped form in parent forms form load event…but with this my applica ...Show All
