Vikas Verma's Q&A profile
Visual Studio Express Editions How do I develop plugins for Visual Studi Express
Hello, Can somebody tell me how develop plugins for Visual Studio Express editions I use the VC++ edition and I use it for building program written in SystemC, which is a templatized C++ for developing harware models in C++. Now I have to do extend this Visual Studio Express for things like viewing the variables correctly during debugging, and write viewing the performance in GUI etc. I read in another thread in this forum that it is not possible t develop plugins for Express editions. Is that true Can I develop the plugins in Visual Studio and deploy them in Visual Express Regards, Rajesh ...Show All
Visual Basic use of tool box components
I'm a newbie with vbexp.edition. My question is how do i learn what to enter into the toolbox components that i will be using, I ask this because the short explaination given when i click the component is difficult for me to understand. I guess what i'm asking is which is for numbers and which is for text. not sure what you are asking...but most components are type independent...however components like the textbox take your objects and tries to convert them to a string representation for disply.... with option strict off me.textbox1.text = 10 10 is converted to a string of "10" for displa ...Show All
Visual Studio Disable updates in the edit window
Hi, I have an add-in that changes the text in the file that is currently in the edit window of VWD. How do I disable the updates to the window while I my add-in is ruinning then enable the window and refresh it when the add-in is finished Thanks, Nick You can diable UI by setting the following property DTE.SuppressUI = False /Ole ...Show All
SQL Server dependency relations are different from different mining structures with same mining algorithms?
Hi, all here.. I got one problem in my data analysis case with SQL Server 2005 data mining algorithms-in the dependency network, the attributes mostly affected the predictive value are different in different mining structures tho. For example, I got a, b,c as input attributes to predict attribute d, in mining structure 1 (with all attributes discretized ), i got a as the attribute which has the strongest relation with predictive attribute d . However in mining structure 2 (with all attributes values continuous ), I got attribute b as the strongest attribute with predictive attribute d So what is the problem tho In this case, how ca ...Show All
Visual Studio Express Editions Visual Basic Problems Using DirectX 8.0
ok, What I really would like is to download visual basic 6.0, but I cant find anywhere to do that.. My problem with visual Basic express edition, is I cant seem to get my reference to Directx 8 to work, I have reinstalled directx 8 and VB but it still wont work for me, any ideas> I am programming in BASIC and am very new at it... if anybody could help me I'd be very thankfull, you can contact me by emailing me at Lukeskiwalker@bellsouth.net , or posting here... Thank you very much, Wesly OK VB6 is not available to download. Its an old product which is probably 8 years old and was rep ...Show All
SQL Server Using variable of type Object in expression
Hi I have some SSIS variables of type System.Object (they have to be this type because they are used to hold the results of a single row result set in an Execute SQL task which is querying an Oracle database. Although I know the Oracle table columns are Numeric, this was the only SSIS type that worked). My problem is that I want to use these variables in expressions, but can't - I get the error "The data type of variable "User::varObjectVar" is not supported in an expression". The only workaround I can think of is to use a script to assign the numeric values (integers, in fact) that these variables h ...Show All
Windows Live Developer Forums plug in with MSN Messenger
Hi, I am a new comer in this forum.I would like to develop a code in C++ to plug in with MSN Messenger.Any idea how can I do this Thanks & Regards, Sutapa Wrong forum. Go to http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=112&SiteID=1 ...Show All
Visual C++ Web Browser C++ Samples?
Are there any Visual C++ Web Browser Samples Matt Hi Matt, On MSDN there is a tutorial on how to host a Web Browser Control in an MFC application . Additional samples may be available online . Also, you can find reference documentation about the Web Browser Control on MSDN . -- Marian Luparu Visual C++ IDE ...Show All
Software Development for Windows Vista RuleSet Editor
The readme for the RuleSet Editor says you're looking for comments. Well, here's what I'd like to see: Visual Studio integration (duh!) References and IntelliSense like the other Visual Studio editors Storing the rules in XML or a database Ability to search for rules and organize them Add to the Rule class an ActiveCondition property of type RuleCondition. If you set it, then getting the Active property evaluates that condition. If you set the Active property, it nulls out the ActiveCondition property and getting the Active property returns whatever you set it to. Setting the ActiveCondition property to null would set the Active proper ...Show All
SQL Server Reporting Services setup and permissions
I have Reporting Services set up on a SQL Server machine separate from the development machine. I have used Reporting Services configuration to set up ReportServices as the virtual directory. This did place a new web instance under the Default Web directory in IIS (I am using 5.1), however when I got into the c:\inetpub\wwwroot directory, there is not a ReportServices directory. I thought this is where I would set user permission for the ASPNET account. I have set the permissions to the Reporting Services folder in the C:Program Files\...\ReportingServices directory, however I still am getting an error message about the ...Show All
.NET Development System.IO.Compression not as good as compressed folder
I'm getting much better compression when I make a compressed folder (Windows XP) than I am using DeflateStream or GZipStream. I thought these were the same algorithms used in PKZIP and for compressing folders. Why such bad compression DeflateStream: 3544Kb -> 1261Kb GZipStream: 3544Kb -> 1261Kb Windows XP: 3544Kb -> 804Kb So how can I get the same compression ratio as Windows XP Thanks, Jeremy Apparently you can't. What you see in the Deflate/GZipStream classes is all there is as far as the .NET Framework is concerned. However, this result i ...Show All
SQL Server Attached DB and SQL Express: Now you see it, Now you don't!!!
After installing SQL Express 2005, I attached a DB of mine, with success. I can see it from the lagacy enterprise manager, and if I launch the query analyzer fromm within SQL Ent. Manager that DB appear in the DB pane list ans THAT IS FINE. Now when I launch the Query Analyzer directly from Windows, the attached DB doesn't appear. Same when I try to create an ODBC DataSource pointing to that DB: Is DOESN'T APPEAR and THAT IS NOT FINE!!! Anybody have a clue Thanks in advance Can you still use the database in Query Analyzer or osql (What I'm trying to understand if this is a UI issue or something else). Do you ...Show All
Visual Studio Team System Visual Source Safe -> Source Control in Team Foundation
I want to migrate an existing project from VSS to TFSs source control. Any idees on how to acomplish that Is there a client that is not integrated into Visual Studio (command prompt etc) that one could use to access the TFS source control Thanks! Migrate VSS project Open the project. Remove the bindings (File -> Source Control -> Change Source Control). Connect to TFS. Add to Source Control (same File menu, or Solution Explorer context menu). Yes Visual Studio Command Prompt -> tf.exe MSSCCI plugin for old versions of VS and many other IDEs 3rd party clients: TeamPrise, TeamPlain, and mor ...Show All
Visual C++ Event "Onclick" defined runtime
"Hello world", i'm developing an application which creates runtimes X CStatic objects, During the for loop i inserted this code, and it works: int IdEntry = 2500; for (BYTE i=0;.......;i++) { StaticLabels[ i ].Create("...", WS_VISIBLE|SS_CENTER, CRect(...),this,IdEntry++); ................ .................................. } StaticLabels[0] is a vector of CStatic controls example: & ...Show All
Windows Forms How can I add lines in a richTextBox in C# ????
Hi, I’m working Visual C# .NET 1.1 I have got a richTextBox control with 4 lines: Line 1 Line 2 Line 3 Line 4 Now I want go add one line between Line 1 and Line 2 for example. Line 1 New Line Line 2 Line 3 Line 4 But I don’t know how I can do it. I have tried with richTextBox1.Lines[1].Insert It is possible to add a new lines between others Any example Any help Thanks in advance !!!!!! Hi, I don't know if there's a shorter solution but here's something you could try. I wrote this code after seeing your predicament and it worked out here. string[] tempA ...Show All
