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

Software Development Network >> Behrooz PB's Q&A profile

Behrooz PB

Member List

PeteJM01
NathanCaaaaaaaan
David Todd Kaplan
Bill Brennan
Amadeum
Jay S
Iago
Fahad349
JeffBrown
Modeller
Phillip S.
Doug Urquhart-Mitchell
Bear S.
EnigMa_AnGeL
Chernomor
Jawad Naeem
GBC143
Raijan
anonyme
Abhayc
Only Title

Behrooz PB's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Fbx File Format ?

    is the fbx file format closed format or do microsoft provide doc on the file format in the xna framework link to article that i have read http://www.3d-test.com/interviews/collada_1.htm why i am asking that is that we can adopt our own mesh format to xna framework example: our mesh format onlye ned one matrix for doing mesh animations the is bone and joint in our mesh cunstructor but when you save the final format out to xml there is one set of vertex data and one set of faces data and the magic one matrix for bone and joint and animations of keyframe per frame so if you have a mesh animation that runs 700 frame total you have to store one set of vertex and faces and 700 deffecnt matrix in a array the ...Show All

  • Visual Studio 2008 (Pre-release) Background AddIn - Program not responding?

    Hi! For this code: using System; using System.Collections.Generic; using System.Text; using Microsoft.MediaCenter; using Microsoft.MediaCenter.Hosting; namespace addInMCE { public class Class1 : IAddInModule , IAddInEntryPoint { void IAddInEntryPoint .Launch( AddInHost host) { host.MediaCenterEnvironment.Dialog( "Boom" , "Bam" , DialogButtons .Ok, 10, true ); } void IAddInModule .Initialize( Dictionary < string , object > appInfo, Dictionary < string , object > entryPointInfo) { //throw new Exception("The method or operation is not implemented."); } void IAddInModule .Uninitialize() { //throw new Exception("The method or operation is not implemented." ...Show All

  • SQL Server Aggregate Count Zero or NULL - multiple measuregroups vs. single measuregroup

    Hi Quess this fact table (100.000 Records a Day) Dim1 | M1 | M2 ---------------- A | 1 |NULL B |NULL| 2 C |NULL|NULL D | 3 | 4 I create a cube on top with four measures - for each a LastNonEmtpy and a count measure the result is Dim1 | M1*| M2* *)=Count measure ---------------- A | 1 | 0 B | 0 | 2 C | 0 | 0 D | 3 | 4 Is there a way to get a null value instead of a zero value in SSAS2005 (Build 2153) I have already thought about create a measuregorup for each meausre with a view related which filters the null value rows - but I guess the cubesize will increate much if I have a measuregroup per fact measure, because the dimension information needs storage too - I guess I need the count measure for calculati ...Show All

  • Visual C# Datagrid-columns

    How do you assign a default value to a column on the Form_Load event. How do you get the selected value from a column with a combobox, and one with a tick box. Thanks ... Not really, the selected column contains a combobox or a tickbox- under which event and how would I find the value. How would one assign the column default value in the Form_Load event - I want it to work the same for all rows. ...Show All

  • SQL Server DB2 Write Image to Blob field

    I need some help in SSIS Package I am trying to write a byte array to an image (blob) in DB2 destination. I am getting SQL code -290 Invalid Description, if i set the output column to a byte stream. If I set the output column to an Image data type then I get a different error the package will not at that time even process it errors out right away. At least using a byte stream datatype it errors out when it is about to write to the olebd destination. Anybody have success using BLOB fields in SSIS package data flow Thanks for any help. What provider you used for DB2 I have a memory that the Microsoft OLEDB provider for DB2 does not support retrieve LOB type columns, inside SSIS, yet. Please confirm with the ...Show All

  • SQL Server OWC-XML Structure migration issues SQL2005

    Hi, I recently migrated a customer's BI solution from SQL2000 to SQL2005. He used to access the Analysis Services cubes via pivottable from OWC 9 or 10. Concerning Cubes, Measures and dimensions he now has the exactly same structure on SSAS as before on SQL2000. Now I have about thousands of reports in OWC 9/10 XML format which i have to migrate to OWC11 to work with SQL2005. I started replacing the version number, Dataprovider and the new Servername. Now connection can be established but I only see the reports measures. None of the reports dimensions (+ structure + filtering) can be seen in the pivottable report. Is there any documentation on what has changed in the xml format or any smart way to easy migrate owc9/10 xml-repor ...Show All

  • Visual Basic Where is the Fill() method?

      I am trying to add new rows to MyDataBase.mdb with the below code. My problem is that it does not identify the columns. It fails with the error message “Name1 does not belong to Customers”. But it does so do Name2. I think it’s locating the database and table as I can retrieve data with the open code using SQL Select.   Can anyone help Please hemo   Dim connection As New OleDbConnection()         Dim myadapter As OleDbDataAdapter         Dim myDataSet As New DataSet          Dim newrow As DataRow         Dim MyTable As DataTable &nb ...Show All

  • Windows Live Developer Forums About MSN personal message and WMP caption...

    Hi, everyone !! We know Live Messenger's personal message can change when listen the song with Windows Mediaplayer. And I want to write some code let personal message can show the lyrics with the song synchronous, if the song has it. So, can you show me some example or give me suggestion about the Live Messenger and Windows Mediaplayer communication. Thank you very much !! But even when you succeed in getting the messages in sync with the song, you'll probably run into trouble with the msnp network itself. It simply doesn't allow you to change your personal message that often. It's a safety measure by MSN to keep people from flooding the network. Hope this helps, coolio ...Show All

  • Commerce Server Commerce Server Order Adapter Endpoint cofiguration programmatically

    Hi, Is there a sample on configuring the CS Order adapter programatically in the BizTalk so it can be used configuring the dynamic send port I need to assign send adapter URI and END POINT MESSAGE TYPE = "Order Queries" properties during run time. Thanks, Why not configure an endpoint for each site and use the "Sitename" endpoint configuration property This property is also written and read from the message context, so this is routable in an Orchestration. You can have the orchestration route based on the Sitename context value to the appropriate endpoint. Further, you can use the Send Port endpoint message type to be "From Context" and you can use the ...Show All

  • Visual C++ WINDOWS.H already included

    ------ Build started: Project: testfile, Configuration: Release Win32 ------ Compiling... main.cpp C:\Program Files\Microsoft Visual Studio 8\VC\atlmfc\include\afxv_w32.h(16) : fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include <windows.h> How do I fix this problem Yes. I've found the solution, After removing all #include <windows.h> from the files in the project, I've added #include <afxwin.h> instead. Thanks, Yossi ...Show All

  • SQL Server I need to understand

    How di I understand what SQL Server Integration Services mean Can some one help me Here is a link to SS2k5 SSIS BOL: http://msdn2.microsoft.com/en-us/library/ms141263.aspx HTH.. ZULFIQAR SYED ...Show All

  • Windows Forms setting DataGridView.CurrentCell threw IndexOutOfRangeException error

    Hi Everyone, I am trying to set the CurrentCell property with a DGV and it is throwing an IndexOutOfRange Error System.IndexOutOfRangeException was unhandled by user code Message="Index -1 does not have a value." The code is straightforward: foreach ( DataGridViewRow row in grid.Rows) { if (row.DataBoundItem.Equals(dataRow)) { grid.CurrentCell = row.Cells[0]; return row.DataBoundItem; } } the error happens when this line is executed grid.CurrentCell = row.Cells[0]; Just before this row get executed the value of grid.CurrentCell is null and row.Cells[0] is a type of DataGridViewCell. The 'dataRow' object is an object that i am willing to select the current row to in the DGV ...Show All

  • SQL Server Paging issue on conditionally set second table visibility

    Hi. I am having a problem with a 2005 report that has two tables and is designed thru visual studio. The second table is set to page break before printing and also to repeater headers on new pages. It works fine just like that. However, if I place a condition on the visibilty of the table based on an input report parameter it does not page break before rendering the table. In fact it does not page break at all leaving me with an extremely long last page. The visiblity parameter does properly toggle. This is all occurring when rendering the report to the screen using the windows reportviewer. When I export to PDF it looks fine. Any help would be great. No, its not fixed, but I figured out a solution ...Show All

  • Visual Studio Team System Unable to connect to workitemstore after windows update

    Hi! We have a web service which are inserting work items to the tfs work item store. After windows update ran on Wednesday I get the following exception when trying to connect: Cannot complete the operation. An unexpected error occurred. at Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.HandleComException(Int32 hr) at Microsoft.TeamFoundation.WorkItemTracking.Client.DataStore.DatastoreClass.ConnectEx(String connectionString, Int32 hCredentials, String defaultCachePath, String instanceId, String userSamName, String userFriendlyName, String userSid) at Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemStore.InitializeInternal() at Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemStore.Microsoft.TeamFoundation ...Show All

  • Visual Studio Express Editions Form scroll bar visible

    Hey, When I have my form on the screen I want that only the form vertical scroll bar to be visible when the form contents are larger than its visible area. I have tried settings as: Me .AutoScroll = False Me .VScroll = True Me .HScroll = False Me .VerticalScroll.Visible = True Me .HorizontalScroll.Visible = False …in several scenario, but they seem to have no effect. Both scroll bar shows up. How do I get around this one Best Regards Cathrine spotty, Thank you for your patience. I have it now. Cath ...Show All

©2008 Software Development Network