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

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

dshaykewich

Member List

Dave Beer
GR_india_delhi
Jane Wang
TGB
DavidTranzact
tightcoder
Smeat
Arild Fines
Ahussain
dsilberhorn
uszaty1973
M Popiela
GNWebSoft
Jules730
Vi_Tinh
Arsoft
KLTNET
Bamboo
Jargo
George1905
Only Title

dshaykewich's Q&A profile

  • Visual Basic File Watcher

    Hi, I have a fileWatcher set as follow: Private Sub setupFilewatcher() Dim info As New System.IO.FileInfo(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile) Dim path As String = info.DirectoryName Dim file As String = info.Name Try watcher = New System.IO.FileSystemWatcher(path) watcher.Filter = file watcher.NotifyFilter = IO.NotifyFilters.LastWrite watcher.EnableRaisingEvents = True Catch e As Exception 'Do nothing... End Try End Sub My problem is that the event watcher.changed is fired 4 times when a save occur in the file. I need to catch only 1 event and n ...Show All

  • Windows Forms Canceling DataGridView Selection Change

    I want to be able to cancel a row selection in a DataGridView under certain circumstances but there doesn't seem to be an event that allows me to catch the selection change and cancel it, as there is when a user tries to delete a row.  Am I missing something Hi Mark, I am having same problem but what i want is that once error occur say suppose user typed empty string for one of column value datagridview in below text box that i don't want user to change the row and also i want to retain the selection on the same row. currently i am setselectedrowcore event only. Can you tell me how do i achieve Thanks ...Show All

  • SQL Server Left Outer Join

    Hi All Dudes and Dudesses Please help... I've got Two tables, Problem and Breach, in DB Support. The main Table (Problem) has a primary key on field Number and I retrieve most of my data from this table but the other fields are irellevant. The Breach Table includes fields: Number & Keyword. I use an Left Outer Join to connect from Problem.Number to Breach.Number and retrieve the Breach.Keyword if any. If there's no records in Breach it still retrieves all the Problem.Numbers and that's great but when there's more than one Breach.Keyword for the Problem.Number I retrieve more than one record at this stage but I would only like to retr ...Show All

  • Visual Basic Can a vb.net application be run on a computer without vb.net installed?

    Hi guys, I have a question regarding the above topic title. Does anyone know of a program whereby it can convert vb.net into an application which others can run without having the need of installing vb.net on their computer Senorio case: I'm have a form, wanting a client from other part of the world to fill it in. The form is build in vb.net, he should be able to run the program and fill in the form without having to install vb.net. As vb.net is a space consuming program. **Maybe a program that is smaller can be used to run the application Regards, Melvin No VB.NET program requires VB.NEt to be installed. They all require that the ...Show All

  • Visual Studio Team System MSDN Team Suite Premium Subscription

    The Team Suite edition that comes in the premium edition shows that it includes all three of the individual team products.  Is it 3 separate products   Or is it a single product that includes all the functionality of the other 3 If we subscribe to this version, can we use the license to cover 3 users, 1 arch, 1 developer and 1 tester, and buy additional specific team editions for other users Thanks, thanks for the clarification.  i think i'm finally starting to understand all of this stuff. thanks, ...Show All

  • Visual Studio 2008 (Pre-release) textbox properties

    Hello how can you make when you tab to a textbox that the text in that textbox is automatically selected(highlighted) thanks in advance ...Show All

  • Software Development for Windows Vista Problems of header with DirectShow and D3D9

    Hello, I have a problem in my application, when I want to include dshow.h and d3d9.h The linker gives the following errors: [C++ Erreur] d3dtypes.h(113): E2238 Multiple declarations for '_D3DCOLORVALUE' [C++ Erreur] d3d9types.h(60): E2344 Earlier declaration of '_D3DCOLORVALUE' And the same messages for D3DRECT, D3DVECTOR, D3DMATRIX and a lot of others structures... What can I do in order to avoid this Thanks in advance Mike ...Show All

  • Windows Forms Dynamically loading MDIchild forms at runtime

    Hi all, I would like to create an application where i can easily add / update components (e.g. inventory component, customers component) to the application without modifying the main project. I tried to design the architecture based on a MDI-application where I define the components in MDIchilds. The MDI-parent is then the main project. Each MDI-child has to be registered in a database and subsequently based on a user's credentials, this MDI-child can be loaded. Also based on these credentials, the user menu is dynamically created. I am actually looking for a project similar to DotNetNuke, but then developed in Windows Forms... But th ...Show All

  • Visual Studio Custom Wizards and custom arguments

    I am working on a code generation recipe that requires some significant data collection. As such I've created a custom wizard page. The custom wizard populates an object hierarchy that I'd like to make available to my T4 template. I am making the following calls (as shown in the Custom Wizard Page instructions) when my data has been captured into my custom business object: IDictionaryService dictionaryService = GetService(typeof(IDictionaryService)) as IDictionaryService; dictionaryService.SetValue("DAFMapper", dafMapper); DAFMapper is my custom business object. Though the SetValue call appea ...Show All

  • Visual C# Checkbox Question

    Hello there. I have a problem. I have an OK button and a Checkbox right now. I want to make it so that when a user checks the CheckBox, the OK button is enabled. Is this possible hi, yes its possible you can try this private void checkBox1_CheckedChanged( object sender, EventArgs e) { if (checkBox1.Checked == true ) button1.Enabled = true ; else button1.Enabled = false ; } hope this helps ...Show All

  • Windows Forms Is there a group for Composite UI Blocks?

    I installed VS 2005 and trying to install CAB Dec/2005 version and it is failing during registration with "A netwrok error occurred while attempting to read from file c:\...\CompositeUI.msi" Does any one know how can I fix this problem Thanks. ...Show All

  • Windows Forms flickering form on resize with a background image.

    Hi, I have a background image to the form. The form is divided into two horizontal split containers the top container is fixed and both the containers are made transperent. i have a listview docked to fill in the container. when i resize the form i have a flickering issue and i see that the background image of form is being displayed during the time duration when the listview gets to the resized position of form resulting in a flickering. I have already applied the double buffering and set the styles as follows: SetStyle(ControlStyles.UserPaint, True ) SetStyle(ControlStyles.AllPaintingInWmPaint, True ) SetStyle(ControlStyles.Double ...Show All

  • .NET Development Developing Software to run on USB Thumb Drive

    Hi, How can we develop software that can run on USB Thumb Drive . There are software that can run on Thumb Drive like bharat   Oren Novotny wrote: It would be a pretty difficult thing to get .NET programs to run from a USB drive as they require OS level support (the .NET Runtime) to be available.  If .NET is already installed on the host, then you should be able to run most apps from a thumb drive (most apps won't care).  The trick is to have something if .NET is not installed already, and for this you have a couple options -- 1) Include the .NET Framework installer on the USB stic ...Show All

  • Visual Studio Team System When to use which requirement type

    Does anyone know of a good resource for defining the different types of requirements (scenario, functional, QOS, etc.) Hi Randy I was waiting for your blog entry on the explanation of various Requirement types. You said you will post it - have you post it already If yes, then please provide me the link. If no, then when you are planning to do that, please let us know. If you know some other references that can help me on this issue, please let me know. Thanks, Mamun ...Show All

  • SQL Server sql server 2005 auto number property

    Hello I have a table with two columns. First column is type and second column is ID. ID column must be unique and I want to give values in ascending order to the new records. For example first record's ID is 1 ,second one's is 2 ... How can I do this in sql server 2005 Hi, did you have a look at IDENTITY This generate an "auto-number" based on a start value and an increasing value. HTH; Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

©2008 Software Development Network