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

Software Development Network >> help-linux's Q&A profile

help-linux

Member List

andryuha
Prabu.
ChrisMentioned
dxpsteve
Constantijn Enders
Mike Krysl
Klaxas
Star1234
pasha2k
dzs
Moahmad
davidw
kkt
rajesh_batchu
Aman B
Dmitry Pavlov
Fred Liang
daimaku
Javfarary
Kamii47
Only Title

help-linux's Q&A profile

  • Visual Studio The difference between Crystal reports and sql reporting services in vs2005

    Hi, all, with vs 2005 you can do a report with both crystal reports and sql reporting services. what's the difference And which is the best to get start Thanks Hi, I am interested in your thread as i am currently trying to decide Crystal Reports or SQL Reporting Services. You seem to say the disadvantage of SQL RS is that you have to install a sql server. The project im starting right now will probably use SQL Everywhere on desktop so no sql server install as such. Will i be able to program SQL Reports using everywhere database engine - i guess so but interested in your views/opinions. Does anyone know of any resources comparing CR to SQL RS Many thanks Chris ...Show All

  • Visual Studio 2008 (Pre-release) Changing default editor for XAML

    How do I change the default editor for XAML That is I want to edit them with XML editor rather than Cider. Thanks. Right click the the xaml file in the solutions explorer, and select the "Open with" option from the context menu, in the "Open with" dialogue, you can select the XML editor from the list box, and set it as default by pressing the "Set as Default" button in the right side of the pane. Sheva ...Show All

  • Visual C# Conditional References

    I probably named my thread wrong, but I didn't know what to call it. Basically, I'm making an application which interfaces with various media players. To do this, I reference and use each media player's COM library/interface. This all works fine, however, to use the COM the user must have the specific media player installed. So theoretically, at the moment, for someone to use my application they would have to have all media players supported by my program installed, this is a major downfall. So I was wondering if there was a way to conditionally 'reference' these COM interfaces, in such a way that I can ask the user which media player(s) he would like to support and then use those interfaces, therefore avoiding a problem ( Or I can also si ...Show All

  • SQL Server Error 18456 Severity: 14 State 11 problem

    I am installing diskeeper administrator on one server with at database on our sql2005 server. When I am trying to connect to the database the diskeeper software says verify username and password. I try to connect using windows authentication .And in the serverlog this error occurs 2006-11-27 15:04:56.01 Logon Login failed for user 'NB\Servername$'. [CLIENT: "Ipadress"] 2006-11-27 15:04:56.01 Logon Error: 18456, Severity: 14, State: 11. When i try to connect with Sql server authentication, this error occurs in the log: 2006-11-27 15:48:35.46 Logon Login failed for user 'NB\SERVERNAME$'. [CLIENT: ipadress ]2006-11-27 16:04:22.94 Logon Error: 18456, Severity: 14, State: 16. I have tried to disable files ...Show All

  • Architecture Encryption implementation

    Hi All, I am into design phase of a project which requires me to implement both one and two way encryption. I need to know which of the algorithms can be used for one way encryption and who all can be used for two way encryption MD5,DES,RSA,TripleDES,DES,SHA1. Regards bhaskar Try putting these words into the search box of your browser. If you do, one of the first things you'll see is this: http://www.cryptographyworld.com/algo.htm ...Show All

  • Visual Studio Team System VSTS tester question

    Hi, Many of our customers ask me about the next VSTS version. So, my question is what should we expect to see in the next version of VSTS for tester Thanks Guy, At the moment we haven't publicly released the features which will be included in the beta. Once the features have been announced I'm sure they'll be posted here on the forums. --Mike ...Show All

  • SQL Server saving DTS package to sql server

    hi, I have a "Transfer sql server object task" in SSIS that transfers few tables from one database to another. The task works fine and the project is saved on my c: drive. I was trying to save the project on the SQL server and don't know if i am doing somehting wrong I have the following selections made: Package Location: SQL server Server: ServerName Authentication Type: Windows Package path: /TransferTables Protection Level: Encrypt sensitive data with user key Now when i hit ok i get the "No description found" error with the following details: No description found (Microsoft Visual Studio) ------------------------------ Program Location: at Microsoft.SqlServer.Dts.Runtime.Appli ...Show All

  • Windows Forms Datagridview selected column

    Hi all! how could I put the focus on the second column of a Datagridview, when I click on the "add record" button Thanks in advance! It would be advisable for you to find DataGridView class in documentation and browse through the members. Code: DataGridView1.CurrentCell = DataGridView1.Item(1, 5) 'or DataGridView1.CurrentCell = DataGridView1.Item("ColumnName", 5) ...Show All

  • Visual C# Am i in the wrong forum with this Query, could somebody direct me to the correct one?C# convert Excel to PDF or any image format

    I have a C# application and i am trying to figure out the best way - or any way to retrive data from my excel file and convert it to a pdf file for printing. Thanks, Pam My main objective is to get the document to print wth all the current excel formatting on the client machines.. which is why i was looking for direct convert to a pdf format... but if i can even figure out how to convert to an image format like .tif, .bmp or a .jpeg i can still convert it to .pdf from there at run time... Currently i am trying to directly print it as: Microsoft.Office.Interop.Excel. ApplicationClass app = new ApplicationClass (); if (app == null ) { MessageBox .Show( "ERROR: EXCEL couldn't be started!" ); return ; //System.Windows.Forms.Applic ...Show All

  • SQL Server Data script task - how to generate multiple rows from one row ? (string splitter)

    Hi in input we have a set of rows, each one with a column containing a string (eg: "AAOOOOAAAOOA"). We'd like to split this string (using a vb.net data script task) into tokens (eg: "AA", then "OOOO","AAA","OO","A"), and to output one line per token. How can we achieve that with a vb.net data script task (Or anything else ) best regards Thibaut DarrenSQLIS wrote: Phil, I agree in principal, the native stock components should be faster as a rule, but have you got any references Yep, no problem... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=857796&SiteID=1 ...Show All

  • .NET Development Database Navigation : to get into the NEXT record ? code inside

    HEY GUYS i am developing a program while learning Visual C# so here what i am trying to do .... getting htm links from the database ( access ) and view it in the WebBrowser Control and, i have a button to the next link in that database to get it and view it in the WebBrowser so here is the code for that button but it doesn't work :( when i click on it this is the function i am using when button is clicked private void Next(string lesson) { string StrConnection1 = @"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\anything\database.mdb" ; OleDbConnection Myconnection1 = new OleDbConnection (StrConnection1); Myconnection1.Open(); string ...Show All

  • SQL Server SSMS Template Folders

    I am a long time user of the template functionality built into Query Analyzer, and now Management Studio. The first annoyance that I discovered was the change from .tql to .sql. I always thought .tql was a pain, but I had been using it for years, so I have accumulated a lot of templates. I like to organize my templates into subdirectories - but not the ones provided by the install program. This is when I discovered another annoyance, the template directories are now hidden in the <User>\Application Data\Microsoft\Microsoft SQL Server\90\Tools\Shell\Templates\Sql directory. With Query Analyzer, sometimes I find a script useful, I would just make a copy of it in C:\Program Files\Microsoft SQL Server\80\Tools\Templates\SQL Query Analyze ...Show All

  • Windows Forms Column reorder

    Hi, i'm new with datagrid and i'm wondering how can i make the alphabetical sort of the column to work, does .Net already hasve that functionality I don't know if this is important but the datagrid was filled with data from an array. tkns Check out this article By Rocky Lhotka. ...Show All

  • Visual Studio 2008 (Pre-release) Custom Control from External Library?

    Hello, i cant add Custom Controls from external Library: Code from Control: Public Class ctl2 Inherits System.Windows.Controls.Control Shared Sub New () DefaultStyleKeyProperty.OverrideMetadata( GetType (ctl2), new FrameworkPropertyMetadata( GetType (ctl2))) End Sub End Class Code to create Control: Partial Public Class Window1 Inherits System.Windows.Window Public Sub New () Dim ctl As New testLib.ctl2 dock.Children.Add(ctl) 'Add to DockPanel End Sub End Class That's dont work. I get a XAMLParseException without description. Can anybody tell me, what must i do Thanks for help. Thorsten ...Show All

  • Visual Studio Team System Files automatically get included in change sets

    I am getting reports from developers that some files, such as those with extension .pdb and some .dlls are automatically included into change sets for developers whenever checkins are attempted. I am not all too sure what the exact nature of these files are but they may be files that are related to Microsoft libraries. Developers can easily prevent these changes to be checked in by making sure that they are no checked. But is there a better way to handle this Thanks, Maggie http://support.microsoft.com/Default.aspx kbid=915110 Easiest way to get the fix is to install the Web Application Project add-in from ScottGu's website. ...Show All

©2008 Software Development Network