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

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

chaza

Member List

sedanwer
BarataMota
Mirricle
JeremyAtGosub
Faraz_Ahmed
Jamie Thomson
brother14th
Alexannic
EileenWin
bw12117
BPomidor
JD Li
FC-Shiro
Ska Software
Sean Chambers
babakf
Nick K.
Sanjaya Yapa
DQM
Araki66
Only Title

chaza's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Solved: Using a Quaternion and Vector to construct a camera view matrix

    I am trying to create a camera class that uses a quaternion (orientation) and a vector (position).  When I set the view matrix, I am not using Matrix.LookAtLH.  Everything works pretty well, except that I cannot get the camera to rotate on its own axis (i.e. at its current position).  It always rotates around the origin.  My test app has a textured sphere and when I rotate, it is always at the center of the screen.  I did some extensive searching through these forums and saw the problem mentioned several times with no real solution, I also searched the web for roughly 2 hours looking for code that either does this, or builds a left handed perspective matrix so I could compare my results with that.  This is my ...Show All

  • Visual Studio Error 1305.Error during 2005 installation

    Hello, During the installation of VS 2005, the following error appears: "Error 1305.Error reading from file C:\Program Files\Microsoft Visual Studio 8\VC\crt\src\_ctype.c. Verify that the file exists and that you can access it." Then I have the option to retry or cancel. Retry never works. Any help would be greatly appreciated. Thanks. could be a bad DVD/CD. Check this out: http://blogs.msdn.com/pgiffin/archive/2005/06/30/434438.aspx you *could* (but not guarenteed) try to create an ISO of the DVD using nero or something, then mount this to a virtual CD/DVD drive using say, Microsoft Virtual CD tool, and then start the installation from there and see what happens. ...Show All

  • Visual Studio Team System Check-out not getting latest (RTM)

    Hi all We have this occasional problem whereby checking out a file doesn't get the latest, subsequently resulting in us having to merge our changes due to the file being different on TFS. Any ideas This sounds like it could be a bug to me Thanks Kev (dunno how this got posted to the wrong thread) Get Latest on Checkout is unlikely to be in SP1. Here are the workarounds I know of: - use the MSSCCI provider: http://www.microsoft.com/downloads/details.aspx FamilyId=87E1FFBD-A484-4 C3A-8776-D560AB1E6198&displaylang=en - add a new Solution Explorer menu item: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=332541&SiteID=1 - us ...Show All

  • Visual Studio Team System How to modify email template sent via Project Alerts

    I want to be able to modify the email template that states that a build was successful or not that is sent via Project Alerts Specifically, I want to be able to add a link to a report that is run via the daily. Can I do this Where can I find the template and how do I modify it Thanks, Staffan My changes from before are present now. I made some more changes, but they havent taken affect yet. Do I have to bounce something When do the changes take affect   Also, Now I just need to figure out how make a link   Thanks, Staffan ...Show All

  • Visual Studio Does VS2005 Std Ed. Support Crystal Reports? Pls Help

    Hi, This may be a silly question.. but does visual studios 2005 standard edition support crystal reports I know that the professional edition comes with a crystal reports component that allows you to creat Crystal reportss within VS, and also allows you to click on the solution explorer and click add > component > .rpt.. But I just want to be able to display a crystal report i've created already within my application. most of the help online revolves around the professional versions crystal features so I've been having trouble getting my report to display. I heard express editions were forbidden from having crystal reports, so I was wondering if standard edition was the same ...Show All

  • Visual Studio 2008 (Pre-release) Mapping to the "varchar" field?

    What is the correct mapping to the database table with "varchar" field type The vNext wizard mapped it like this: <Property Name="GUID" Type="varchar" Nullable="false" MaxLength="60" /> Everything compiles fine, but at runtime it raises error, complaining that varchar and nvarchar are not compatible. If I modify mapping manually to look like this <Property Name="GUID" Type="nvarchar" Nullable="false" MaxLength="60" /> everything compiles and works OK, but then I do not understand where is the magic of converting unicode to non-unicode chars happens and what is the downside of this fix Alex Atul Adya - ...Show All

  • SQL Server Calendar Control issues

    Hi all, When I click on a calendar control for date parameters the page will freeze or throw a java script error. This does not happen all the time, and is not isolated to one PC. It happens randomly on several PCs. Is there any known issue with this control regards, Bill I am just hoping that some sort of hot fix is available soon. Like I said though, it does not work at all with IE7 so if MS is planning to release IE7 as a critical update like it is rumored, it will break all RS sites. ...Show All

  • Visual Basic VB.NET RTC application not seeing messaging events

    I have seen posts regarding this problem but as yet have not seen an answer. No VB.Net answer anyway. I have a VB.NET (VS2005) application which needs to provide both a conference session and an IM session. I have initialised RTC as follows : objClient = New RTCClient objClient.Initialize() Dim myFilter As Integer = RTCEF_CLIENT Or TCEF_SESSION_STATE_CHANGE Or _ RTCEF_MEDIA Or RTCEF_MESSAGING objClient.EventFilter = myFilter objRTCE = objClient objClient.ListenForIncomingSessions = RTC_LISTEN_MODE.RTCLM_BOTH Dim myMedia As Integer = RTCMT_AUDIO_SEND Or RTCMT_VIDEO_SEND Or _ RTCMT_AUDIO_RECEIVE Or RTCMT_VIDEO_RECEIVE objClient.SetPreferredMediaTypes(myMedia, True) ...Show All

  • Software Development for Windows Vista Cannot use EventDrivenActivity in a sequential workflow!

    Hi MSDN Documentation at the following link denotes that we can have EventDrivenActivity in a sequential workflow: http://msdn2.microsoft.com/en-us/library/ms734657.aspx It tried to use it in Sequential workflow and the IDE doesna€ t allow mw to drop an EventDrivenActivity in a sequential activity. Am I missing something Any help would be appreciated, Alan Alan, you can't directly add an EventDrivenActivity to a sequential workflow. You must first drop a ListenActivity onto the workflow, and then add the EventDrivenActivity to the ListenActivity. See this MSDN link for more info. Bruce Bukovics http://www.bukovics.com Pro WF: Windows Workflow in .NET 3.0 http://www.learnworkflow.com .NET 2 ...Show All

  • Visual J# Migrating JNI to P/Invoke

    Hi guys, I'm attempting to migrate a Java application to the .NET framework. This Java application uses some C++ code to provide functionality not present in either the Java framework library or the .NET framework. Java makes these calls via Java's JNI technology. For example: // The C++ code: JNIEXPORT jint JNICALL Java_xyzMedia_util_MyControl__1getSpectrumLength(JNIEnv *env, jclass jcl) { ... } // The Java code that calls the native method: native static int _getSpectrumLength(); How do I call this function using .NET's P/Invoke technology You can write JNI code in .NET and use you Java legacy. Get setup for MS VS at http://www.simtel.net/product.php[id]95126[SiteID]simtel.net There you will find examples: - call java clas ...Show All

  • Visual Studio Express Editions visual studio w32 application not working

    hi i've installed visual studio in my pc and then the sdk package but when i try to make a w32 application it says only console application help me please The express editions only provides console application for win32 dev. Nevertheless, you can still make suse of win32 non console application by setting your environment manually as described at http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/ Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual C# Communication between a windows form and a web application

    We are developing a game using VS 2005's windows application. We are facing some problems trying to pass data from a windows application to a web application through the SQL Server 2005. Is there any idea how can we commnuicate from a windows app to a web app ...Show All

  • Visual Basic Getting current selected index of a datagrid

    I have beed reading for a few hours and trying different things and got hung. I am trying to get the current selected index name in a datagrid what I have found so far throws an error of "not a member" below is a partial of my code Private Sub DataGridView1_CellClick( ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellDoubleClick Dim EDFRow As 102ADataSet.EDFRow Dim a As String Dim b As String Dim c As String Dim d As String d = DataGridView1. <<<<<here is where I am having problems EDFRow = 102ADataSet.EDF.FindByEName(d) a = EDFRow.EES1 b = EDFRow.EES2 c = EDFRow.EE ...Show All

  • SQL Server COALESCE with parameters

    I am trying to build a report table based on user supplied criteria at run time. The user may or may not enter criteria into one or more fields. I used the COLAESCE as follows (the temp vars may be passed valid data or left null by the user): select * from dbo . employee where LastName >= COALESCE ( @ln , lastname ) and LastName <= COALESCE ( @ln2 , lastname ) and FirstName >= COALESCE ( @fn , firstname ) and FirstName <= COALESCE ( @fn2 , firstname ) and hiredate >= COALESCE ( @hire , hiredate ) and hiredate <= COALESCE ( @hire2 , hiredate ) and checkdate >= COALESCE ( @chk , checkdate ) and checkdate <= COALESCE ( @chk2 , checkdate ) The problem comes when I want to return rows that ...Show All

  • Windows Forms An error occurred while validating. HRESULT = '80040155'

    Who can tell me what I should do to the error: Error 1 An error occurred while validating. HRESULT = '80040155' This error appears when I try to make a setup project with visual studio 2005 standard version. By Error help: There was a problem accessing a file or folder while building a deployment project. There are several situations that can cause file or folder access errors. When building, files are built in an output directory specified by the Output file name project property. Each time you build or rebuild, files are deleted and then re-created. If the deployment project references files outside of the project directory, those files should not be moved or deleted. To correct this error If the O ...Show All

©2008 Software Development Network