Fyodor Golos's Q&A profile
Windows Forms Anything WoW you lately
just interested in the boundries of the system and what they can do. some interesting ideas if anyone's willing to share some trait secrets. Also when calling the Scan() frunction I'm detecting non existent Organisms. My guys will just start attaching or eating stuff that's not there. it's throwing a nonVisable error but I'm testing for IsAlive. Any Ideas ...Show All
Visual Basic Urgent !!!!!!!!!!!! Services Status...
Hi All, Now again I stuck at an interesting point... I want to know that specified service is running or not... Like if I give the name of the service than I want to know that its running or not or hanged or stopped... STATUS Please Help me out of this probs. As Nat said, these forums are not for VB6 questions. VB6 is out of date, obsolete and unsupported. You should specify that you're using VB6 in whatever forum you find to ask this question, because most people would assume VB.NET if you just say VB, VB.NET is in it's third release now. Additionally, you may consider not putting things like 'urgent' in your header wherever y ...Show All
Visual J# "Interface implemented twice" 2.0 compiler bug?
Given this file (Stuff.js): public class MyClass { public static interface MyInterface { public void DoThingA(); } } public class MyOtherClass { public static interface MyInterface { public void DoThingB(); } } public class MyImplementer implements MyClass.MyInterface, MyOtherClass.MyInterface { public void DoThingA() {}; public void DoThingB() {}; public static void main(String[] args) {} } Doesn't compile in 2.0 J#: C:\TEMP\vjs>vjc Stuff.js Microsoft Visual J# (R) Compiler version 8.0.50727.42 for Microsoft (R) .NET Framework version 2.0.50727 Copyright (C) Microsoft Corp 2000-2002. All rig ...Show All
.NET Development Web service response data
Hi all, I need to know howthe web service return it's response to the client. I mean, is the data is returned sequentially or it returned in "Chunks". The reason I ask, the client is a mobile witch parse the webservice response. sometimes I get an exception from the XML parser, something like ("unexpected end of stream"). I read that the reason maybe because of the webservice response, it sends the data in "chunks" so the parser cann't read the whole data for one time. Is there something like that can I determine how the wenservice returrn it's data Any ideas. Thanks in advance... ...Show All
Visual Basic class containing another class
Hi, I'm new to OOP and am having problems creating a class that contains a collection of items from another class. ie I have a LabelTemplate class that represents a label to printed from a Thermal label printer. My LabelTemplate class has a set of properties like label size, labelName,barcode string etc.I also have a class, "PrintFields", that contains properties for a dynamic number of different items to be printed on the label. I want to have this class contain and access a collection of PrintField objects. Any ideas Regards Kev Hi, In your getFldValue( ) function, what I meant by ...Show All
Visual C# editing resource files
I am using a ResourceManager to retrieve values from a .resource file. I would like to be able to update the values in the file from within the application. Can this be done How Thanks. Use the Resource editor Lutz Roeder has writen, you can find it here . ...Show All
Windows Forms DataGridView/DateTimePicker sample code not working?
It's probably just me, but I think the sample MSDN code in How to: Host Controls in Windows Forms DataGridView Cells still is not working. When copied literally, the TimeCell.InitializeEditingControl method throws an ArgumentOutOfRangeException on line: ctl.Value = CType( Me .Value, DateTime) While the rowIndex parameter is correct at this point, Me.rowIndex is -1, and hence Me.Value is not initialized ( ) Changing the line into: ctl.Value = CType( Me .GetValue(rowIndex), DateTime) works better for me. hth, flip ...Show All
Visual Studio Tools for Office newbie in smart clients
Hello friends i am newbie in smart clients application and intrested to learn this technology..right now i am not having idea that what kind of applications could be smart client,means,i coudn`t find examples of it(except Outlook) can anyone give me some useful realworld examples of Smart clients Applications Also,if i intend to make Smart applications in Office2003,what kind of applications could I make,kindly guide me and also i didnt fnid the URL to download VSOffice tools for buildinhg smart client applications in VS.NET2003 Thanks -adnan Hi Adnan: Here are some resources you can tap for information on VSTO 2005. I ho ...Show All
Visual Studio Can't open Class Designer
When I click in the Porject-Explorer on a Form e.g. Form1.vb and select "View in Diagram" than a new file "ClassDiaram1.cd" is created but, no Class Designer is opend and I get the Error-Message: "There is no editor available for 'C:\....\ClassDiagram1.cd. Make sure the application for the file type (.cd) is installed. So which is the application Why does the Visual Studio 2005 Beta1 Setip don't register this application Or Do I have to install the complete package (I only installed the Visual Basic things but not C++,C# J++). If I select the fil ClassDiagram1.cd in the Project Explorer and select "Open With..." Menu item a ...Show All
Windows Forms Windows Form Size Problem!
hi, guys, I have a small problem, but don't know how to fix it. I have a windows form, and the size is 916*600, and I want it always keeps it in this size. So I set both MaxSize and MinSize to this value. It is displayed perfectly in 1024*768, but in 800*600, when it comes up, the size is 800*600, not 916*600. Is this because the max screen size is 800 in 800*600 mode I tried to call this.Size = new Size(912, 600) in FormLoad(), but it does not help. So, how to keep the window to 916*600 even in 800*600 mode Thanks, It only seems to do that to me when I try to maximize the form. Even on the hig ...Show All
SQL Server Model Information
Is it possible to get hold of the fit parameters out of the prediction models in order to use them without going back to the database. E.g. With the linear fit model, y = ax + b, is it possible to get hold of a and b This way I could use the fit equation and parameters directly within my C# code, rather than making many costly connections back to the database. Ok, so I've installed the generic viewer and I can see that some values_types are continuous, some coefficients etc. I can see how the linear fit equation can be built up from this. I would still like to create an equation from the ...Show All
Visual FoxPro How to skin Visual Foxpro Forms & Controls
Hi, How i skin my visual foxpro application I am tring vfpskin 3.0 but it can't skin commandgroup,shape & pageframe. Please tell me any other solution. Thanks I am tring vfpskin 3.0 but it can't skin commandgroup,shape & pageframe You may want to contact the developer of the skins, Pablo Molina, at pablo@vfpskin.com.ar ...Show All
Visual C# Try Catch Finally
Hi Does Try,Catch,Finally block slow down application's performance Why Where I can find the documentations or EBook about C# 2.0 Thanks. Yes, it absolutely slows it down. You should not use it to control program flow, only to catch exceptional circumstances, such as errors. amazon.com has plenty of books on C# 2.0, some of the Microsoft published ones are terrific. ...Show All
Visual C# Compact IDE C# beta 2 install error
When I run setup I get error "2705" package error. I have downloaded for a second time and get the same error. What is wrong Report a bug on the Microsoft Product Feedback Center . ...Show All
.NET Development There is already an open DataReader associated with this Command which must be closed first.
I have a rather large ASP-NET-2.0 project that I've been developing for some time. I'm using System.Data.Common classes for all of my data access, and SQL-2005 as my provider. Up to and including Beta-2, everything was working just fine and dandy. Then, with the release of RC1, I suddenly started to get the following error:: There is already an open DataReader associated with this Command which must be closed first. This totally threw me, but I dutifuly started to trace all of my connections & readers to make sure I was closing & disposing of them properly, and all appears to be correct. After a bunch of tedious and very time-co ...Show All
