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

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

Haldox

Member List

rajesh_batchu
Poolius
Cavetroll
arunr14
csi_hugh
Lukasz Tarkowski
Gheerish
sanaku
Mike Prilliman
MuscleHead
Luke Bedggood
ErrantOne
tiomeg
daimengrui
Rav3n
CFIG
Ro0ke
Jeremy Thake
ly4587
jason d
Only Title

Haldox's Q&A profile

  • .NET Development How to initialize Form back to defaults?

    Hello, I have Windows Form which I would like to initialize to default values (all controls on form shall go back to state like I just launched the form). I don't want to unload and reload the form. Is it possible to somehow Use the ApplicationSettings node for a control in the designer. That lets you generically store the properties of a control in the user settings file. That scheme is extensible too to runtime member values. Start reading here ... ...Show All

  • SQL Server Using AMO to Update and then Process an AS 2005 database

    Using AMO, I connect to an AS 2005 database, which has the following connection string: ConnectionString = "Provider=SQLNCLI.1;Data Source=MyServerName;Integrated Security=SSPI;Initial Catalog=MyDBName" And then I do the following: amoDataBase.Process(ProcessType.ProcessFull) ‘ works properly amoDataBase.Update(UpdateOptions.ExpandFull) ‘ works properly amoDataBase.Process(ProcessType.ProcessFull) ‘ This one returns the following error: ex {"The following system error occurred: Incorrect function. . Errors in the high-level relational engine. A connection could not be made to the data source with the DataSourceID of ' MyDatasourceID ', Name of ' MyDatasourceName '. Error ...Show All

  • SQL Server Could RS's data mining be used in a production setting?

    I just have a simple question that can hopefully answer whether I should dive too deeply into Reporting/Analysis Services. I'm looking to run some clustering algorithms on user-inputted keywords on objects within my database (please see http://flickr.com/photos/tags/friends/clusters/ for an example of what I'm talking about). It seems to me that the various reporting methods that SQL Server provides would be an ideal, quick and easy way of providing this for my SQL Server 2005 database. I envision having some sort of job that would get the data from the reporting service daily or hourly and insert it into my main database. Can the reporting services provide this type of functionality And if so, would this be scalable I would want to be abl ...Show All

  • Community Chat Is the new java goin to nail down .net ???

    hello guys , One of my frnds told me that the new java is goin to nail down .net.Is this true Regards jr Web Developer www.iitjobs.com I think .Net will replace Java if MS make it available to other platform. You can do so much more on .Net than Java. But .Net is only for Windows if I remember correctly. And since MS wants to promot Windows, .Net will probably only works with Windows. That's what I will do if I am Gates. It helps Windows since it makes .Net program available across Windows platforms. But it will hurt Windows if .Net program can be run on competitor OS. ...Show All

  • SQL Server Serious error in RS licensing docs on MS web site

    Correct me if I'm wrong... There is a potentially costly error in at least 2 Reporting Services 2005 licensing docs on Microsoft’s web site. They fixed the docs a few months ago after I called and told them about it but, now they are bad again! Here are links to the bogus docs: http://www.microsoft.com/sql/howtobuy/howtolicensers.mspx http://www.microsoft.com/sql/howtobuy/sqlserverlicensing.mspx Both of these docs say that you need 2 SQL licenses to run Reporting Services 2005 on a separate server from the SQL engine. This is not true. You only need 1 license! You do of course need the correct number of CAL's or a CPU license. The license.txt file that ships on the SQL Server 2005 standard edition ins ...Show All

  • .NET Development Thread Leaks

    Hi All, I'm currently working on a project to develop a .NET web service using WSE messaging for communications. The service creates a fixed number of worker threads to process incoming requests. When we look at the service in Performance Monitor the # of current logical threads keeps rising, even when the service is not processing any messages. Also the # of current logical threads when the application first starts is about 7 or 8 threads more than the number of worker threads and we can't account for this. The service does have some unmanaged code in it. The managed code calls unmanaged code in it which is called directly from the managed code. This unmanaged code then calls some managed code via a COM Callable Wrapper. The COM ...Show All

  • Visual Studio Express Editions how to build a web browser in build flash player like opera

    hi pls respond me quickly i also like how can we add tab at run time that is allowing the user to view more pages in web browser narasiman, What is the meaning of view more pages in web browser Would you like to see more contects or just some certain configurations on IE7 to see more tabs when you run the IE7 Generally speaking, when you close IE7 with several tabs, there is a dialog box shown after you click the close button. In the dialog box, you are asked "Do you want to close all tabs " with the follwoing two options: Open these the next time I use Internet Explore and Do not show me this dialog again. This piece of message will be shown when the RadioButton Show Options clicked. It means that the state of the Ra ...Show All

  • Windows Live Developer Forums Is there any way to fill a polyline?

    Does anybody have any ideas You have to make sure the points are in order. otherwise the polygon shape will morph, only works in IE. result is an array of points function MapTerritoryArea_callback(result) { var i = 0; var locs = new Array(); var mylocs = result.Locations var x = 0; var y = 0; for (i = 0;i <= mylocs.length - 1;i++) { var ll = mylocs ; var loc = new VELatLong(ll.Latitude, ll.Longitude); locs.push(loc); x = x + ll.Latitude; y = y + ll.Longitude; x = x / (i); y = y / (i); var loc = new VELatLong(x,y); var col = result.Color; var pol = new VEPolygon(result.Id, locs); polygonID++; pol.SetOutlineW ...Show All

  • Visual Studio Team System TFS Templates with Reports and Sharepoint QuickLaunch Links

    Hi, I have a TFS Template which creates a wss site. The site is basically a copy of the MSFAgile template. I'd like to know how to change the links that appear under the Report heading in the Quick Launch part. eg: Report Priority Project velocity .... Any help would be most appreciated. Thanks Ben. The links that appear in the Quick Launch part are embedded in the WSS template. You need to create a new WSS template that matches with what you want and save it to WSS. Use the new WSS template name in your modified process template and create a project from it. ...Show All

  • Visual Basic How to replace a folder icon

    Hello, I am trying to figure out how I can programatically replace a folder's icon by clicking a button. i want to change it to an image I have created (type *.ico). Can anyone please help me Thanks! do you know of a link that would possibly show how to alter the directoryinfo method I have found a link that shows how to view the items in a directory but now exactly for what I am trying to do. http://msdn2.microsoft.com/en-us/library/3xy7db0w.aspx ...Show All

  • Windows Forms Form size changes in design mode

    Everytime i open a form from the designer .. it changes it's size ... it's growing ... Everytime! if i open it a lot of time consecutively ... it will grow bigger and bigger ... It might be your nick causing that. Seriously, does this happen on any form in any new project or just on the one project you're designing... ...Show All

  • .NET Development Errors Ocured

    Dear All, When I execute my application i got the error.Can Any Body Solve the Issue Error Is: Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerDatabaseUnavailableException Actually i am not using the sql reporting service and in my application there is no reference to sql reporting.When I am building the .net application i get an exception. Thanks in Advance Saroj ...Show All

  • Smart Device Development Type is not defined

    Hi, I have a create a new project (Control Library). And I am using this code. However it returns the following error: Type 'PasswordDeriverBytes' is not defined regarding the SetKey function. (highlighted in bold) What am I missing out. I originally took this code from a windows form (for a desktop not PPC). I really need to get this fixed. Thanks in advance Imports System.Security.Cryptography Imports System.IO Public Class PDACrypt Public Sub New () MyBase . New () InitializeComponent() clientRC2CryptoServiceProvider = New RC2CryptoServiceProvider() End Sub Public Shared clientRC2CryptoServiceProvider As RC2CryptoServiceProvider Private Function SetEncKey( ByVal pwd As String ) As Byte () Dim dr ...Show All

  • SQL Server How to change script component type

    Hi, I have a requirement where I need to change the script component type from source to transformation. I could not find any way to change it simply other than creating a new one, copying all the code and other relevent variable names and then deleting the old one. Is there any property setting where I can do it simply Thanks. ...Show All

  • SQL Server OLE DB2 Provider

    Hi Running SQL 2005 standard edition, using OLE DB2 provider from Host integration server. When connected we can acces data with select statements, but cannot browse tables from import wizard in SSIS. Is there a hint or solution rgds It's probably the provider. The Enterprise Edition of Sql Server comes with a DB2 provider. You could also use an ODBC connection instead and see if that works. Finally, IBM might have a provider as well ...Show All

©2008 Software Development Network