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

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

mosaic

Member List

Pad
c-sharper2005
james_cline_
prashanthkumarhv
LabMan
My Vizai
Thams
Minherz
egomine
AbhijeetRaje
ST W
nice_boy_super
cygnusx
kangalert
Uturn
varunsagii
Bill Reiss
boston_sql92
AtomZ .be
tpiazza
Only Title

mosaic's Q&A profile

  • Software Development for Windows Vista Existing .NET 1.1 framework applications crash on Vista RC2 not on RC1

    Our existing product will no longer start on Vista RC2. I've seen some posts outside of MSDN that other apps are having the same problem. Has anyone else had this issue or know of a solution The error is: "Unable to find aversion of the runtime to run this application." Of course as soon as I posted this I found the real problem. It turns out our obfuscator (xenocode) was causing RC2 to give the above error. Luckily they had a fix for the problem posted on 10/22. ...Show All

  • Visual Studio Team System Searches from source control

    We are having problems getting the Find and Replace to do searches from files on the server. The first time we try it, Team Explorer crashed and we are not able to get into the search again (All buttons at the bottom of the window are greyed out). We can only do "Find in Files" which searches files in local workspaces only. Is there a way to do searches from files on server Will server-side searches be available in future releases For now, what does the Quck Find do It does not seem to be doing anything since the "Look in:" text box is blank and does not allow input, and the buttons and check boxes are all greyed-out. ...Show All

  • SQL Server INSERT Not Working via Emulator SmartPhone WM 5.0

    It would be great to get some feedback on this, I've wasted nearly the whole day trying to figure it out. I've created a simple test database called test.sdf. It contains a few tables but no data. My plan is to populate the database programatically; however, the INSERT command does not seem to be working correctly. I can see that the data actually gets added to the database when I add it and iterate over it programatically (using SqlCeCommands), but after the program completes and I look at the Table in "Server Explorer" via VS 2005, the data is no longer there! Now note that the location of the sdf is in the Emulator's "shared folder." I have read from other posts ( http://forums.microsoft.com/MSDN/ShowPost.aspx ...Show All

  • Visual Studio 2008 (Pre-release) How to specify listboxitem style to listbox that is bound to XmlDataProvider

    I have a listbox that is bound to an XmlDataProvider. I have created a style for changing the background color of the listboxitem when it is selected. How can I apply this style All the examples I have seen have static listboxitem tags defined that have the style on them. <Style x:Key="ListBoxItemBackground" TargetType="{x:Type ListBoxItem}"> <Style.Triggers> <Trigger Property="ListBoxItem.IsMouseOver" Value="true"> <Setter Property = "Background" Value="Delete"/> </Trigger> </Style.Triggers> </Style> <ListBox Button.Click ="ListBox_Button_Click" Background="White" BorderT ...Show All

  • SQL Server Connection woos

    Just the other day I have not been able to connect to SQL Server 2005 Express Edition. NOTHING has changed. All I have noticed is that in the Surface Area Configurator the Local Connections only radio button it selected. So I try selecting the Remote radio button and Apply and Ok and then exit the Surface Area Configurator program and then come back in again and the Local Only is selected. Is this normal behavior Is Remote connections allowed or not How verify Thanks. My new and my old applications used to work remotely without problems. Both could connect using the server name or ip address. Now neither one works now, meaning they can't connect. Message is that the server doesn't exist. I can ...Show All

  • Visual Basic Error binding to target method

    This is a change-of-direction from my previous post ( http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1095934&SiteID=1 ). I didn't get an answer yet on that one, so I'm trying something different. For this code, assume myInstalledModules is a Dictionary(of string, string) that maps a module name key to the assembly path of that component. So I'm trying to eliminate dependencies in my main app, allowing different components to be installed during setup. So when I try to access types in the satellite assembly, I want to load those types dynamically. (See the following code) //Begin code// Dim a As [Assembly] = [Assembly].LoadFile(myInstalledModules( "Pathology" )) Dim types As New Dictionary( Of String , Type) ...Show All

  • Visual FoxPro "When" firing after "Valid"

    Hi all; I am temporarily using an older SPR in VFP 9 as it is. I have had some problems with the code, and after using the debugger I have learned that in a "Get, when, valid" command, the "When" fires AFTER the "Valid". Anyone had experienced a simillar probem Any ideas why Thanks, Aleniko I found the problem. There is no problem using @ gets in VFP code. It works fine. The reason I use it is because temporarily I need to use old code in VFP until we do conversion. The problem was caused by the way SPR files are generated in the OLD foxpro versions. In some cases the WHEN function had no 'return' at the end of the function. So, in FP the code ...Show All

  • Visual C++ MFC Document / View Dilemma

    I have a situation where it is not clear whether to use the document or the view. I think I must split the solution between the two, and MFC makes such things quite complicated. I am reading a file that has many record formats, and showing them in a CListView. I also need to show each record in a custom form when the record (row) is selected. I have about 50 record types and I am likely to have about 100 total. I have a base class and I derive a class for each type of record. Each class has a virtual function for reading each type. Those classes are in the document of course. MFC is designed such that the document does not call the view directly; we normally use UpdateAllViews instead. Each record type has a record type code th ...Show All

  • Visual Studio Team System Can't execute Team Build - TF30063 error

    Hi, I'm trying to execute a Build on my local machine, but I am getting the following error: TF42056: The build service could not connect to the Team Foundation Server: TF30063: You are not authorized to access http://buildServerName:8080/ I have Team Foundation for Testers installed on my machine. I know that I actually can access port 8080 on the build server because that's where our code lives, and I can access and modify the code. I'm really stuck as to how to get builds working. Can builds only be done on machines that have Team Foundation for Developers on it I hope not, because it wouldn't make any sense that a tester couldn't launch a build so they could run their tests. Any help would be greatly appreciated!! I am at a ...Show All

  • Microsoft ISV Community Center Forums Supplying variables for a stored procedure through a form

    Hello all, I have been racking my brain and the internet on this question for months now. I sure hope someone here can help me. I have a bound form where data from a help desk call can can be entered. I have a button on the form in case work order needs to be created. The button executes the stored procedure below, which is supposed to insert a record into the tblWorkLog table based on the current entry in the Work Order form (the user just entered). My problem is this, how do I pass the data in the forms!WorkOrder!JobID control to the stored procedure, which is called using the "DoCmd.OpenStoredProcedure" subroutine. The DoCmd event will not allow variables to be listed after the procedure name. In a nutshell, How do y ...Show All

  • Visual C# Interop.SQLDMO.dll Problem

    hi everybody, i am working on register sqldmo dll but not registered on 2003 server. error= C:\Document and Settings\Administrator\......\Interop.SQLDMO.dl was loaded,but the DllRegisterServer entry point was not found. This file can not be registered. What can i do thx 0x80040154 = Class not registered. Your server doesn't have SQL DMO installed. I'm not quite sure how you get it, try installing the SQL server client. Post at one of the SQL server forums to get a better answer. ...Show All

  • SQL Server Users Folders

    Hi, I am wanting to manage my users folders. Now, I can see them, but I cannot see their "My Reports" folders. Also, if I publish a report to their "user" folder, they cannot see it. What am I missing with permissions Thanks! Users folders is part of the my reports feature: /Users Folders/<user name>/My reports put content in the user's my reports folder and they should be able to see the content. Users do not have access to their folder /Users Folders/<user name> by default. If you login as a local administrator on the reports server computer you can set the permissions. You can grant any of the existing roles or define your own. To navigate to the < ...Show All

  • Windows Forms How can I handle in the child class an event raised in the parent class?

    Hi all I am creating a class that inherits from System.Windos.Forms.Form for implementing some custom things that I want to happen for each form used later in my app. I am overriding the OnClose event of the form for the following reason: I want so recursively search each control on the form and if the control is a Component One TrueDBGrid then I call the UpdateData() function on it. When calling UpdateData() on a TrueDBGrid an event called AfterUpdate() of the TrueDBGrid is raised. The problem that I encounter is that the event is not raised if I handle the event in the child class, the class that inherits from my customized form. So, the UpdateData() is called in my custom class ...Show All

  • Windows Live Developer Forums Unable to login to Windows Messenger 8

    Have been running Windows Messenger for years.....am now on version 8. Then last week .....it suddenly stopped signing me in. It has not given me a failed login message, it simply leaves the green and blue bodies spinning for hours on end. I can still access hotmail from internet explorer. The service report says it is running and stable. Any ideas Yes...can someone please explain what this problem is and how to fix it. I have been having this problem for a week now and its driving me insane. ...Show All

  • Visual C++ DLL without CRT

    Is it possible to create a dll without it's copy of the CRT, so that it would use one from the context of the calling process well, the thing is that i am creating projects with CRT statically linked, and i DO want to create a dll without it's own copy of the CTR. that was my question. I already had problems with freeing the memory i have allocated in a dll. I have solved them by rewriting an allocator for vector and map.But now i am thinking of this another possibility. As long as the dll's code is executed in the context of calling thread, i thought it could be possible to use the caller's copy of the CRT.. ...Show All

©2008 Software Development Network