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

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

YorickPeterse

Member List

NoobestNoob
RubenPieters
DavidR100
Ken_orgami
QuantumMischief
xeondev
Robert Kozak
Eliyahu
GunaChinna
Sigge
Sugan
museicon
shmulik_segal
CharlieCSharp
nullptr
thomasx4
ZombieCron
Tomas Fröjdö
Fata1Attack
sRi rAM
Only Title

YorickPeterse's Q&A profile

  • Visual Studio Team System Virtual Server in a Production environment

    Hi      I am planning on doing a dual server installation of TFS.My data tier is a real box, where as my app tier is a VM.I am going to be doing this in a production environment at my client's place. Microsoft recommends not to  run TFS on a VM in a production environment in the following article http://msdn2.microsoft.com/en-us/library/ms316494.aspx   Virtual PC Team Foundation Server servers will operate correctly on a Virtual PC or a virtual server. However, this configuration is not recommended for production environments. It can be used in evaluation or demonstration scenarios   Is there a specific reason why If so, what are the risks involved Could someone please hel ...Show All

  • .NET Development Sharing 2 code bases

    Hi All! I have a Windows DLL containing code used in normal windows VB.NET projects. I want to create a DLL to be used in a Pocket PC Project that references the same code used in the WIndows DLL without cloning the code base. Any ideas how to accomplish this Charlie There isn't a real easy way of doing this, mostly because the compact framework and the main framework have a lot of differences. One option I have successfully used in the past is creating a separate project for the PocketPC library, but using "link to file" when adding the original files to the new project. I then use preprocessor directives to resolve differences between the two frameworks. Using linked ...Show All

  • Visual Studio 2008 (Pre-release) Is Winforms Going away?

    I see all the UI benefits to the WPF but does this mean the Winforms is eventually going to obsolete I am a die hard Microsoft fan, but if we have to keep rewriting our apps to keep up with the trend, I'm having second thoughts. I am now in the middle of developing a Large scale Winforms App that I have already worked on for almost 2 years in .NET. I am concerned that by the time I release it, I will need to rewrite it to take advanatae of the UI features of WPF. Is Microsoft going to keep upgrading the Winforms along with the WPF Thanks I suppose Windows Presentation Foundation is not NEW version of WinForms, it is just ANOTHER way of creating applications. So now there are two ways o ...Show All

  • SQL Server Management Studio connection

    I receive the falling error when trying to connect to Reporting Server through SQL server management studio. I can connect to the reporting serve and run reports through http://localhost/reportserver with no problem. Error: Program Location: at Microsoft.SqlServer.ReportingServices2005.RSConnection.MissingEndpointException.ThrowIfEndpointMissing(WebException e) at Microsoft.SqlServer.ReportingServices2005.RSConnection.ValidateConnection() at Microsoft.SqlServer.Management.UI.RSClient.RSClientConnection.CreateConnection(String connectionString) at Microsoft.SqlServer.Management.UI.RSClient.RSConnectionInfo.CreateConnectionObject() at Microsoft.SqlServer.Management.UI.RSClient.RSConnectionInfo.RSTypeImpl.GetConnectionObject( ...Show All

  • SQL Server Working with two data sources and dependencies parameters

    Hello. This is a real hard nut to crack :) I'm trying to do the following: I have one dataSource name "dSource1" and second named "dSource2". I have a report with one dataSet base on dSource1 and one dataSet base on dSource2. Now, I want that the second dataSet will return a list of numbers and for the first dataSet to use those number in a query. (example: second dataSet is "select num from t1" and the first dataSet is "select * from t2 where nums in (@allNums)". and of course that @allNums should be the values returned from the second dataSet. Whan I tried to set the @allNums parameter to get his default values from the query of the second dataSet I got the error that say "forward dependencies ...Show All

  • Silverlight (formerly WPF/E) OnMouseWheel

    Is there a OnMouseWheel event (obviously this is not the case, but it might have another undocumented name). If not, I'd like to have it on the wish list. No there isn't any mouse wheel support. We currently do not have plans to add mouse wheel support for a while. You can rely on HTMLs mouse wheel support like Peter's http://peteblois.members.winisp.net/Seventeen sample does. Peter's sample uses what is described here: http://adomas.org/javascript-mouse-wheel/ -mark Program Manager Microsoft This post is provided "as-is" ...Show All

  • Windows Forms Timer and memory leak

    As a newbie to c# and vis studio am having trouble with the following timer function. When i watch it in task manager i can see the memory used increasing steadily per unit time: I presume its something to do with not freeing up the objBitmap but not sure. As you may guess, the timer is there to animate the taskbar icon. Suggestions Please.. Thanks Shaun private void iconTimer_Tick( object sender, System.EventArgs e) { Bitmap objBitmap; Icon objIcon; objBitmap = new Bitmap(imageList1.Images[iconRef]); objIcon = System.Drawing.Icon.FromHandle(objBitmap.GetHicon()); notifyIcon1.Icon=objIcon; iconRef++; if (iconRef==16) iconRef=0; } It happens for the same reason that any memory leaks hap ...Show All

  • Visual Studio Express Editions backgroundworker and datagridview

    I have a delimited text file that, and I have it read it and display it into a datagridview. The file is quite large, so backgroundworker can be useful. The problem is that they don't work very well. How can I update the datagridview from the backgroundworker Basically right now I have Button1 -do work, update datagrid.   The one that blow up earlier, for the backgroundworker, I set it as Button1 -call the async Backgroundworker -do work, update grid. heh.. that didn't work.   I'm not familiar with Control.Invoke, samples are confusing, so I'm just going to use DoEvents. ...Show All

  • Windows Forms Change name of Form1, no design view.

    I created an application that created 'Form1' by default. I renamed Form1 to jpd7main and compiles ok, runs ok. I closed the design view for 'jpd7main' and now I can't open it in design view. Still compiles and runs ok. I even added another form, which I can see in design view. In the explorer window, the new form has a form icon next to the .h file whereas the 'jpd7main' has a header/code icon next to the .h file. Any help would be appreciated. Thanks gqlu wrote: Try to compile the whole project, and then open the designer view. Maybe it will recover some dependencies lost during the renaming. Already tried that, no luck. Thanks anyway. ...Show All

  • SQL Server Relational DB/Analysis Services Configuration for multi-proc environment

    Hello-- Is it possible to install/configure SQL-Server 2005 on a multi-processor machine so that the relational DB utilizes a given subset of processors while Analysis Services utilizes another subset Thanks, - Paul Although you could use OS services to do such a thing, we haven't tried it ourselves, though (you could let everyone know how it works out! ) ...Show All

  • SQL Server Modifying Existing Table Schemas?

    By default, I constructed my database using the dbo Schema. I have since created new Schemas, and want to change some of the tables from dbo. Is there a way to change the existing schema of a table without disrupting the data that is inside the table For example: Current: dbo.Products Desired Change: NewSchemaName.Products Thanks. ...Show All

  • Visual Basic Help << operator VB. net

    day (1-31) Month (1-12) Year(0-99) Can you help me This code is wrong but is something like this i think. Module Module1 Sub Main() Dim MyDate As Integer Console.WriteLine( "enter day!" ) MyDate = ((Console.ReadLine) << 3) Console.WriteLine( "enter month!" ) MyDate = ((Console.ReadLine) << 6) Console.WriteLine( "enter year!" ) MyDate = ((Console.ReadLine) << 0) Console.WriteLine(MyDate) End Sub End Module try something like this: Sub Main() Dim day as integer, month as integer, year as integer Console.WriteLine( "enter day!" ) day = cint(Console.ReadLine) Console.WriteLine( "enter ...Show All

  • .NET Development Replace a Select Statement

    Is there a way to replace a SELECT statement programmatically that was created in ADO.Net Regards I get "Error 6 'SelectCommand' is not a member of 'ECS.MailBoxManager.vb.RegularDBTableAdapters.TableAdapter1'. " Regards ...Show All

  • Visual Basic string manipulation

    I've got a string "6/78=12.34" i need to get the value to the right of the = sign how would I do that Mitch with some string parsing if theString.Contains("=") then Dim theWantedString as String = theString.SubString(theString.IndexOf("=")) end if should get you everything after the "=". you could also use Regex, regular expressions, but are complicated and expensive but is useful when you have long and or complicated searches to do ...Show All

  • Visual Studio Tools for Office Using webservices fro infopath forms in MOSS 2007.

    Hi, I am currently working on infopath forms in moss 2007. I need to retrieve and submit data from infopath to a webservice. I am able to do so in the offline mode, but when I publish the infopath form to sharepoint and open the infopath form in browser i receive an error that the form couldnt be submitted successfully. What could be the possible reason for this I have given automatically deterime security level trust setting to the infopath form coz if I give it full trust it cannot be published to the browser. Can anyone please help me -Thanks and regards, Bhavana Bhat bhavana.b@tcs.com This is really a question best asked in the InfoPath or MOSS forums. http://msdn.microsoft.com/n ...Show All

©2008 Software Development Network