Quantcast
Channel: Visual Studio General Questions forum
Viewing all 21115 articles
Browse latest View live

Renaming the binding and the property?: C#

$
0
0

How can I rename a property: eg,

        private string _Material;

        public string Material
        {
            get { return _Material; }
            set
            {
                _Material = value;
                NotifyPropertyChanged();
            }
        }

And it would rename its binding in xaml: eg,

<TextBox Grid.Row="4" Grid.Column="1" Grid.ColumnSpan="2" Text="{Binding Path=Material}" TextChanged="materialTB_TextChanged"  />

Lets say from Material to Mat. 


After installing update 4 for Visual Studio 2013, Entity Data Model Designer won't open

$
0
0

I have updated my Visual Studio 2013 installation to Update 4. Ever since, when I click on an EDMX file, it loads as straight XML in a text editor. I have to keep going back to my old PC, which has update 2, to modify my data model.

I have looked through the forums, and found a few suggestions, mostly involving "resetting the options". None of them worked. This is really becoming a problem. Anyone have any ideas?

Thanks in advance,

Geoff Callaghan


Geoff Callaghan

FBX Model import in WPF C#

$
0
0

Hi

Does anyone guide me how can I import .fbx 3d model into WPF C# using visual studio 2012

Thanks

How to set the printdocument tool text, for print by the thermal printer?

$
0
0
Hello, is that be the same as the A4 paper printer?. I used for-loop-condition for print series of the pages, but the A4 printer printed for me 1 page only, but I asked it, for print more than 50 papers, by the thermal printer, by I used for-loop within the printdocument tool text, but I not the now tested it by the thermal printer, is that the for-loop succeed when I use it by the thermal printer? where the A4 printer printed 1 paper only for me. where I want series of the pages where I used for-loop-condition, and I want that succeed by the thermal printer, and is that be true? and what the true if that was wrong?

I want a dropdown in asp.net that on Click shows two Column data but after selecting dropdown value it should show only one data in drop down box

$
0
0

Hi There, I have a drop down box which on clicking the drop down  shows ID and NAME with proper spaces between them But As I select the Drop Down value it should show only ID in the Drop Down Box.

My Steps:-

1.

 BindDDL_ID_NAME()

{
using(SqlConnection cn=new SqlConnection(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString))
{
using( SqlCommand cmd=new SqlCommand("Select ID, ID+''+NAME AS NAME FROM TABLE1",cn))
{Sql DataSet ds=new DataSet();
SqlDataAdapter da=new SqlDataAdapter(cmd);
da.Fill(ds,"TABLE1");
ddlID.DataSource=ds.Tables[0];
ddlID.DataTextField="NAME";
ddlID.DataValueField="ID";
ddlID.DataBind();
ddlID.Items.Insert(0,new ListItem("Please Select ",0));
}

}
}
protected void ddlID_OnSelectedIndexChanged()
{
string id=ddlID.SelectedValue.ToString();
using(SqlConnection cn=new SqlConnection(ConfigurationManager.ConnectionStrings["conStr"].ConnectionString))
{
using( SqlCommand cmd=new SqlCommand("Select ID FROM TABLE1 where ID="+id,cn))
{Sql DataSet ds=new DataSet();
SqlDataAdapter da=new SqlDataAdapter(cmd);
da.Fill(ds,"TABLE1");
ddlID.DataSource=ds.Tables[0];
ddlID.DataTextField="ID";
ddlID.DataValueField="ID";
ddlID.DataBind();
}

}
}

But When I use this code it selects ID in the DropDown Box but After selection it does not Bind all the previous Values(ID, NAME) in the Drop Down Box.

Kindly help me to resolve this issue

VS 2013 and "smart devices projects" win CE y Win Movile 6.5

$
0
0

Hello

I got 2 apps for Windows CE and Windows Movile 6.5 in VS2005 and VS2008 I need to move it up to Visual Studio 2013. I've try but without sucsess.

Is itpossible todevelopforWindowsMobileandWindowsCEfromvisualStudio2013? Do you have any clue ? link ? video?

thanks in advance


Salu2 Sergio T

trying to register MS Visual Studio Express 2013 for Windows Desktop (Update 4)

$
0
0

When I installed the free version I was not asked to register. I have tried now for several days, but always get an error message.

First I get a pop-up that asks me to sign in to Visual Studio or update the license (which now will expire in 23 days).

No matter what I choose, I get a pop-up that says "getting things ready... " or something to that effect.

Which is followed by "Sorry, we ran into a problem. The online service is not available. Please try again later. " I now have tried for several days. This window also provides a link "See our current service status"  which so far has not yielded any activity that I could see.

How can I register the product and keep alive through the C++ class I am currently taking?

Thanks.

2013 ASP .NET Development Server - Long Running Script

$
0
0

Visual Studio Professional 2013 & Internet Explorer 10

When debugging a web project my pages load, but do not respond for 10++ seconds (clicking on the page results in a "not responding due to a long running script" message.

NOT happening with Visual Studio 2012.

Suggestions?


-Duke


Setup Project

$
0
0

Hello,

is there a way to set context of a given user (not the one that is logged on) to the User's Application Data Folder and User's Desktop? I need to prepare installation to be run by Administrator who is logged on (as Administrator) to some client machine and has to install application for some user on this machine. 

Thank you very much,

Vladimir


Vladimir Belitski

Downgrade to Visual Studio Professional 2013 Update 3 from Visual Studio Professional 2013 Update 4

$
0
0
Due to compatibility issues with some of my project files, I need to downgrade to Visual Studio Professional 2013 Update 3 from Visual Studio Professional 2013 Update 4. What is the best way to do this without uninstalling and re-installing everything from the scratch?

Visual Studio 2012 startup problems

$
0
0

Hi,

I've had Visual Studio 2012 (including SSDT and SSDT-BI) installed on my machine for a while. Recently, it's startup is very sluggish. When I start Visual Studio, on the splash screen, I hear two "dings" as if a popup shows, but no windows are there. Most of the time, the VS window is blank until I press Ctrl+Alt+Delete, and then it shows window contents and operates normally. On some launches the symptoms are a little different.

When I start VS 2012 in safe mode, there are no issues.

VS 2012 is at Update 4.

I recently installed ApexSQL Complete, but since uninstalled it from VS (kept it in SSMS). I also recently upgraded to VMware Workstation 11, but disabled its add-in from loading at startup.

The same system has VS 2013 installed without issues.

Thanks for any ideas on how to solve this,

SA.

When will Simulator run on Windows 10 Technical Preview

$
0
0

Hello

I recently installed Windows 10 Technical Preview. I was surprised when I run Simulator in Visual Studio 2015 and it didn't lunch because of system is not supported.
I would like to know if I'm doing something wrong or Windows 10 doesn't have support still.

Best regards.

Web Service Development

$
0
0
I am trying to create a web service in visual studios 2010. I have followed the directions from the Microsoft web site, but my service does not display correctly. Please help

VS2013 crashing randomly

$
0
0

Hi!

I'm working on an ASP.NET MVC Project in VS2013 Premium Update 4 and it keeps crashing randomly. Sometimes it just shuts down, but most of the time it restarts. It's a fresh install and other people at my Company are experiencing the same issues.

EDIT: I've tried to open a support ticket but I can't see my product key since I activated VS2013 through my MSDN subscription. Is there another way to contact customer support, besides calling?

Here's some info I could gather from the Event Viewer (sorry, but it's in german. I'll try to translate it if needed):

28.01.2015 10:34:11 Application Error

Protokollname: Application
Quelle:        Application Error
Datum:         28.01.2015 10:34:11
Ereignis-ID:   1000
Aufgabenkategorie:(100)
Ebene:         Fehler
Schlüsselwörter:Klassisch
Benutzer:      Nicht zutreffend
Computer:      ***
Beschreibung:
Name der fehlerhaften Anwendung: devenv.exe, Version: 12.0.31101.0, Zeitstempel: 0x54548724
Name des fehlerhaften Moduls: KERNELBASE.dll, Version: 6.1.7601.18409, Zeitstempel: 0x531599f6
Ausnahmecode: 0xe06d7363
Fehleroffset: 0x0000812f
ID des fehlerhaften Prozesses: 0x1064
Startzeit der fehlerhaften Anwendung: 0x01d03ad68cb4298b
Pfad der fehlerhaften Anwendung: C:\Program Files\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe
Pfad des fehlerhaften Moduls: C:\Windows\system32\KERNELBASE.dll
Berichtskennung: d0351dba-a6d0-11e4-b6ef-7824af45147a

27.01.2015 15:39:23 Application Error

Protokollname: Application
Quelle:        Application Error
Datum:         27.01.2015 15:39:23
Ereignis-ID:   1000
Aufgabenkategorie:(100)
Ebene:         Fehler
Schlüsselwörter:Klassisch
Benutzer:      Nicht zutreffend
Computer:      ***
Beschreibung:
Name der fehlerhaften Anwendung: devenv.exe, Version: 12.0.31101.0, Zeitstempel: 0x54548724
Name des fehlerhaften Moduls: cscompee.dll, Version: 12.0.30723.0, Zeitstempel: 0x53cf6f48
Ausnahmecode: 0xc0000005
Fehleroffset: 0x0004b85a
ID des fehlerhaften Prozesses: 0x6e0
Startzeit der fehlerhaften Anwendung: 0x01d03a3e75fa3641
Pfad der fehlerhaften Anwendung: C:\Program Files\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe
Pfad des fehlerhaften Moduls: C:\Program Files\Microsoft Visual Studio 12.0\Common7\Packages\Debugger\cscompee.dll
Berichtskennung: 489909d3-a632-11e4-8cce-7824af45147a

27.01.2015 15:39:22 .NET Runtime System.AccessViolationException

Protokollname: Application
Quelle:        .NET Runtime
Datum:         27.01.2015 15:39:22
Ereignis-ID:   1026
Aufgabenkategorie:Keine
Ebene:         Fehler
Schlüsselwörter:Klassisch
Benutzer:      Nicht zutreffend
Computer:      ***
Beschreibung:
Anwendung: devenv.exe
Frameworkversion: v4.0.30319
Beschreibung: Der Prozess wurde aufgrund eines Ausnahmefehlers beendet.
Ausnahmeinformationen: System.AccessViolationException
Stapel:
   bei Microsoft.VisualStudio.Debugger.InteropEE.IDebugExpressionEvaluator2.GetMethodProperty(Microsoft.VisualStudio.Debugger.InteropEE.IDebugSymbolProvider, Microsoft.VisualStudio.Debugger.InteropEE.IDebugAddress, Microsoft.VisualStudio.Debugger.InteropEE.IDebugBinder, Int32, Microsoft.VisualStudio.Debugger.Interop.IDebugProperty2 ByRef)
   bei Microsoft.VisualStudio.VIL.VisualStudioHost.FakeExpressionEvaluator2.GetMethodProperty120(Microsoft.VisualStudio.Debugger.InteropEE.IDebugSymbolProvider, Microsoft.VisualStudio.Debugger.InteropEE.IDebugAddress, Microsoft.VisualStudio.Debugger.InteropEE.IDebugBinder, Int32, UInt32, Microsoft.VisualStudio.Debugger.Interop.IDebugProperty2 ByRef)
   bei VSDebugEngine.ShimManagedEE.EntryPoint.GetMethodName(Microsoft.VisualStudio.Debugger.InteropEE.IDebugExpressionEvaluator, VSDebugEngine.ShimManagedEE.SymbolProvider, VSDebugEngine.ShimManagedEE.CDebugAddress, VSDebugEngine.ShimManagedEE.Binder, Microsoft.VisualStudio.Debugger.Evaluation.DkmVariableInfoFlags, Microsoft.VisualStudio.Debugger.Evaluation.DkmEvaluationFlags, UInt32, UInt32)
   bei VSDebugEngine.ShimManagedEE.EntryPoint.Microsoft.VisualStudio.Debugger.ComponentInterfaces.IDkmLanguageInstructionDecoder.GetMethodName(Microsoft.VisualStudio.Debugger.Evaluation.DkmLanguageInstructionAddress, Microsoft.VisualStudio.Debugger.Evaluation.DkmVariableInfoFlags)
   bei Microsoft.VisualStudio.Debugger.EntryPoint.IDkmLanguageInstructionDecoder_GetMethodName(IntPtr, IntPtr, Microsoft.VisualStudio.Debugger.Evaluation.DkmVariableInfoFlags, IntPtr ByRef)

27.01.2015 15:08:35 Application Error

Protokollname: Application
Quelle:        Application Error
Datum:         27.01.2015 15:08:35
Ereignis-ID:   1000
Aufgabenkategorie:(100)
Ebene:         Fehler
Schlüsselwörter:Klassisch
Benutzer:      Nicht zutreffend
Computer:      ***
Beschreibung:
Name der fehlerhaften Anwendung: devenv.exe, Version: 12.0.31101.0, Zeitstempel: 0x54548724
Name des fehlerhaften Moduls: KERNELBASE.dll, Version: 6.1.7601.18409, Zeitstempel: 0x531599f6
Ausnahmecode: 0xe0434352
Fehleroffset: 0x0000812f
ID des fehlerhaften Prozesses: 0x1f9c
Startzeit der fehlerhaften Anwendung: 0x01d03a355c2a1866
Pfad der fehlerhaften Anwendung: C:\Program Files\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe
Pfad des fehlerhaften Moduls: C:\Windows\system32\KERNELBASE.dll
Berichtskennung: fb153b0f-a62d-11e4-8cce-7824af45147a

27.01.2015 15:08:34 .NET Runtime System.OutOfMemoryException

Protokollname: Application
Quelle:        .NET Runtime
Datum:         27.01.2015 15:08:34
Ereignis-ID:   1026
Aufgabenkategorie:Keine
Ebene:         Fehler
Schlüsselwörter:Klassisch
Benutzer:      Nicht zutreffend
Computer:      ***
Beschreibung:
Application: devenv.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.OutOfMemoryException
Stack:
   at System.Windows.Media.Composition.DUCE+Channel.SyncFlush()
   at System.Windows.Interop.HwndTarget.UpdateWindowSettings(Boolean, System.Nullable`1<ChannelSet>)
   at System.Windows.Interop.HwndTarget.UpdateWindowPos(IntPtr)
   at System.Windows.Interop.HwndTarget.HandleMessage(MS.Internal.Interop.WindowMessage, IntPtr, IntPtr)
   at System.Windows.Interop.HwndSource.HwndTargetFilterMessage(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
   at MS.Win32.HwndWrapper.WndProc(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
   at MS.Win32.HwndSubclass.DispatcherCallbackOperation(System.Object)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
   at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(System.Windows.Threading.DispatcherPriority, System.TimeSpan, System.Delegate, System.Object, Int32)
   at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr, Int32, IntPtr, IntPtr)
   at MS.Win32.UnsafeNativeMethods.SetWindowPos(System.Runtime.InteropServices.HandleRef, System.Runtime.InteropServices.HandleRef, Int32, Int32, Int32, Int32, Int32)
   at System.Windows.Interop.HwndSource.Resize(System.Windows.Size)
   at System.Windows.Interop.HwndSource.OnLayoutUpdated(System.Object, System.EventArgs)
   at System.Windows.ContextLayoutManager.fireLayoutUpdateEvent()
   at System.Windows.ContextLayoutManager.UpdateLayout()
   at System.Windows.UIElement.UpdateLayout()
   at System.Windows.Interop.HwndSource.SetLayoutSize()
   at System.Windows.Interop.HwndSource.set_RootVisualInternal(System.Windows.Media.Visual)
   at System.Windows.Interop.HwndSource.set_RootVisual(System.Windows.Media.Visual)
   at System.Windows.Controls.Primitives.Popup.SetRootVisualToPopupRoot()
   at System.Windows.Controls.Primitives.Popup.CreateWindow(Boolean)
   at System.Windows.Controls.Primitives.Popup.OnIsOpenChanged(System.Windows.DependencyObject, System.Windows.DependencyPropertyChangedEventArgs)
   at System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
   at System.Windows.FrameworkElement.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
   at System.Windows.DependencyObject.NotifyPropertyChange(System.Windows.DependencyPropertyChangedEventArgs)
   at System.Windows.DependencyObject.UpdateEffectiveValue(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata, System.Windows.EffectiveValueEntry, System.Windows.EffectiveValueEntry ByRef, Boolean, Boolean, System.Windows.OperationType)
   at System.Windows.DependencyObject.SetValueCommon(System.Windows.DependencyProperty, System.Object, System.Windows.PropertyMetadata, Boolean, Boolean, System.Windows.OperationType, Boolean)
   at System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty, System.Object)
   at System.Windows.Data.BindingOperations.SetBinding(System.Windows.DependencyObject, System.Windows.DependencyProperty, System.Windows.Data.BindingBase)
   at System.Windows.Controls.Primitives.Popup.CreateRootPopup(System.Windows.Controls.Primitives.Popup, System.Windows.UIElement)
   at System.Windows.Controls.ToolTip.HookupParentPopup()
   at System.Windows.Controls.ToolTip.OnIsOpenChanged(System.Windows.DependencyObject, System.Windows.DependencyPropertyChangedEventArgs)
   at System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
   at System.Windows.FrameworkElement.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
   at System.Windows.DependencyObject.NotifyPropertyChange(System.Windows.DependencyPropertyChangedEventArgs)
   at System.Windows.DependencyObject.UpdateEffectiveValue(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata, System.Windows.EffectiveValueEntry, System.Windows.EffectiveValueEntry ByRef, Boolean, Boolean, System.Windows.OperationType)
   at System.Windows.DependencyObject.SetValueCommon(System.Windows.DependencyProperty, System.Object, System.Windows.PropertyMetadata, Boolean, Boolean, System.Windows.OperationType, Boolean)
   at System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty, Boolean)
   at System.Windows.Controls.PopupControlService.RaiseToolTipOpeningEvent()
   at System.Windows.Controls.PopupControlService.OnRaiseToolTipOpeningEvent(System.Object, System.EventArgs)
   at System.Windows.Threading.DispatcherTimer.FireTick(System.Object)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
   at System.Windows.Threading.DispatcherOperation.InvokeImpl()
   at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(System.Object)
   at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
   at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
   at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
   at System.Windows.Threading.DispatcherOperation.Invoke()
   at System.Windows.Threading.Dispatcher.ProcessQueue()
   at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
   at MS.Win32.HwndWrapper.WndProc(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
   at MS.Win32.HwndSubclass.DispatcherCallbackOperation(System.Object)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
   at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(System.Windows.Threading.DispatcherPriority, System.TimeSpan, System.Delegate, System.Object, Int32)
   at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr, Int32, IntPtr, IntPtr)

27.01.2015 14:20:45 .NET Runtime System.OutOfMemoryException

Protokollname: Application
Quelle:        .NET Runtime
Datum:         27.01.2015 14:20:45
Ereignis-ID:   1026
Aufgabenkategorie:Keine
Ebene:         Fehler
Schlüsselwörter:Klassisch
Benutzer:      Nicht zutreffend
Computer:      ***
Beschreibung:
Anwendung: devenv.exe
Frameworkversion: v4.0.30319
Beschreibung: Der Prozess wurde aufgrund eines Ausnahmefehlers beendet.
Ausnahmeinformationen: System.OutOfMemoryException
Stapel:
   bei Microsoft.VisualStudio.Debugger.EntryPoint.IDkmScriptDocumentTreeNodeUnloadNotification_OnScriptDocumentTreeNodeUnload(IntPtr, IntPtr, IntPtr)

27.01.2015 14:17:35 Application Error

Protokollname: Application
Quelle:        Application Error
Datum:         27.01.2015 14:17:35
Ereignis-ID:   1000
Aufgabenkategorie:(100)
Ebene:         Fehler
Schlüsselwörter:Klassisch
Benutzer:      Nicht zutreffend
Computer:      ***
Beschreibung:
Name der fehlerhaften Anwendung: devenv.exe, Version: 12.0.31101.0, Zeitstempel: 0x54548724
Name des fehlerhaften Moduls: KERNELBASE.dll, Version: 6.1.7601.18409, Zeitstempel: 0x531599f6
Ausnahmecode: 0xe0434352
Fehleroffset: 0x0000812f
ID des fehlerhaften Prozesses: 0x1d48
Startzeit der fehlerhaften Anwendung: 0x01d03a332b0ea0a8
Pfad der fehlerhaften Anwendung: C:\Program Files\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe
Pfad des fehlerhaften Moduls: C:\Windows\system32\KERNELBASE.dll
Berichtskennung: db2d4647-a626-11e4-8cce-7824af45147a

27.01.2015 11:57:56 Application Hang

Protokollname: Application
Quelle:        Application Hang
Datum:         27.01.2015 11:57:56
Ereignis-ID:   1002
Aufgabenkategorie:(101)
Ebene:         Fehler
Schlüsselwörter:Klassisch
Benutzer:      Nicht zutreffend
Computer:      ***
Beschreibung:
Programm devenv.exe, Version 12.0.31101.0 kann nicht mehr unter Windows ausgeführt werden und wurde beendet. Überprüfen Sie den Problemverlauf in der Wartungscenter-Systemsteuerung, um nach weiteren Informationen zum Problem zu suchen.
 Prozess-ID: 354
 Startzeit: 01d03a1e74664b36
 Endzeit: 31
 Anwendungspfad: C:\Program Files\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe
 Berichts-ID: 55da2e66-a613-11e4-8cce-7824af45147a

Any idea what to do about it?

Thanks for your Feedback!

VS2013 Update 4: Refactor Encapsualte Field fails

$
0
0

When I use VS 2013 Update 4 Refactor-Encapsulate Field fials with the message "Failed to create preview changes"

Here is the Preview Window screenshot.

Note the title "Encapsulate unitOfMeasure as UnitOfMeasure"

BUT the code preview is to change the NAME of the field to UnitOfMeasure  (upper case first letter)


Upgrade from Win 32 to X64 Configuration- HashTrailingSlash error.

$
0
0

Hi,

We upgrading from VS2008 to VS2013.  In our product we have 3 solution(.sln) files (for server, rep and client).

Server and rep migrated successfully to VS2013 with .vcxproj and filters files created

In client solution file we have some win32 configuartion projects and we successfully converted them into x64 configuration and .vcxproj files updates successfully.

I did checked in all .vcxproj, filters and .sln files into version control tool.

In another window machine which has build environment I did synced all the files and successfully build server and rep using respective .sln files.

But in client solution file many projects fails loading with the below error

Reloading the projects fails with below error

Upon looking at MS support site and other sites which suggests not to have semicolon(;)in the path provided. But the other 2 solution files builds successfully with the same environment (paths) set.  We did tried building whole client solution, it’s failing with following error

Does anyone has the solution for this problem?

Appreciate your response.

-ThanksMahesh

IIS Express Issue?

$
0
0

I am working in a visual studio premium 2013 solution that has a web project and class library. The web project is called UI and the class library project is called AppService. We are using ServiceStack and AngularJS. The UI project is calling the AppService project via AngularJS controller. The class library is a pass through which calls APIs for data.

The web project was created as an empty web project that another team member created. Items were added as needed. It is set up to use IIS Express. The web project is defined to use port 30000 so that the URL is http://localhost:30000/. When I try running the application using port 30000 I am not getting data back; heck, when I am in debug mode I am not stepping into the AppService project. I am the only person on the team experiencing this problem. There are four other developers on the team.

In the UI project we have a Global.asax file. In the Application_Start property we are setting a new instance of the AppServiceAppHost object. We are able to step into this method when debugging.

The crux of the problem is that when I change the port number to something other than 30000 (e.g. 30001, 30002) everything works. We are getting data; we step into the AppService project when debugging.

When I am using port 30000, I am seeing in the IIS express logs the error "Object reference not set to an instance of an object" with the stack trace pointing to ServiceStack.HttpHandlerFactory..ctor().

Technical Specifications

$
0
0

Hello!

I have to develop management information system to regard the education society for my research plan. Professor asked me the technical specifications in details. Can I develop my system with Visual Studio 2010 Express edition - free version? The work flow of my system is going to save student records from schools (start from ten primary schools, one township , average students number 15000), responsible users can retrieve at any time they need, produce reports. The main purpose is to produce annual analysis report for the students who can continue to attend the school and who cannot including their parent finance, our Government can view this report and provide necessary help (by working together with international organisation) to these students to continue their education. I am now working at private company and my company used VS 2010 ultimate full version with license. But my university could't provide this edition and also server. So how can I continue to develop my system with VS IDE or do I need to change to open source system drupal, joomal or something like that? But I would like to develop my system on .Net framework and with C# language because I have studied computer studies and developed my projects with this IDE, also working with C# at current company.

Kindly provide the way to solve for this. Apologize if there is any mistake in my question.

Thanks you very much. Have a nice day to everyone.

Best Regards


Shwe Nann Thu

VS 2013, DB project how to run post deployment script?

$
0
0
 

Hi,

In VS 2010 in the DB project I can run pre and post deployment scripts. Both are included in the project by default.

In 2013 there's no such thing. What's the suggested alternative?

Thanks


SSIS question

cummunity 2013

$
0
0

Hi, I have installed the free cummunity 2013 on my laptop. Can I also install a second free copy on my desktop? And if I can do this then what should I uninstall of Visual Studio Express 2012?

Viewing all 21115 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>