n y n--d8bn pr95y6's Q&A profile
SQL Server Reporting Services Tutorials Problem
Hi, I'm having a problem with the 6th tutorial of the Reporting Services: Using XML Data in a Report. Im using SQL Server Standard Edition on Windows server 2003. In 'Lesson 1: Defining a Data Source and Dataset for XML Data' ( http://msdn2.microsoft.com/en-us/library/ms345338.aspx ), I can't seem to get steps 10 to 15 right. In Step 10, it says you must type : "<Query> <SoapAction>http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportservices/ListChildren</SoapAction> </Query>" But in the diagram it has .../reporting/report ing services/ListChildren... Well I tried both(The namespace ...Show All
Smart Device Development CreateFile
I'm new to this sort of stuff so please bear with me I am using C# to do this but importing dll's and functions. So I apologise if this is the wrong forum to post but I am you are able to help. I've imported Coredll.dll so I can CreateFile(), WriteFile(), and CloseFile(). I can get a handle to the COM3 serial port. When I write file, I get the error 1359 which is internal error. But have no idea why. It seems to send beams anyway but I get this error when debugging. Of course, I dont know if the signals sent are valid or not. What im trying to do is get access to the COM device so I Can send signals to, lets say, a tv devi ...Show All
Windows Forms An unhandled exception of type 'System.NullReferenceException'
Hello all, I am writing a file to generate bitmap file. While i am compiling this program I got no error but, the output isn't right. So I insert a*space space*point, where I think the internal error might occur. I insert the breakpoint in the line of "f_ptr[i]=fopen(filename_ptr, "rb+");" Supposingly, it doesnt went through the if statement, because f_ptr[ ...Show All
Windows Forms Getting the children in right z-order from the MDI-container
Hello, I have to store the current opened forms of an application (MDI) to view these in correctly the same way on reopening the application the next time. What I have made was to iterate over the forms by using the property 'MDIChildren' of the class 'System.Windows.Forms.MdiClient'. It's working fine with one restriction. It's not the right z-order, the returned forms are sorted by the order in which the children were added to the form. My question is now, can I get the forms sorted by the current z-order or can I get the z value (or something equivalent value) from the form itself. Maybe anyone has a solution or an idea for a ...Show All
SQL Server Redimensionate parametervalue array
Hello, in reporting services I have to pass parameters as an arry, the problem is that I dont know the number of parameters that the user is going to select because one of those parameters is a multivalue parameter, So I used a constructor with a constant number of 10 for example, then I iterate through the checkboxlist to know which checkboxes the user selected, as I have 2 already know parameters, the number of parameters will be minimum 2 if the user doesnt select nothing on the checkboxlist, if the user selects 2 checkboxes list the parametervalue array will have 4 positions FILLED with data but the rest will be null, and I can send nul ...Show All
Smart Device Development Evaluating contol name as expression
Hi, I'm working an a project for a PDA and bumped into following problem: I need to assign text to labels dynamically in a loop. Unfortunatelly it seems like compact framnework does not support the findocntrol function, is there any other way here is an example what I'd like to do (simplified..) ------------------------------------ While res.Read() = True ctrl = FindControl(Me.Controls, "m" & i & "_d") ' this part needs to be solved &n ...Show All
Visual Studio Express Editions Making TextBox handle Numerica values?
Hi everybody, I am trying to learn visual C++ and this is my first problem in building a Widows application: A textbox control can handle data of Text type only. For example, if I have a form with a TextBox named textBox1, and I have the following code under a button: int x; x = textBox1->text; I woul get the followin error when compiling: error C2440: '=' : cannot convert from 'System::String ^' to 'int' Now, how can I change the data type of a textbox so that it can take numbers Would appreciate any input. Thank you in advance, Hello maman ...Show All
Smart Device Development How do i Change other language emulator Image with VS2005
Dear all I used other language emulator image that is ok for VS2003,but with VS2005 is fail . Do someone know how to solve that ! > These images are compatible with Visual Studio 2005. Does that mean that they are not compatible with the standalone emulator preview ...Show All
SQL Server re-establishing mirror
When witness and mirror were down, mirroring was removed at primary. Now when I try to re-establish mirroring I get the following error Msg 1456, Level 16, State 3, Line 1 The ALTER DATABASE command could not be sent to the remote server instance 'TCP://witness:5022'. The database mirroring configuration was not changed. Verify that the server is connected, and try again. On the witness server the following sql select * from sys.database_mirroring_witnesses returns 1 row with the previous mirroring information. How do I remove old information from witness server Thanks. If the witnes ...Show All
Windows Forms My latest wishes
This is my latest list of .NET framework enhancement wishes. Some of these problems have workarounds, but are kludges that I'd rather be able to remove from my code. The issues dealing with GDI+ performance and bugs are most critical to me. 1)Never use private, internal, or protected in framework classes, use virtual wherever possible. My life would  ...Show All
.NET Development MMC 3.0
As I have seen here there is a question without an answer about MMC 3.0 under Windows Server 2000. We are working with MMC and want to move to MMC 3.0 but the Server 2000 is very important for us Where can I find the setup for MMC 3.0 under Windows Server 2000 Thanks Gil According to the latest versions download page ( http://www.microsoft.com/downloads/details.aspx FamilyID=97c2ad9d-d537-4b64-a79e-4e58baacff7a&DisplayLang=en ) Windows 2000 is not supported. Feel free to give it a try... however remember that your chances of having it work properly out of the box are slim. ...Show All
SQL Server Serious Converting Data Problem
Hi, I am going to map a SQL Server 2005 table to a SQL Server 2000 table. Here are databases specifications: SQL Server 2000: Collation: SQL_Latin1_General_CP1256_CI_AS Table: Party Feilds: Serial int not null FullName varchar(50) SQL Server 2005: Collation: Arabic_CI_AS Table: CMN_tblParty Fields: PartyID int not null FullName nvarchar(50) I used SSIS to map data from 2005 to 2000 but it failed. Actually it can't convert unicode field to non unicode one. Therefore I used a Data Conversion Block and I converted the FullName from CMN_tblParty to string with CodePage 1256. But when I connect this block to OLEDB Destination block, ...Show All
Game Technologies: DirectX, XNA, XACT, etc. mesh texture color
im using a effects file in my project but it seems when I render some meshes the colors are not comming out right, my render loop is very basic so nothing there should be the problem, so my guess is its in the .fx file here is what I have float4x4 worldMatrix; float4x4 worldViewProjection; texture sceneTexture; sampler g_samScene = sampler_state { Texture = <sceneTexture>; MinFilter = Linear; MagFilter = Linear; MipFilter = Linear; }; void VertScene( float4 Pos : POSITION, float2 Tex : TEXCOORD0, out float4 oPos : POSITION, out float2 oTex : TEXCOORD0 ) { oPos = mul ( Pos, worldView ...Show All
Windows Forms View Data Grid (for xml database)
Since upgrading to VS 2005, when I right click on an xml database document that contains the schema, I no longer get a listing of the tables and cannot view the data contained in the tables. If I open the document created with VS2005 in VS2003, the grid populates fine. Thanks in advance for any replies. The tables are created and added to the dataset like this. DataTable dt = new DataTable ( "Table1" ); DataColumn dc0 = new DataColumn ( "Field0" , Type .GetType( "System.Int64" )); dc0.AutoIncrement = true ; dc0.AutoIncrementSeed = 0; dc0.AutoIncrementStep = 1 ...Show All
Visual C++ Thread Synchronization
Hi I have Four Thread Function I want to execute these function sequentially How do i do this ThreadFun1() //when it complete start second one and so on.. ThreadFun2() ThreadFun3() ThreadFun4() all functions are in different classes thanx Manoj Jangid Just start them in one thread one after another. If you want to execute them sequentially there is no need to have separate threads! ...Show All
