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

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

newbieneedshelp

Member List

jaymc
bubu
cgraus
guyguy2003
farsad ghaffarian
Redgum
Franco Finstad
Jonny Neil
Richard Meyers
ICW
SamuraiDan
TomekCalifornia
joynerCN
farming
Reza Bemanian
OLE72
Petru66
Michael Hansen
CostasZ
WV John
Only Title

newbieneedshelp's Q&A profile

  • Visual Studio Team System MSBuild error due to long filenames

    When trying to build one solution within a TFS project that also contains my database project the entire build fails because of the file names of some of the generated schema objects: C:\Program Files\MSBuild\Microsoft\VisualStudio\v8.0\TeamBuild\Microsoft.TeamFoundation.Build.targets(301,5): error : TF10128: The path c:\builds\leontest\Alchemy\Leon Test Build\Sources\Mercury Database\Mercury Database\Schema Objects\Tables\Indexes\dbo.tblwAppointmentLineItemsRequiringRemedialWork.IX_tblwAppointmentLineItemsRequiringRemedialWork_PortionOfLineItemScheduledOnAppointment.index.sql contains more than the allowed 260 characters. Type or select a shorter path. I'm not even including the database project in the build, and so it's quite annoy ...Show All

  • Visual Studio 2008 (Pre-release) Which version of Windows Media Player for WPF (RC 1)?

    Which version of Windows Media Player for WPF (.NET 3.0 RC 1) should we use if we want to muck around with Video, Video Brushes etc and wmv files etc. cheers Hi Everybody, I rolled back to WMP 10, now the SDKs "MediaGallery" works properly. so it looks to me like RC1 only works with WMP 10, not 9 that comes with XP and Not 11. Is this going to change I just had a bad dream, my customer first installs the dot net framework and then a new media player and by that time he is so old he has forgotten about my program. ;) It going to change, right Later Mike ...Show All

  • Visual Studio 2008 (Pre-release) ObservableCollection for IList

    Why the ObservableCollection accepts only List<T> in the constructor It would be nice to have IList<T> support as well in ObservableCollection. I have IList<T> implementation (Db4oList) which uses db4o ( www.db4o.com ) object database internaly to activate and deactivate list items in memory. The list can have a large number of objects (but only a specified amount of objects is kept in memory) and it is not practical to use List<T> constructor because it enumerates all objects. I just want to know whether ObservableCollection will have constructor for IList<T>, otherwise I will implement INotifyCollectionChanged directly. ...Show All

  • Internet Explorer Development IE7: BeforeNavigate2 not called any more on javascript links

    Hello, I have discovered that IE7 does not call the DWebBrowserEvents2 event BEFORENAVIGATE2 any more when the user clicks on a javascript link. The event was invoked in IE6 and allowed BHOs to handle javascript links. Before IE7 it was possible to cancel, modify or otherwise react on javascript invocations. I used this functionality to implement a pop-up blocker for IE. Example Code <html> <body> <a href="j a v a s c r i p t : alert('pop-up');">Pop-Up</a> </body> </html> // added spaces between "j a v a s c r ip t :" to be able to post the code Please call the BeforeNavigate2 event again for backward-compatability reasons or introduce a new event whenever a javascript link is act ...Show All

  • Commerce Server Commerce Server Inventory Update from BizTalk

    Hello, I am trying to arbitrarily modify a products "List Price" in the Commerce Server inventory from a BizTalk server. From what I understand I have to construct an inventory message to send to the BizTalk Commerce Server Send Adapter. Essentially I have a product ID and a new price to set ion commerce server. Do I have to construct a complete inventory message for a given item, or can I just send product ID and price Or should I query the original inventory record and then modify the List Price property before sending it back to the inventory adapter I am just beginning to wrap my head around this process so I apologize if this doesn't make any sense. Any info in the right direction would be a huge help. Thanks a ton. Jason ...Show All

  • Windows Forms Application.Exit(); not working when backgroundWorker.IsBusy!

      Can you please tell me why is that and how can I solve it   if (backgroundWorker.IsBusy)         System.Diagnostics. Process .GetCurrentProcess().Kill(); Application .Exit(); Does the work, but I have a feeling that this is not a proper way to do it!   Please help. Thank you in advance. I have axactly the same problem. Is there a way to abort the thread in which the Backgroundworker executes without checking the CancellationPending property ...Show All

  • Software Development for Windows Vista Close, Minimize and Maximize buttons

    Hi, I have a strange but not so strange request. Why the close, minimize and maximize buttons on the caption are all together on the right side Sometime I close a window while I was wanting to minimize it. Wouldn't it be a nice idea to put the minimize and maximize buttons on the left corner and leave the close one on the right I know that this would have a deep impact on Windows but: this solution is more ergonomic Vista has a new user experience so it's the right moment to do this change What do you think Thanks Diego ...Show All

  • Microsoft ISV Community Center Forums Passing Function As Argument

    I dunno if it's possible, but I'd like to pass a function name as an argument to a function. The idea is to use the result of the function to do some calculations, no matter what the function is. It would be like this: Function Find_Zeros( Function_Name As Function, Value_X As Double, etc) Thanks in advance. You can do it like this as VBA does not allow for pointers to functions. I did not know what the values of Left and Right should be. With both at zero the function runs out of stack. Sub Test() MsgBox Find_Zero("Function1", Left, Right) MsgBox Find_Zero("Function2", Left, Right) End Sub Function Function1(Value) As Double Function1 = Value - 10 End Function Funct ...Show All

  • Visual C# Is there such a thing as a multidimensional Arraylist or List? If so. Syntax?

    Hi! I'm new to C# (and programming for that matter), so this might be a really dumb question. I want to create a multidimensional array where each item is an arraylist. I have a bunch of data, that fits different criteria, and I want to be able to store these in different rows of a multidimensional array. New data, for each criteria, is being generated, so I need the arrays to be able to resize. What I would like to be able to do is something along the lines of this: List<double>[,] myData = new List<double>[2,2]; Meaning a 2x2 array, containing in each element a List<double>. And then I should be able to add data by a statement like: myData[0,0].Add(moreData); And retrieve data by: myData[0,0][someI ...Show All

  • Smart Device Development Running a device APP on the PC thru Pocket PC 2003 SE Emulator

    The code below runs fine thru a windows APP., but does not run thru the pocket pc 2003 se emulator. Is there something wrong in the My.Computer ... portion of the code Please help. Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim file As System.IO.StreamWriter Dim Record As String = CStr (TextBox1.Text) Dim procID As Integer file = My .Computer.FileSystem.OpenTextFileWriter( "C:\HSP1.text" , True ) file.WriteLine(Record) ' Run batch file. procID = Shell( "C:\HSP1.bat" ) ' The preceding path is for Windows XP. ' The Windows 2000 path is C:\HSP1.bat. End Sub ...Show All

  • Visual C# how turn on OPENMP in VS2005?

    Hi. please tell me where in VS2005 compile options i want turn on _openmp but i cant find where :( sory for stupid question C# can do threading....if you mean running a process on another thread (So doing a task on another thread without effecting the main UI thread from say not responding) System.Threading would be the namespace for threading http://msdn2.microsoft.com/en-us/library/system.threading.thread.aspx http://msdn2.microsoft.com/en-us/library/6kac2kdh.aspx maybe this would be of some interest to you: http://www.c-sharpcorner.com/UploadFile/mgold/MultithreadingIntro10062005000439AM/MultithreadingIntro.aspx ArticleID=920ecafc-e83b-4a9c-a64d-0b39ad885705 http://www.csharp ...Show All

  • Visual Studio Team System CPT6 Request:Object Checkbox(Select All/De-Select All)

    Maybe I missed something, but can you folks add a "Select All / De-Select All) feature for objects returned from the DB compare function It's not efficient to manually walk through 100+ summary lines and choose include/don't include object changes. It would be faster to select "don't include" globally and then manually select the items I actually wanted. Also, if you really want to be fancy, it would be nice to be able to choose database items by object type. After comparing two database and looking to use the auto script builder, I was shocked to learn I had to "step-thru" each database object and choose yea or nay to include it in my alter script. Again, maybe I missed something ... ...Show All

  • SQL Server Web parts for Report Explorer

    I understand that a report explorer in Sharepoint can be used to show the lists of available reports from the report server. However how do I restrict a particular account the categories of reports he can only view..from sharepoint configurations and not from report server..thanks. Regards Alu but is it possible to leave the settings in RS alone while configuring only the restrictions in SPS ..the reason being that I am trying to center the 'functionalites' around SPS and RS is just a collaboration to it thus more control from SPS instead of RS... Thanks. Regards Alu ...Show All

  • Visual Studio Team System Continuous Integration - TeamProjectName problem

    I'm trying to set up continuous integration according to the microsoft documentation using their sample code. I'm getting this error in the CILogger.txt Error: ProjectPortfolio: ProductionSystem does not exist in Web.Config Here is the line in my web.config: <add key="1" value="TeamServer=http://TFSNAME:8080;TeamProjectName=ProductionSystem;BuildType=BuildTest1"/> I get the error regardless of what I write in the "TeamProjectName" field. Any help would be greatly appreciated I misread the documentation and set up the CI on the build server instead of the foundation server. It seems to be working now. Thanks ...Show All

  • SharePoint Products and Technologies Unable to map a Crawled DateTime field to a Managed DateTime field

    Problem Unable to map a Date Time field crawled from a BDC source to a managed property. Scenario: Using BDC to map ther Adventure Works database. 1) Defining the fields from the HumanResources.Employee table 2) Crawling the content results in new crawled properties existing in search (specifically looking at HireDate) 3) HireDate mapped as below < TypeDescriptor TypeName = " System.DateTime " Name = " HireDate " /> This gives the details: Property Name: AdventureWorksInstance.HumanResources.Employee.HireDate Category: Business Data Property Set ID: 2edeba9a-0fa8-4020-8a8b-30c3cdf34ccd Variant Type: 7 Data Type: Date and Time Multi-valued: No ...Show All

©2008 Software Development Network