rtaiss's Q&A profile
SQL Server Populate values for a parameter in a drop down list
How to Populate multiple values for Parameters in reporting services.i am talking about the Default values for a parameter As i am a fresher in this field , i would like to know much about it I am working on SQl server 2000 Will it work on 2000 or i need to use 2005 Plz reply ASAP ...Show All
Visual C# Grammar class for C# 2.0?
I'm contemplating writing a micro-language that does rewriting C# 2.0 code. The immediate challenge: what kind of parser to use to parse C# 2.0 code. One of the things I found particularly troubling in the C# 2.0 standard was the section about resolution of the following code: G(A<3,4>2) (Is that a template or a pair of arguments The C# 2.0 standard says this it's a template name). I've hunted for off-the-shelf grammars for C#2.0 in commonly used parser tools with no luck (lots of partially implented C# 1.0 grammars, so far, but, no 2.0 grammars). If anyone could answer the following question, I'd be grateful. Can C#2.0 be parsed with LALR(1) parser tools LL(k) The example above really looks like it needs LL(*), o ...Show All
Visual C# can i write to: global::Proj.Properties.Settings.Default.ConnString
Hi, I want to create a UI for changing the connection string, how can I change the connection string because it's read only when I tried to change it Error 1 Property or indexer 'Proj.Properties.Settings.ConnString' cannot be assigned to -- it is read only Thx Edit: I'm using visual studio 2005 with c# (.NET 2.0) tried that and still got the same error Property or indexer 'Proj.Properties.Settings.ConnString' cannot be assigned to -- it is read only I even tried (like in one of the reference of ur post): connStr = "..................................." Proj.Properties.Settings set = Proj.Properties.Settings.Default; set.ConnString = connStr; ...Show All
Visual C# Reassign F1 Key to prevent me from comming to this site
Hi, How can I reassign the F1 key to prevent me from coming to this site ever again Or at least assign it to a differnet website From the main menu... Tools.Options.Environment.Keyboard.Help.F1Help handles the shortcut Tools.Options.Environment.Help.Online for online help preferences ...Show All
Visual C++ Connecting to printer in MFC
Hi all, Do anyone here know how to print a string for example to printer in mfc Is there any command or class available Thanks alot! You can use CDC class for Printing. CPrintDialog::CreatePrinterDC function can be used to create Printer device context. You can refer any of the articles listed in codeproject for reference https://secure.codeproject.com/printing/ ...Show All
SQL Server Install SQL Server 2005 Exp with ToolKit
Hi, I would like to have SQL Server 2005 Express with the most features as possibles. It seems to be correct about 'AdvancedEdition' but, when I installed the "ToolkitEdition", in order to get "Business Intelligence Development Studio", I was not able to open this option. The file 'devenv.exe' is missed. Do you have some procedure and links to get best set up with theses features for SQL Server 2005 Express Thanks. I think there is a problem with Visual Studio Express Editions and SQL Server Express Edition integration. I have installed a VSEE and then tried to install SSEE with advanced services and the toolkit. The install screwed up thinking that there is a Visual Stu ...Show All
Visual Studio Team System requirements/tasks and microsoft project
Hi, project manager will create tasks with Microsoft Project. They would like to associate Tasks with Requirements (work item type =requirement). I know how they can create tasks and requirements with Microsoft Project , but how can they link them How can they associate tasks to requirements with Microsoft Project I know how to do it with team explorer but they do not want to use 2 tools to do that. Any idea Rod Hi, It is simple as same in team explorer... open the MS project 2003 ..hope you are having the addin for publishing the tasks...type all the tasks whtever you want and in the LAST of the addin command buttons you will having the button named "LINKS and ATTACHMENTS"...c ...Show All
Software Development for Windows Vista HTML WF Designer
I've got a beta version of my Atlas-based WF designer for download on my blog now. http://www.masteringbiztalk.com/blogs/jon/PermaLink,guid,5880f478-b448-4c39-9f2e-382d942a7b82.aspx Enjoy Hi guys, Need some help here. I have downloaded the Atlas-based workflow designer and tried to run it. I realized that the workflow designer canvas and the toolbox images does not display when i have it setup as a virtual directory on the IIS. However, it only works on the Microsoft ASP.NET Development Web Server. How can i resolve this Hope to hear from you guys soon. Thanks. Andrea ...Show All
.NET Development Security Exception
I am trying to host an ASP.NET 2.0 application (written in C#) which calls a native code C++ dll. The application works well on the localhost, but the hosting ISP has set the trust level of the ASP.NET 2.0 environment to Medium. Consequently, whenever the ASP.NET 2.0 application tries to load the dll, it bombs out with a security exception. Try this.... create antother managed dll that calls the C++ dll .... sign the managed dll and put it in the GAC. Rgds, Rodrigo ...Show All
.NET Development Get Hardware Detail from Drive Letter
Hi all, May i know how we can get hardware detail from a Drive Letter by using VC++ .Net Hardware Detail are like GUID, Hardware ID, Friendly Name and etc. Regards in .NET 2.0 you can use the DriveInfo class to get a list of all drives installed or mapped on the system. Example: DriveInfo[] theDrives = DriveInfo.GetDrives(); foreach(DriveInfo curDrive in theDrives) { MessageBox.Show(curDrive.Name); } away from this....and into WMI. I see DiskDrive class has the DeviceID and the LogicalDisk has the Name. So somehow you need to perform some similar SQL Join statement or something. Ill see what I can try ...Show All
Visual Studio Team System Adding columns to the Source Control Explorer view
Developers are interested in seeing the dates of latest checkins for files listed in the Source Control Explorer but this information is not available in the default view. Is it possible to add columns to the Source Control Explorer view Hi: Unfortunately No. We are looking to be able to provide you with this functionality in future releases. Thanks, mario ...Show All
Windows Forms The referenced assembly is not installed on your system. (Exception from HRESULT: 0x800736B3)
I have an application that is distributed with click-once. One of my users already makes use of it for quite some time without any problems. Only recently, he is not able to launch the application anymore. During the check that is made to see if there is a new version of the software, he gets the message: "Application cannot be started, contact vendor" If I copy my application manually, he is able to launch it without any problem. I included the detailled log below. Any suggestions PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Common Language Runtime : 2.0.50727.42 System.Deployment.dll : 2.0.50727.42 (RTM.050727-4200) mscorwks.dll : 2.0.50727.42 (RTM.050727-4200) dfdll.dll : 2.0.50727.42 (RTM.0 ...Show All
Smart Device Development SQL mobile 2005
Hi There, I'm currently writing an application for a windows mobile 5 device which will store data in sql mobile 2005. I would like to know which would be the most efficient way of writing the following example to work with the above. (up until now all the code i have written has been in vb6 and connecting to an access database) Set db = DBEngine.OpenDatabase("location\database.mdb") ' strSQL = "SELECT * FROM Floats WHERE AgentName = '" & lblAgentName.Caption & "' AND Status = 0 " ' Set rs3 = db.OpenRecordset(strSQL) If rs3.RecordCount > 0 Then rs3.MoveLast lngRecordCount3 = rs3.RecordCount rs3.MoveFirst Else lngRecordCount3 = 0 End If ' If lngRecordCoun ...Show All
Visual Studio 2008 (Pre-release) Designing TabItems
When designing tab items it will not let me move the controls with the mouse to position them exactly where i want them. I have mess with the margin setting and tweak it manually which is very tedious. Is there a way around this Yes. Unfortunately that's a well known and infamous limitation in the current Cider CTP. Cider doesn't yet support custom controls in preview mode, although I understand that it will be addressed in the first Visual Studio Orcas CTP, expected in "early 1997" (according to an MSFT poster). You might want to try using the Expression Blend beta ( http://www.microsoft.com/products/expression/en/Expression-Blend/default.mspx in conjuction with Orcas. Expression Blend does ...Show All
Visual C# properties
How can I print the properties window... You can't print the property window contents per se but you can create a bitmap of the property window and then send that to the printer. You can copy the active window using Alt+PrtScrn and then paste it into Paint for printing. Not elegant but it works. Michael Taylor - 12/21/06 ...Show All
