gill cleeren's Q&A profile
SQL Server Parameters in URL - Problem
Hi, I am new to Reporting services and have managed to create some reports. I want to pass some parameters in the URL to the report. I know how to do this but some parameters are not passing to the parameter boxes. They are clearly displayed in the URL but are not populating the boxes. I have one report done before i came and this used to work but now it doesnt work. Any ideas Matt Hi Matt, i am unable to understand ur prob completely. But still, if the parameter field is a dropdown list, then the value for that parameter passed in the URL should exists in the dropdown list or else ...Show All
Game Technologies: DirectX, XNA, XACT, etc. List of all functions
Hello, Where I can find a list of all the functions, procdures and commands of directX, and what each function do thenks a lot, Amit Prigozin. amitPrigozin wrote: Hello, Where I can find a list of all the functions, procdures and commands of directX, and what each function do thenks a lot, Amit Prigozin. the directx sdk help files maybe ...Show All
.NET Development Type.GetTypeFromProgID vs. GetTypeFromCLSID
Hi, I am using the above methods to remotely instantiate an object registered in COM+ without using a proxy on the client machine. I want to be able to connect to different servers, so that's why I'm not using a proxy. I noticed that the method GetTypeFromProgID doesn't work (generates an exception) if the server object (or its proxy) is not registered locally. Surprisingly, GetTypeFromCLSID works fine, which makes me believe that the first method only looks into the local registry to resolve the ProgID into a CLSID, and instantiates the remote object afterwards. I was wondering if this is meant to be like that or it could be a bug Am I ...Show All
Visual Basic Identifier
Public Sub () RaiseEvent Button2.Click(TextBox2.Text & TextBox3.Text) End Sub It says i need a identifier before () on Public Sub (), but im not sure wut i need to do. Can someone post the correct code What is you sub called. What its telling you is that you need to give your sub a name. You cant just leave it blank. How would you then be able to refer to this sub Example Public Sub XYZ() RaiseEvent Button2.Click(TextBox2.Text & TextBox3.Text) End Sub ...Show All
Windows Forms Specify size of the autocomplete dropdown
Hey! Is it possible to specify the size of the dropdown that appear for the autocomplete options in a System.Windows.Forms.TextBox when using the SuggestAppend mode Users of the GUI / application can change it manuelly, but is it anyway to do it programmaticlly as well Thanks! ...Show All
SQL Server Generate documentation of tables and columns?
Is this possible the tables has a field called description and so does the columns. I need to generate a data dictionary. You might want to consider SchemaToDoc ( http://www.schematodoc.com ). It creates Word or HTML output that documents primary keys, fields (datatype, size, nullable, defaults), indexes, check constraints, foreign keys, triggers, views, and stored procedures. It also has an interface that lets you annotate your tables and fields; you can include these extended property descriptions in your output documents. ...Show All
.NET Development as to show tables of the data base through one winapp
as to show tables of the data base through one winapp Hi Paulo, I am not positive as to the extent of your questions, but if you are looking for ways to query a database for its tables to show in a winform application, you can do this in a number of ways. 1. SQL Server 2005 comes with Server Manager Objects (SMO) that allow you to connect to a SQL Server 2005 database and add, edit, delete objects in the database. I recently wrote 2 articles about creating a table and creating a stored proecedure using SMO: http://davidhayden.com/blog/dave/archive/2006/01/27/2775.aspx http://davidhayden.com/blog/dave/archive/2006/01/27/ ...Show All
.NET Development Writing to file...
Is there a way to write an entire class object to file and then retreive it Thanks in advance, Devin Hi, Yes it can be done and its called Serialization. Take a look at the following link: http://www.c-sharpcorner.com/Language/serializingObjectsinCS.asp Regards, Vikram ...Show All
SQL Server can you build a report model on an Access MDB?
Simple question, did not see a ready answer on msdn ...Show All
Smart Device Development CCommandbar and AppendMenu with PPC2003 app in VS2005
Hi I'm porting my PPC2003 application to VS2005. I've managed to make it compile, but my dynamic menus no longer work. The menu I'm updating was in a CCeCommandbar when compiled in eVC4++, but in VS2005 I'm using CCommandbar. What I do is use AppendMenu to add items to my menu. I do a printout of the items in the menu after appending them, so I know they are there, but they never become visible. I've tried DrawMenubar but it doesn't make a difference. Hi, Can you please post the code snippets used to access the menu bar and the resources that you are using Thanks Avinash. ...Show All
.NET Development There is already an open DataReader associated with this Command which must be closed first.
I have a rather large ASP-NET-2.0 project that I've been developing for some time. I'm using System.Data.Common classes for all of my data access, and SQL-2005 as my provider. Up to and including Beta-2, everything was working just fine and dandy. Then, with the release of RC1, I suddenly started to get the following error:: There is already an open DataReader associated with this Command which must be closed first. This totally threw me, but I dutifuly started to trace all of my connections & readers to make sure I was closing & disposing of them properly, and all appears to be correct. After a bunch of tedious and very time-co ...Show All
Visual Studio Express Editions Object Reference Problem, Why doesn't this work?
Hello All, I am really stuck here and I could use some help in figuring out why this code does not work in .Net. I am converting/rewriting a VB6 app. The VB6 code does what it is supposed to do. The .Net code is syntatically correct as far as I can see but does not function as expected. What is supposed to be happening is that clsApp.Mainform is supposed to be getting set to frmMain which is the central form of the application, thus allowing me to manipulate frmMain from within my application by accessing clsApp.Mainform. What happens instead is that clsApp.Mainform is set to a generic form object and does not have any reference to frmMai ...Show All
Visual Basic Datagridview autoformat
What happened to the autoformat option for the datagridview on visual studio.net professional The document is from a 3rd party company and this was probably written for a beta and not the final release code. The control is detailed here http://msdn2.microsoft.com/en-us/library/e0ywh3cz.aspx Which shows how to estblish style and formatting for the control. ...Show All
Visual Studio Team System how can I run a unit test on difirent threat?
Hi, How can I run a unit test on different threats I have Visual Studio team System for Software developer. I do not have the load test functionality on this version.... Please advice! Thanks Hi, Could you give us more information about the scenario you want to achieve (And I assume you meant "threads"). Thanks, Boris ...Show All
Windows Forms updating DB & databinding of a textbox
HI, I have VB studio.NETv2003,sqldatabase and a windows appl. IN this I made a master/detail form, wich shows the mastertable and several childtables. I used the databinding of the form, to navigatethrough the dataset, and for synchronising all the child tables with the mastertables. THIS IS GOING OK! The only thing is, that the updating of the table is not working! what ...Show All
