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

Software Development Network >> Yuriy Gudz's Q&A profile

Yuriy Gudz

Member List

Sathianantha Thilagar T
RDSC
wisner
David_A.
elala
abc4567
Gcannar
k_Prasad
mdg17
Matt Davis
KP99
Stevehat
David Hanneman
BillB07261993
mbar62
soud
Brian Shafer
LeoXue
TWS
TobsTec
Only Title

Yuriy Gudz's Q&A profile

  • Visual Basic Checking a running time in minutes and seconds against a standard time.

    I am trying to create a way to check a time placed in two text boxes against a standard time in minutes and seconds. Then display whether the user met that standard or not in a label. I can set everything up, and figure out the logic, but I am having a tough time with the syntax for setting the string values from the text boxes to time values of minutes and seconds.  This is for VB.net 2005 Help Scott Hi, It is not very clear as to what you are trying to set the values for - Is it the DateTime class Regards, Vikram ...Show All

  • SQL Server Inconsistent package failures

    I'm debugging my first SSIS package and is getting inconsistent results. The package does not always complete successfully. When the package does fail, it fails at different tasks that accquire database connections. Any of the following error message would show up: [Execute SQL Task] Error: Failed to acquire connection "FORGE.FMC". Connection may not be configured correctly or you may not have the right permissions on this connection. [OLE DB Destination [6374]] Error: The AcquireConnection method call to the connection manager "FORGE.FMC" failed with error code 0xC0202009. [Connection manager "F ...Show All

  • Visual J# knowing character representation for an 8-bit ASCII code

    i wanted to get the character representation of an 8-bit ASCII value. how can i do this are there any predefined Methods or Classes for doing this You might want to try out the following. class repro { public static void main() { //char s = 65; char s = '\u0041'; System.out.println(s); } } -Varun ...Show All

  • Windows Forms Small problem (MDI form, ToolStripContainer) but very urgent

       Hello to everyone,   I have a small problem but it is a very urgent one. I have an MDI form which contains a ToolStripContainer for ToolBars and some others. The problem is appearing when I am trying to open a new child form. I cannot see this ChildForm because it is behind the ToolStripContainer of the MDIForm. Can you give a solution to this    Thanks in advance and HAPPY NEW YEAR. There is a MdiClient control but it's not in the toolbox. Add it in code to the ToolStripContainer.ContentPanel.Controls collection and dock fill it. ...Show All

  • .NET Development Typed DataSet custom code...

    In ADO 2.0, I see that typed datasets allow you to add code in partial classes to the generated datasets..   I would like to add an event handler     public partial class vgm {         partial class LanguagesDataTable {             void TableNewRowHandler(object sender, DataTableNewRowEventArgs e)             {                 languagesRow row = (languagesRow) e.Row;      &nbs ...Show All

  • Visual Basic Published Setup requires assembly CrystalReports 10.2.3600.0 in Global Assembly Cache

    When running setup to install published program, the following message occurs: System Update Required: Unable to install or run the applicaiton.  The application requires that asssembly CrystalDecisions.CrystalReports.Engine Version 10.2.3600.0 be install in the Global Assembly Cache (GAC) first.  This version is listed in the references of the program and in my mind, be included in build.  How do I get by this error dude i figured it out.  in solution explorer right click on the app name, go to properties, references, click on unused references, remove any that are in there, publish,&nbs ...Show All

  • SQL Server Need call a DB function in the middle of the dataflow process

    All, I have to use a field that is calculated in a data flow process and call a database function (return a value) to do anther calculation; then return a value back to the data flow. I tried OLD DB Command but I cannot configure to return a value back to the same data flow. If there any transformations that can call a DB function and get a value from the function in the middle of the data flow process Need more detailed instruction. The data flow is Like: SourceDB a New_filed 1 = field1 + filed2 a New_filed 2= DB_function (New_filed 1) a Destination DB Thanks in Advance Jessie ...Show All

  • Software Development for Windows Vista Basic questions: Save state, users control, hold task...

    Hi. I have some experience in workflow and .Net. I worked with W4 (a workflow suite) and asp.Net for nearly 7 month and now i'm planing on developing a new workflow aplication using Windows Workflow Foundation. The problem is the only experience I have in workflow is about W4, so I'm loosing myself becouse I still have some kind of "W4 approach" to the project. I will try to make my question as clear as posible: -How do i manage users of the workflow In W4 I can set roles and asign a task to a role so only members of that role will recieve that task. But I'm completely lost when trying to do that in Windows Wor ...Show All

  • Visual Studio Express Editions Append to XML file

    I'm trying to make an application to keep track of recipes, but I can't figure out how to append to an XML file.  I've searched online, but I'm not coming up with the answer.  Someone suggested a dataset, but I can't figure out how to use that to append to an XML file.  I'll show an example of the code and what the XML file currently looks like. Private Sub Save_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click Dim xtwcurrent As Xml.XmlTextWriter Dim lines As String () = Directions.Lines Dim clines As String () = Comments.Lines xtwcurrent = New Xml ...Show All

  • Visual Basic Build Complete Notification Sounds

    I just upgraded to Visual Studio 2005 from VS6.0  and I cannot find any documentation for Visual Studio sounds schemes.  In VS6.0 I could have seperate sounds for "BuildComplete", "BuildError", and "BuildWarning".  In Visual Studio I can only create a sound for VS_BreakpointHit  Are any of the others available The three I mentioned in my post BuildComplete, BuildWarrning, and BuildError.  I found I didn't need notification for every warning or error durning the build, but an all done sound was very usefull.  Some sounds when doing a "Find in Files" would be nice as well. &nb ...Show All

  • Visual C# 'Couldn't find specified module.', 'FileNotFoundException' when declaring class

    When I declare a class from a referenced DLL (TrueVision3D.dll), Visual C# (2005 Express) throws a FileNotFoundException, containing the description: ' Couldn't find specified module. (Exception from HRESULT: 0x8007007E) '. The strange thing is this source code and DLL worked before, but after I reinstalled Windows XP it doesn't work anymore. All required dependencies are there in the right place -already checked that. Also: it only appears when debugging. When I run the Release executable, it just runs. Little sample code: static void Main(string[] args) { TrueVision3D.TVEngine engine; << this line throws the actual error. Sy ...Show All

  • Visual Studio 2008 (Pre-release) Anonymous Structs

    Is c# 3.0 going to support anonymous structs ever. like: struct { int ; int ;} bgHome = new {42,21}; If not why not It seems like a great alternative to always goin the var route. If you are going to support it, will you also provide support for using them as return types. Giving us this ability allows us to expicitly define our anonymous types upfront, hence we can pass them and arguments and return them from methods unlike var. I guess I dont understand why this was not provided before var, since this approach is much more inline with strong typing that var is. ...Show All

  • Windows Forms Which Language and Why

    Let's Open the Floor for this Discussion: Which language is best for an intranet distributed application, using Windows forms, and why I am about to build one with multiple features from different intranets within our office. Thanks for your input! Gary ----------------------------------------------------------------------------------- Not sure but I don't think a class in VB.NET can i ...Show All

  • Visual Studio Team System Several issues with TeamBuild, July CTP

    I'm using the July CTP and have setup the application tier to be the build server. During the configuration of TeamBuild, I ran across the following: Since Visual Studio also guards the Bin folder in Web projects, any assemblies in that directory are added to Source Control. When these assemblies are actually project references, TeamBuild fails (MSB4126) to copy the output of these projects to the Bin directory (Access denied, files are read-only). I had to override the BeforeCompile target to remove the write-protection from these files to work around this. CodeAnalysis fails (CA00058) because Microsoft.VisualStudio.QualityTools.Resource ...Show All

  • Visual Studio Express Editions GetDirectories problem/error

    I get the following error: The CLR has been unable to transition from COM context 0x1a01d0 to COM context 0x1a0340 for 60 seconds. The thread that owns the destination context/apartment is most likely either doing a non pumping wait or processing a very long running operation without pumping Windows messages. This situation generally has a negative performance impact and may even lead to the application becoming non responsive or memory usage accumulating continually over time. To avoid this problem, all single threaded apartment (STA) threads should use pumping wait primitives (such as CoWaitForMultipleHandles) and routinely pump message ...Show All

©2008 Software Development Network