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

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

mf32000_9

Member List

meenal
Precis
Winston
thuja
Ravel
inDistress
Chernichkin Stanislav
eshl
Ilian
Rasim_Yilmaz
eXseraph
tomandlis
Gu1234
tlgRocksOn
SFrench
Sumesh Nair
NikosG
Olivier Dagenais
Nick Stipanovich
Jani Pewter
Only Title

mf32000_9's Q&A profile

  • SQL Server SQLENT server-client connection problem

    Hi I have SQLENT version of SQL server, i made virtual machine and on that i have Windows 2003 Server Enterprise Edtition. As u know this SQL server instalation in in 2 parts, server and client. So Server i installed on virtual machine, and it's running perfectly, but client is installed on computer (i'm using Windows XP professional there) and problem is that i can't start SQL server, i can't connect client to server. Usualy i get error message ...Show All

  • Software Development for Windows Vista Unable to set focus on a list item

    I get the following exception in UISpy when trying to set the focus on a listitem of my custom (WinForms) list control: Exception Time Stamp : 6/1/2006 10:28 AM Element : "list item" "" Name : InvalidOperationException Message : Target element cannot receive focus. Stack Trace : at System.Windows.Automation.AutomationElement.SetFocus() at UISpy.Base.Node.SetFocus() My custom list item ...Show All

  • Visual Studio LocalReport Export graph in Pdf

    I use LocalReport for generate export in Excel et pdf with Framework V2.0.50727. When RDL contain graph ( bar or pie) the size of file ( render) in pdf is 16Mo. In excel is OK ( 41ko) or with no graph in pdf (89 ko)   Parameter DeviceInfo is a empty string.   any idea i have the same problem. the size is 6Mb for 2 pages with one little png and a chart. in excel ist is 42Kb. ...Show All

  • SQL Server Maximum Conversation timer interval

    I'm using conversation timers successfully to fire events at a predetermined time in the future, but I'm running into issues when using an interval of considerable size. I set the conversation timeout like so: set @Timeout = DATEDIFF ( SECOND , GETDATE (), DATEADD ( MINUTE , -( @TimeOffset ), @FollowUpDateTime )); if ( @Timeout < 0 ) set @Timeout = 1 ; // begin dialog begin conversation timer ( @Foll ...Show All

  • SQL Server Failure installing SQL Server 2005 SP 1

    Windows XP Pro SQL Server 2005 Express SQL Server 2005 Standard I installed the service pack for SQL Server Express first. Then I tried to install the service pack for SQL Server. I got the error message, "A recently applied update, KB913090, failed to install.", while it was upgrading the Setup Support Files. Jonathan Allen Log follows... 04/22/2006 10:52:34.781 ========================================================= ...Show All

  • .NET Development Calling .NET Components takes time in Remoting?????

    .NET Components are written in C# and deployed in IIS. Interfaces and .NET Remoting is used. Presentation component calls Business component that resides in bin forlder of virtual directory. It takes 1-2 minutes for 1600 records. Thats the problem. 1. Execution of Query takes not even a second. 2. Presentation layer display of records in grid takes <=1 sec. 3. Data access logic takes <=1 sec - Coping data retrieved fro ...Show All

  • Smart Device Development pls solve my problem!im really stuck!

    hey...im just needing help so much because i cant solve the problem.my bluetooth that im using is Bluetooth USB dongle (bluesoleil). When ever i plug the bluetooth in, it always say that my USB device not recognized.what can i do for more information please contact me : ly_devilgirl@hotmail thank you for ur helping.=]       click here to review: http://img109.imageshack.us/img109/9348/mydestop9dd.jpg ...Show All

  • SQL Server Client Printing Hangs

    We are accessing SSRS reports using web service. We call the Render the reports using http://<server>/ReportServer/Pages/ReportViewer.aspx reportName&rs:Command=Render All reports render fine. However for one particular report when we click the print button on the report viewer in IE, Active-x pops up a message "Printing Now" and hangs eternally. The error occurs even when I am logged in with Admin privileges to the mac ...Show All

  • .NET Development Online/offline database sharing concepts

    I'd appreciate some info on how to make an app with a database backend, that can (a) work as a web-based app, and alternatively (b) work as a standalone app with easily shared data files. Let's ignore development details for the app and focus on the data itself: I have an app with its own large proprietary data file format. Users of the app can currently share data files via e-mail and run the program anywhere, independent of an internet ...Show All

  • Visual C++ Tool to convert from /clr:oldsyntax

    Hi there, At one point there were rumors that MS would post or sell a tool to convert from the old managed C++ syntax to the new C++/CLI syntax. Stan Lippman wrote a series of articles on his blog: http://blogs.msdn.com/slippman/ The beta docs included a reference to it: http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=c0ee7a81-9636-48d8-99c5-891afa4a017f Ronald Laeremans from the VC team hinted that it ...Show All

  • Windows Forms Opening multiple children

    I have an issue where I cannot open multiple MDI children. Does anyone have a clue what's going on Jason I fixed this issue. I accidently had the MDIList checked for my Open button. Duh!   :}  ...Show All

  • Visual C# hashtable question

    hello, i want to update a value in a hashtable (ht) so i wrote- ht["key1"]=Convert.ToInt32(ht["key1"])+1 but the value is remaining the same what im missing thanks in advanced ok so i tried that and its working but what in trying is to copy fields from a dataTable (in dataSet) to a hashTable here is the code- foreach (DataRow dr in DS.Tables["table1"].Rows)  { if (hashTabel1.ContainsKey(Convert ...Show All

  • .NET Development Handle property in textbox

    In .Net Framework, there is a handle property in textbox control. How do I implement this handle value in vb.net of .net compact Is there a trick Thanks ! that checkbox was gray out. However, I was able to uncheck it. But I could not see handle property, so I went to tools -> options -> text editor again, I saw the checkbox is checked and gray out again. ...Show All

  • Visual Studio Express Editions Display names of computers on a network in a combo box

    I know that this must be posted somewhere, but I can't find it. Hopefully this won't make you mad as this has probably been asked many times: I need to display the names of computers within a network in a combo Box. I have recently restarted to do a bit of programming and I have forgotten nearly everything, so please excuse me if I don't know what you mean. Last post of this thread http://forums.microsoft.com ...Show All

  • Windows Forms BindingSource not reflecting datasource changes

    I have a master detail form   (customer – orders),   the customer part consists of text boxes and the orders part is a DataGridView control.   I’m connecting to a dataset via the BindingSource control.   I can update the dataset and data source, merge the new updates back to the dataset and call accept changes and all works well, however, auto-increment values are not updated in the BindingSource control.   I have ...Show All

©2008 Software Development Network

powered by phorum