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

Software Development Network >> Andrey Egorov's Q&A profile

Andrey Egorov

Member List

Nicholas Key
Herr Vorragend
Hugo from Holland
VanDamMan
Martin999
roneil
mafandon
ohine
Kentmw
Mary555
dehjli
deepak2000
Josh Pendergrass
Jeremy Boschen
Aguila
Sami Zaghloul
Robin Sanner
Ahmedweb
big t
donjuawnu
Only Title

Andrey Egorov's Q&A profile

  • Windows Forms DataGridView Row Select with EditMode=EditOnEnter

      I have found that if I set a DataGridView's EditMode property to EditOnEnter then the user cannot select an entire row by clicking on the row header. This prevents the user from being able to delete a row.   When the user clicks on the row header, all of the cells of the row become highlighted, but at least one of the cells always remains in edit mode and thus pressing the delete key does not delete the row. The keystroke is instead sent to the active editing control of the cell instead of being processed for row deletion.   For my particular situation, I really must have the EditMode be EditOnEnter, but I also ne ...Show All

  • Visual Studio Express Editions Help needed Troubleshooting vwdhosting.net

    Hi All, I have been trying to upload to the vwdhosting.net site with no success as of yet. Icontinue to recieve a directory does not exist message. I have noticed that when ever I remove any files from the filemanager that the server issues a new path and password so let me say that this is not the issue. When I use the upload assistant to upload the zip folder it does nothing but refresh the screen and with no results of uploading any files at all. I have tried support a few days ago but have not heard from them as of yet. Let me say that the instructions for the file assistant are lack of detail. I just had a idea this very moment that ...Show All

  • SQL Server A Problems after the install of the Hotfix

    After installing SP1 and then the hotfix: http://support.microsoft.com/Default.aspx id=918222 We now get the following error when trying to work with date parameters in Report Builder: Query (6, 117) The '[VBA].[DateSerial]' function does not exist. ---------------------------- Semantic query execution failed. ---------------------------- Query execution failed for data set 'dataSet'. ---------------------------- An error has occurred during report processing. Is this a known problem or is there some sort of something that I can reinstall Thanks! Sure thing. The problem comes with the prompted Transaction Date MDY. Without ...Show All

  • Visual Studio Express Editions Getpixel API

    visual basic code: Where did you find this code What is it supposed to do Cut and paste of code you don't understand is always a bad idea. hdc would be a device context, the thing that Windows must generate in order to draw something. GetPixel is returning the color of a pixel in a DC, build from a window, which would be a single number which, when converted to hex, is an RGB triple. Can someone please explain to me how to use this code so that I can grab the pixel color from a location on the screen Well, forget the session stuff, and instead just pass IntPtr.Zero ( from memory, it's NULL that you want ) to GetDC to get the DC of ...Show All

  • Windows Forms wat is the actual way to open & close window form?

    wat is the actual way to open & close window form i doing the login form which will show the main page after user login.. so i put this code at login button frmmain main= new frmmain(); main.ShowDialog(this); then it will load the form main, but how to close it i try to use main.close(); main.dispose(); still cant'.... is it anything wrong Go to the entry point of the application (in C#, likely static void Main() in Program.cs). There will be a static call to Application.Run that will create a new instance of your main form. Change the form in this call to change the main form of the application. ...Show All

  • Visual Studio Odd Behaviour while Checkin

    I use Visual Interdev 6.0 to work on my asps and checkin the files to VSS thru interdev itself. Recently I notice a wiered happening with some asp files. if I have a input tag like <input type="text" name="test" value=""> in my asp code up on checkin the the source is changed like below and checked in to VSS <input type="text" name="test" value> Can any body tell me why this is happening. It happens to only certain files and am not able to draw and similarities among those files.     Hi Rajesh, I would run analyze.exe on the database and fix any potential corruptions (just to make sure ...Show All

  • Visual Studio Team System TFS Security

    If I add "Domain\Domain Users" group to "Project\Contributors" then domain users ("Domain\User1") cannot access TFS. If I add "Domain\User1" to "Project\Contributors" group then everything works. Is this by design or a bug The Beta 3 refresh code has a problem detecting group membership if the group is set as the user's primary group.  By default, all users have the Domain Users group set as their primary group, so the Beta 3 refresh code thinks that the Domain Users group has no members.  The workaround is to create another group in Active Directory, and add the users to it.  This problem is ...Show All

  • Windows Forms letter/Mail generation application

    Hi, I want to make an application that generates a letter. I want to make the header section of the letter customizable, so that I can get the customer name, address and other information from database and add to the letter header section. Then I want to make the body of the letter from a template word file may be. and the footer of the& ...Show All

  • Visual C++ passing arguments to a System(something.exe) function

    Background : I have an MFC application and a c++ program (separate entities). I did a build on the c++ program, and copy pasted the resultant 'exe' formed in its debug folder into the MFC application's folder. Now in the MFC, I am calling the function "System(mt.exe)", which is a call to the exe that I had copy pasted. Question : This exe (ie the c++ program) uses a variable 'counter' at some point in its execution. Is it possible for me to pass an 'int' as an argument to the exe when its called from the MFC, so that the 'counter' within the exe takes that passed integer as its value So effectively, first time the exe is executed, ...Show All

  • Software Development for Windows Vista Accessing login information

    I am building an application where i want to do something like this:   " A simulation is running in background when the ccomputer is locked by the user who started the simulation....now as soon as user logs back in, simulation shud stop( basically whenever a user is doing some interactive task,simulation shud stop running)" Now for doing this i need to detect the event when the user logs back into the system so as to end the simulation. Please suggest a way of getting around it........my application is build using Vc n  i have XP Os.........so please suggest me a way of doing this in XP using Vc only( i m not building an m ...Show All

  • SQL Server Export Report

      Hi, How can i export a reporting services "report"  without using a report viewer From C# code  NB: i am using SQL server 2005 (RS 2005 too) Thanks Tarek Ghazali SQL Server MVP     have you tried doing it through the url it's pretty straight foward you pass what ever values and then say &rs:Format=HTML4.0(or what ever format you want) here's a link further explaining it http://msdn2.microsoft.com/en-us/library/ms154040.aspx ...Show All

  • Windows Forms Wizard creation

    Hi, I need to create wizard but I don't know what is the best way to do it. I consider two ways: 1. Create few forms and simply swith between them during on each step of wizard. 2. Create master form that will switch panels of each wizerd step. I guess these are not all options :). So what is the better way   I've been  ...Show All

  • Visual Studio Team System Full Circle error MSB3202

    I'm having trouble building a team build. I am able to define a team build just fine, and when I try to run it, the log files seem to suggest that it can find the source files just fine. But I end up with a lot of errors. My solution uses Enterprise Library 2005, so here is one of the errors that reference it (so, I don't think it is custom code related): error MSB3202: The project file "..\..\..\..\..\..\Program Files\Microsoft Enterprise Library January 2006\src\Data\Data.csproj" was not found My team build has the file in its local source, the error occur when it tries to compile. TIA. jdn ...Show All

  • Visual Basic Help: Visual basic program

    Hi i am making a program with a listbox named (lst) and picturebox named (pic) and i put the following code into the listbox selectedindexchanged sub so as the user clicks on the picture name from the listbox it displays in the picturebox Note: the listbox contains the paths of the images as there is openfiledialog in the program Private Sub lst_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles lst.SelectedIndexChanged Dim img As Image Dim s1 As String Try s1 = lst.SelectedItem img = Image.FromFile(s1) Catch ex As Exception pic.Image = Nothing Exit Sub ...Show All

  • Visual C# please microsoft or anyone tell me why !!!????

    when i debug this code Process p=process.getAllprocessbyName(processName, Remote MachineName); p.Kill(); i have this exeption this feature is not supported in remote machine what i want to say is why microsoft make this function and told us that we can use it for remote machinr in msdn help i found: C# public static Process [] GetProcessesByName ( string processName , string machineName ) Parameters processName The friendly name of the process. machineName The name of a computer on the network . wow I apologize. http://www.codeproject.com/csharp/WMI.asp contains ...Show All

©2008 Software Development Network