Software Development Network Logo
  • Visual C++
  • Windows Live
  • Game Technologies
  • .NET Development
  • VS Team System
  • VS Express Editions
  • Visual J#
  • Visual Studio
  • Smart Device
  • Architecture
  • Visual FoxPro
  • Microsoft ISV
  • Visual C#
  • Windows Vista
  • Windows Forms

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

kline

Member List

dcboy
acelik
hrlevy
joniba
Anonymous12321232
Rajonline_82
Abby14910
Jakob Ehn
AaronEd
Ahmad El Kerdi
Kijju
Blueraven
Jen.e
rwlavoie
aJoe
Sean Michael Murphy
Chen_mcc
fantacmet
TheMattMan
deumber
Only Title

kline's Q&A profile

  • .NET Development Using MessageBox::Show() in VC++.net

    Hi Guys,   I was trying to write a simple application in vc.net and display a messag box. So, I created a sample Windows Forms Application(.Net) and on the dialog box I just have one button. In the click event of this button I wrote the code: MessageBox::Show("TestStringText", "TestStringCaption"); But, when I run the program I can see the CAPTION BUT I just cannot see the MESSAGE STRING and the BUTTON TEXT in the resulting message box displayed Am I doing something wrong OR am I missing some initialization Any help is appreciated. Thanks,   Neelay Hi, I know this might sounds weird, is your virus scanner mcafee An issu ...Show All

  • SQL Server sqlcmd default editor on 64-bit not working

    edit.com in DOS is not ported to the 64-bit platform. Maybe notepad should be sqlcmd's default editor More info in the link below: http://www.haidongji.com/2006/04/28/no-edit-in-dos-on-windows-64-bit/ Thanks. Haidong Ji http://www.HaidongJi.com ...Show All

  • Windows Forms Does anyone know of a good alternative to a datagrid?

    Hi All, I have a datatable that which I want to display. Clearly I can bind this to a datagrid and use styles to make it look nice but to be honest it is rubish. It doesnt fill the datagrid area, it doesnt resize its hard to affect cells (although I have done this base on content of the cell). What I realy want is something sim ...Show All

  • .NET Development Obfuscation by default?

    Hi all, Is there any way to obfuscate the code by default..i mean when compiling.. If not ...Why Microsoft doesnt provide an option with its compilers to obfuscate the assembly by default so that the code is secure Thanks, Suresh. You can use a post-build process to call the obfuscator of your choice. Keep in mind that obfuscation doesn't secure anything--it's a deterrant, at the very most. -Ryan / Kardax ...Show All

  • Visual Studio Express Editions XML, Lists and ListBoxes

    Got a few questions. I have a List<string> that populates a ListBox with data. If I delete an item at an index, would the data move down an index For example, I have 10 items in my list, indicies are 0 through 9, if I removed the item at index 5, would the indicies change to 0 through 8 and would the item at index 6 move to index 5 (so on and so forth for each item after) Or would I have to manually iterate through each item and move it down an index My next question regards XML. I can create an XML file and read through it, but every example I come across only gives information on creating new files. If I have an existing XML docum ...Show All

  • SQL Server missing date

    Hi everybody I have table that store error messages.if error message is generated today it is stored in todays date.if next error message is generated after tomorrow the respective date is day after tomorrow.but i want date of that day also on which error is not generated.more clearer all dates wether error is generated or not.my corrent query is CREATE VIEW dbo.rpt_Kids AS SELECT     TOP 100 PERCENT KF_ID,dbo.just_date_formal(KF_DATE) as KF_DATE,KF_STATUS FROM dbo.KIDS order by Year(KF_date) DESC,Month(KF_date) DESC,Day(KF_date) DESC please help what should i add to it     If I understand your problem ...Show All

  • Windows Forms Typed dataset in inherited form

    Hello. Have anybody solution to resolve this problem I have base form that have typed dataset(protected). When I inherit this from I have a problem. Designer serialise all typed datatables in new form. This cause error - dataset can not contain datatables with identical names. How to prevent this serialization I do not view any reason for this. Basical ...Show All

  • SQL Server .NET2 SMO Components

      I am new in VS2005 and I start with sql2005 express. I plan to use SQL express 2005 manager. When I tries to install this program the system asks for MS Framework,net2 SMO Components. Where can I download these components Thank You Best regards Oyvind       See this link which contains a reference to the SMO redist : http://blogs.msdn.com/mwories/articles/smofaq.aspx ...Show All

  • Visual Studio pls help, calling crystal report 11 from vfp 9.0

    i am stucked, no idea how to call report from vfp. have tried ODBC, OLEDB, data link file .. all have logon failed problem ...Show All

  • Visual Studio Team System Additional binaries don't get shadow-copied

    i have three assemblies (class libraries) in my solution: the first one contains classes only (1), the second one contains the interfaces (2) and the third one works as a plugin (3) for 1 (implementing the interfaces from 2). at design-time 1 only references 2; i then have a post-build command that copies the binary from 3 to the bin-folder of 1 (2 gets copied anyway because of the reference). that works fine using my app normally. but when i run a unit-test for 1 the plugin 3 is not found. i checked the log and saw that the assemblies are shadow-copied to some temp folder in the users application data directory. that's a good ...Show All

  • Windows Forms NotifyIcons and Menus..

    Using Beta2 to create a Windows Form using C#, I'm trying to add a NotifyIcon to a form together with a popup menu.  However, following the simple steps below, I get an error: Add a NotifyIcon to form. Add a ContextMenuStrip to same form, In the properties of the NotifyIcon, try to set the "ContextMenuStrip" property to that of the contextMenuStrip1 created in step 2. I immediately get the following error message: Property Value is Not Valid Object of type 'System.Windows.Forms.ToolStripMenuItem' cannot be converted to type 'System.Windows.Forms.ContextMenuStrip'. It does however look like it is trying to assign the class t ...Show All

  • Windows Forms Just-in-time debugging error

    I have an application built in VS2005 that uses a library to display data in a particular table format. I built this application on windows 2000 and run there, it ran fine. Then I copied the entire solution folder from this machine to Windows 2003 machine which has .NET framework2.0 installed and not complete VS2005. When I run the same application here it gave the following error: --------------------------- Visual Studio Just-In-Time Debugger --------------------------- An unhandled exception ('System.IO.FileNotFoundException') occurred in TLDemo.exe [2960]. Just-In-Time debugging this exception failed with the following error: No inst ...Show All

  • Visual C++ Visual Studio 2005 professional: mspdbsrv failure -> Sporadic fatal error C1033: cannot open program database

    I keep getting the following compiler errors, albeit sporadically: fatal error C1033: cannot open program database "D:\somepath\ps_extrude.pdb" It appears as though mspdbsrv.exe is keeping file handles between builds open, causing sharing violations with itself. The compiler is using the /Fd option to specify the pdb file, on a multiprocessor machine using 2 invocations of the compiler at a time. The file access during the error looks like: ------------------------------------------------------------------------------------------ 6:28:20 PM mspdbsrv.exe:3568 OPEN D:\somepath\ps_extrude.pdb SUCCESS Options: Open Ac ...Show All

  • .NET Development How to get all SQL tables at once

    Hi all.. I have a database running on SQL Server. It has a lot of tables that I need to load into a dataset (all at once) so that I could work with the in memory data. How can I do it using a SqlDataAdapter or other object if this is possible I could load it one by one but it is a very tedious work (to load not only data, but also relationships). Thanks Jaime I wouldn't do that. A database is better suited for doing filtering/sorting than in-memory storage like a datatable, which will result in slow code and a memory hog. If you really really want to, you can fetch the meta-data first from sqlserver, using the INFORMATION_ ...Show All

  • Visual Studio Start Page

    Does anyone know if it is possible to refresh the start page Further, the Recent Projects list. I have written an add-in that allows a user to manage the list of recent projects(should of been in this version), but can not figure out how to make the start page refresh. Thanks, Brian If you mean that the start page loads a different RSS feed from the default one, then Yes :) In VS go to Tools.Options.Environment.Startup and then set the Start Page news channel to whatever RSS feed you want. Hope this helps. JP ...Show All

©2008 Software Development Network