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

Software Development Network >> Subrah's Q&A profile

Subrah

Member List

Whoisit
Eric Harmon
adorer
mobigital
Libol
Kimbe
enric vives
RickNa
Serapth
Eddie Garcia
MunishGupta
ando
xlordt
PerPixel
arieltk
Captain Baz
Vyatsek
Wil Burton
pukla
RARiedel
Only Title

Subrah's Q&A profile

  • SQL Server The task Transfer SQL Server Objects Task cannot run on this edition of Integration Services. It requires higher level edition.

    Error code: 0xc0012024 Using "Integration Services Project" template in Business Intelligence Studio. Using platforms Visual Studio 2005 along with SQL Server 2005. Getting the error while trying to execute package after loading it programmaticaly. I've just one task "Transfer SQL Server Objects Task" on my Integration Services package. But when I try to execute it from VS 2005 project programmaticaly, it gives the above mentioned error. The commands I use: Package pkg = new Package(); pkg = a.LoadPackage(@"C:\Documents and Settings\abc\My Documents\Visual Studio 2005Projects\lSSIS\SSIS\Package.dtsx", null, true); DTSExecResult dResult = pkg.Execute(); The the error comes like: error: ...Show All

  • Visual C# Generics in C# - new() cnstraint

    Hello...   I am trying to play a bit with the generics feature of the .Net 2.0 Framework and I ran into this "Problem"   I try to create a Singelton Base-Class, which will create an instance of itself if the instance is accessed. Since I want to create an Instance of <T> inside my generic Base, I need to supply a new() contraint to <T>. This "forces" me to create a public constructor, since that what new() means.  I think the scope of new should not be "public" but  "protected". Protected would allow me to hide the constructor from the outside world, but it would still allow the creation of the class inside the baseclass. Since I am not able to do this, a direct creation of my Bas ...Show All

  • Visual Studio Express Editions How do I get the print preview dialog to show me the txtDocument.Text

    How do I get the print preview dialog to show me the txtDocument.Text and how do I get the print function to print more than just one page ' Computer generated code (Form1.Designer.vb) < Global .Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ Partial Class Form1 Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. <System.Diagnostics.DebuggerNonUserCode()> _ Protected Overrides Sub Dispose( ByVal disposing As Boolean ) If disposing AndAlso components IsNot Nothing Then components.Dispose() End If MyBase .Dispose(disposing) End Sub 'Required by the Windows Form Designer ...Show All

  • Visual Studio Express Editions Remote

    Hi, I would like to make a remote client and server application that sends a message, for example "shutdown" along with the computer the action applies to, the target computer would then pick up that mesage and perform that action. I would like this as a form, not a command prompt program. thanks briggins5, According to your question, I recommand you to read an article and download the sample project that use the C# code. The title of this article is Remote Execution Using NET Remoting, this project creates a client-server application which takes advantage of using Asunchronous Callback methods. http://www.codeproject.com/csharp/RemotingExec.asp I hope this can help you with your project. :-) ...Show All

  • .NET Development Connecting SqlExpress from .net 1.1

    hi I had one problem when connecting to sql express from my .net web application in 1.1 It retrives the values from databse but when i am updating the data or inserting the data then it gives exception that sql server does not exist or access denied here is my connection string public static string connStr = @"Data Source=servername\sqlexpress;Initial Catalog=db_user;Persist Security Info=False;User ID = SA;Password ="; Hi All, Finally i get the solution I added the tcp/ip port and set my authintication mixed Thanks Friends ...Show All

  • Windows Live Developer Forums Updating a Pin position without reloading whole map from MS Access

    Hi All, I've got an Access app that needs to show a pin at a particular spot on a VE map. I'm currently doing this by navigting to a ASP page (using a browser control) sending lat/long coords for a map and pin using a Access form timer event. However, everytime the timer calls for an update the entire map is refreshed, which can be slow. Is there any way of deleting the pin and putting a new one in with updated coordinates dynamically I've read a bit about AJAX but it seems to be dependant on an event occuring on the webpage, where in my case Access is the controlling application. Thanks muchly! John ...Show All

  • Windows Forms how can i make a form visible based on a condition ?

    how can i make a form visible based on a condition Dear Speedie, Thanks for ur prompt response. I just want to remind a list of items to be followed for renewal namely.. license renewal, medical card renewal (based on the expiry date)...this I am showing using the DataGridView but if there is no items to remind, I don't want the form to be displayed. How can I load the form (without using form.Show()) in background and decide whether it should be shown or not I think now the prob. is clear than before. If not, feel free to clarify. Regards R. Kannan ...Show All

  • SQL Server Can't Connect with Remote Sql server.

    Hello All , I had installed Sql Server 2000 on Windows server 2003 enterprize Edition. But when I Try to connect it with Remote, 'Sql Server doesn't exists' message appears.. anybody know what may be the reason You can connect using IP Address without any problem and for that ensure to add an entry on the client network utility on your client's machine. Also refer to KBA http://www.sql-server-performance.com/faq/sqlviewfaq.aspx topicid=12&faqid=143 which helps to resolve any issues you might get. ...Show All

  • Visual Studio Express Editions Formulas like excel

    Can anyone tell me how a program like excel handles formulas. From what i can see it looks like it stores the formulas somewhere away from the database. How does this work Or am i even close Can someone tell me how to create something similar This isn't exactly what i am looking for but it did spark some thoughts to withhold formulas from my spreadsheet and hard code them to use only when my app is running. Thanks for the spark. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Control Hardware Acceleration in DirectX

    hi there, I am using Managed DirectX. Can i control level of hardware acceleration through DirectX while creating or initializing device If i can control it through my software, what things i can do with it there is still option to change hardware acceleration through manually by changing it through properties of VGA but my requirment is to change it through my own software. please reply soon .... Thanx There is an registry key for this: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Video\[GUID of the instance]\0000\AccelerationLevel But I am not sure how the system can be forced to reload this value without a restart. ...Show All

  • Visual Studio 2008 (Pre-release) Deserialzed object is null

    Hi, I use the IRequestChannel.Request, the message gets deserialized and i dont receive any errors but the deserialized object is null. Both my data contracts match. I dont want to use MessageContract. Any thoughts on whats going wrong Thanks! The namespaces in the client/server data contracts are different Client side contract [ DataContract (Namespace = "http://vz/framework/servicecontract" , Name= "CreateUser" )] public class CreateUserRequest and ServerSide contract [ DataContract (Namespace = "http://vz/framework/datacontract" , Name = "CreateUserRequest" )] public class CreateUserRequest They need to be the same for ...Show All

  • Smart Device Development Cannot display local XML files in emulator

    Using IE in the Pocket PC 2003 SE Emulator, I can view XML files over the Web (i.e. via a URL) but not local XML files (i.e. file:\\...) that are on the device's storage card (i.e. a folder on the host machine). Is this a limitation of the emulator, are local XML files displayed properly in actual devices, or I am doing some wrong Sorry for my delayed response... So you mean that the Web Browser component (or IE itself) didn't display local files (located either in the Storage Card through folder sharing or in folders within the emulator) but did display them properly in actual devices ...Show All

  • Silverlight (formerly WPF/E) Image.Source + Permission Denied?

    Hello, I am currently working with the December CTP of WPF/E and I am attempting to dynamically set an Image source via some JavaScript. Within my .xaml I have the following snippet: < Image x:Name = " Image1 " Source = " Images/Test.png " Canvas.Left = " 5 " Canvas.Top = "1 0 " /> Within my JavaScript, I have: var image1 = activeXControl.findName( "Image1" ); if (image1 != null ) { alert(image1.source); image1.source = "Images/Test2.png"; } When I run the code, I receive a JavaScript error that says "Permission Denied" however, the SDK document states I should be able to set the Source property. Is this just a CTP ...Show All

  • Windows Forms app.application Publish file

    Hi, I know this has already been posted, but I need to get it clear in a simple way. The 'app'.application file is created when you publish an application to a web/ftp server, along with other files. The publish.htm page shows a button linking to the 'app'.application file and I can correctly install it, but a friend of mine (and maybe many more people too) get the 'app'.application file contents displayed in his browser. He has the .NET Framework 2.0 installed (installed automatically with VB 2005 Express), and I would like a simple solution to resolve this issue, without reinstalling .NET 2.0 (unless you are sure it resolves it). I also heard that it has to do with MIME types , but I'm not too familiar with this term to unders ...Show All

  • .NET Development Date Format Problem

    Hi, I am having a web application (Asp.net2.0), where I give date values in the format dd/mm/yy, My operating system WinXP is changed to UK settings also I've created a sql server (2005) user with 'british english' settings. My problem is when I am running the application using VS 2005 IDE it runs fine. But when I am creating a websetup project and run it through IE, the date format is changed to US (i.e date values to sql). I don't how it occurs. The user and pwd in web.config to access the database has 'british english' settings only. What might be the solution for this Thanks, Murali Hi Murali! Did you try this: http://msdn2.microsoft.com/en-us/library/kc8s65zs.aspx I ...Show All

©2008 Software Development Network