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

Software Development Network >> Vivek Thakur's Q&A profile

Vivek Thakur

Member List

Matrix818181
Amir Goodarzi
Adam Tappis - IMGroup
m_meuse19
Spenceee
AndyPham
keithy02
sunny123
bmaggi
malignate88
lambertlee88
Jay Longenderfer
Philli
the-rpd
sqlhiker
eric02
Hemant Kumar
acm programmer
chare
prashantsable
Only Title

Vivek Thakur's Q&A profile

  • Visual Studio Team System selective Schema Import

    Is there any way in which I can import selective objects from a database (other than using import Script) I have a database containing objects from many projects together. I want to get the objects related to a specific project in my DBPro project... Another problem....when I tried to import script as a workaround for this, only the tables and views got added. None of the stored proc's got imported. And when I tried importing the whole database schema with CTP 5, it took 3 days to do the same... Please help me solve these problems... Thanks, Mairead. One more issue... When I compare schema, I do not have the option of selectively comparing two particular objects. I am forced to compare the entire database! This will al ...Show All

  • SQL Server Remote connection not working using MSSMSE

    Im getting quite desperate and frustrated!! I have installed SQL 2005 Express successfully and can connect to it fine using Management Studio locally. If I try and connect remotely using Management Studio Im getting the old Error 10061 : The machine actively refused the connection! I have set it up exactly as per all documentation and help from the forums. Remote connections is on TCP and Named Pipes, I even have the firewall disabled. Im running it on Windows Server 2003 Standard. Any help would be really apriciated as i have tried everything!!! It would appear that the port is blocked or the server is not listening to 1433. I cant telnet to the port. How would I go about opening that up C ...Show All

  • SQL Server change css

    how can i change modify the css file of the reporting services ...Show All

  • Visual Studio HoL Registration failed

    Hi there, Since the beginning of the week I'm exploring for the first time the concept of Guidance Packages. While searching for a quickstart a ran into the Hands on Lab solution to get me started. I ran into a few problems that already are solved (some of them appeared in this forum) but now I'm completely blocked. The registration of the HoL failes, althow I've already installed the WCF guidance package. The error that's been reported in the VS output says following :(Note : all the assemblies are in the PublicAssemblies IDE) An exception occurred during the Install phase. System.TypeLoadException: Microsoft.Practices.RecipeFramework.VisualStudio.RecipeFrameworkInstaller, Microsoft.Practices.RecipeFramework.VisualStudio at ...Show All

  • Visual C# Sharing variables between classes

    Hi, I have a project where I have 3 separate classes, 2 of these classes use some methods and variables defined in the third class. To acheive this I'm currently making the variables and methods needed by the other classes 'public static'. However this is causing me problems as my program is storing information when at times I don't want it to and I can't find an appropriate way of resetting them. My question is is it possible to share these variables and methods with the other classes without making them static Thanks in advance. Thanks nobugz Could you just extend on what you're saying a bit please. Say I currently have MapLogic.cs, MapListView.cs and MapTreeView.cs and MapLogic contains a current leve ...Show All

  • Visual Studio Express Editions Splash screen and startup?

    I have a splash screen which I would like to have shown as the first thing when a user runs my program. After 20 seconds it should close and reveal the main form. ATM I have the following: I have the splash screen set as the startup form. A timer event on the splash screen form with the following: Me.Close() main.Show() When I run this the splash screen loads sticks around till the end of the timer, then the main form briefly flickers into view before it disappears again and the program seems to end. Does anyone why this isn't working All i got in there is mostly for loops. Private Sub main_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim x As Integer = 0 Dim y ...Show All

  • Visual C# Component class adding a List attribute

    Here is a piece of code from my component class. I am trying to add a List attribute: [Description("The type of the parameter"), Category("Behaviour")] public string Type { get { return this.Type; } set { this.Type = value; } } [Description("List of parameters"), Category("Behaviour")] public List<Fields> AllFields { get { return this.AllFields; } set { // } } Fields is a public class: public class Fields { public string type; public string name; public string value; } My question is how do I Set the value to my List<Fields> Eventually I need to add values to the list at design-time ...Show All

  • SQL Server publish report

    Hello, I have create a web base project that will programmatically publish report into report server 2005. But when i run the code, i need to create a shared data source and set the DataSourceReference. Is there any ways else so that i no need to create a shared data source but still can publish the report in report server 2005 using custom data source Thanks. You don't have to use shared datasource. You can just define a report specific datasource, in which case, all the datasource properties are embedded in the rdl. http://msdn2.microsoft.com/en-us/library/ms159165.aspx ...Show All

  • Windows Forms How can I hide the caret of a RichTextBox control?

    Hello, Can you please tell me how can I hide the caret of a RichTextBox control completely while my app is running Thanks. This will completely hide it: Set the timer1.Interval = 1; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices;   namespace WindowsApplication2 {     public partial class Form1 : Form     {         private bool hidden;         private const UInt32 WM_LBUTTONDOWN = ...Show All

  • Visual C# Strong Name Key File

    What is common practice when sharing a snk with many projects Do I add the snk to each individual project Or is there a way to store the snk in a centralized location to be used by all projects There are really two quick and easy ways to do this... the first is to put your key file in a common location so that each project can access it through it’s AssemblyKeyFile attribute in its AssemblyInfo.cs and might look something like:       [assembly: AssemblyKeyFile(@"c:\Projects\Common\MyKey.snk")] Another method is to install your key into your systems default Crypto Service Provider (CSP) and use the AssemblyKeyName attribute to reference the name of it. In order to install your key pair you’d use sn.exe t ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. So obvious, but can't find it in the FAQ

    OK, just got back from vacation and finally got to start playing with the much anticipated XNA beta. Somebody please tell me the previous posts were wrong and I'm just missing this in the FAQ -- they wouldn't really release a game development kit that can't import 3D models, would they I mean, this is such an obvious thing... I'm just missing it in the FAQ, right Somebody, please.... The Spacewar sample has a .svm format loader, which has been documented in a couple of posts previously. Someone (sorry, I can't remember their name ATM) has released an .X to .svm converter you could use to convert models into something that can be called with that code. In addition, you can write your own ...Show All

  • Visual Studio 2008 (Pre-release) Unable to run DLinq

    I've tried just about everything, I get this error when I create a Dling object: Warning 1 The custom tool 'MSDLinqGenerator' failed. Could not load file or assembly 'Microsoft.VisualStudio.Modeling.Sdk, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. C:\Program Files\Microsoft SDKs\ADO.NET vNext CTP\Samples\CSharp\LINQLibrary1\DLinqObjects1.dlinq LINQLibrary1 I'm unable to use DLinq ...Show All

  • SQL Server parameters

    Hello, i am new to ssrs and am trying to generate a report with 4 parameters. 2 of which are dates. The other 2 are drop downlists. Now the report works fine when i enter all 4 parameters. But in some cases i want to leave one of the parameters unentered . It doesnt all me to do that. Gives a error saying i need to enter the parameter. How do u get aroud this issue I have seperate dataset for this parameters list and am using a where clause in my main query. Can anyone please help me out with this Thx Ashish hello rakam, Thx for the reply. My problem still continues. i tried ur suggestion but it still prompts me to select that paramater when trying to view report. Any other options with be appreciated. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA with other languages

    Hello, my name is Brian i am an Indie developer looking into the XNA. My question is, will XNA ever be able to be used with VB.net and will microsoft allow it as a language to be used whilst creating Xbox 360 and Windows games than you. This is the site I ended up using the most. Anytime that site didn't have what I was looking for, typically I could find it pretty quick just Googling for it. Hope that helps and like I said. Once you know a .NET language like VB, it's not too hard picking up another one like C#, I'm sure you'll be up and running working on an XNA game in C# in no time at all...although when you start adding curly braces to your VB code you might feel a little silly... ...Show All

  • Visual C# DirectX to Bitmap

    I am currently generating an image in DirectX using things such as Line.Draw() etc. and I need to get the image out as a bitmap. I Have managed to accomplish it using SurfaceLoader .SaveToStream( ImageFileFormat .Bmp, _surface0) ; however, this is too slow, I need something I can do in real time. Does any one have any suggestions for another way to get the image from a DirecX surface to a bitmap ...Show All

©2008 Software Development Network