VeeBeeginnerr's Q&A profile
.NET Development c# form based app best architecture
Hi all, I'm design a windows forms application and i'm having some problems structuring it. The application itself will block a computer until a person gives a username and a password, after that it hides itself and keeps a small icon on taskbar. Lots of things will be happening meanwhile, syncs and comms with server, forms popping-up, and timers firing. My question is, what of the following approaches is the best one: 1. A c ...Show All
.NET Development howto modify a label's/textboxe's value that is a membr of a form in the windows application project from a web service project?
i want to ask "how to modify a label's/textboxe's value that is a member of a form in the windows application project from a web service project " In my solution there are three projects! one of them is ASP.NET web service, other is classLibrary and another is a windows application... (build order 1.win app, 2.classLib,3.WebServ). firstly i create then show a login form(name: loginForm) that is in my win app project. then when user lo ...Show All
Visual Studio Express Editions Registration benefits
I just read the announcement about the benefits of registration. I already had registered so of course it didn't let me register again. Is there a way to still get the downloads or should I now know never to register an MS product until they have some registration benefits announced If you are registered you can take part of the benefits. Check the registration benefit portal. http://connect.microsoft.com ...Show All
.NET Development Sending a DataTable over TCP \ IP
Hi, I'm writing an application in which a client is able to transfer the menu of the restaurant with images of each drink, food, e.t.c over TCP \ IP from the server machine. Remoting and serializing are easy to use but thye use too much bandwidth. Which is the best ( most efficient ) way to transfer whole menu as fast as ( I do not mean using UDP for the "fast" keyword ) possible There is a ReadXml and a WriteXml meth ...Show All
Visual C# How uses the recursion arithmetic to find the maximum value and the minimum value from an array ?
How uses the recursion arithmetic to find the maximum value and the minimum value from an array Method that finds maximum value in int array: static int maximum(int[] arr, int length) { int tmp; if (length == 1) return arr[length]; tmp = maximum(arr, length - 1); if (arr[length] > tmp) return arr[length]; return tmp; } Method that finds minimum value in int array: ...Show All
SQL Server Trying to create a Maintenance Plan through SQL Management Studio kicks SSL error
SQL Server 2005 Beta 2, fresh install onto Server 2003. When I try to create a new maintenance plan, it throws the following error: TITLE: Microsoft SQL Server Management Studio ---------------------------------------- Exception has been thrown by the target of an invocation. (mscorlib) ---------------------------------------- ADDITIONAL INFORMATION: An OLE DB error 0x80004005 ([DBNETLIB][ConnectionOpen (SECDoClientHandshake()).]SSL Se ...Show All
SQL Server error of Initializing SQL Server Reconciler has failed using SQL Server CE 2.0
hi, i'm using SQL Server CE 2.0 in my application. When i try to synchronize my database by calling replicator.Synchronize(); errors : Initializing SQL Server Reconciler has failed. process could not connect to Distributor SQL Server does not exists and access denied. what i did right now is i try to register regsvr32 "C:\Program Files\Microsoft SQL Server CE 2.0\Server\sscerp20.dll" regsvr32 "C:\Labs\NorthwindTempFiles\sscesa20 ...Show All
SQL Server Vista and SS Management Studio Install Problems
Hi, I'm running the Vista Beta 2 (x64) and am trying to install SSMS. This is more or less a clean Vista install (had VS Web Express and SQL Server Express installed but those have been uninstalled). The SSMS install comes up ok and I can enter my name and company. It chugs along for a while and then fails. This is what is in the event log: Product: Microsoft SQL Server Management Studio Express -- The installer has encountered an unexpect ...Show All
Visual Studio Team System New users are unable to see documents/reports in TFS Explorer :(
Hi folks, i've successfully created a new MS Agile TFS Project. i can add stuff, play around, etc. When i add a user from our active directory to the project admin group, the user cannot connect to the share point site or see documents and reports in the tfs explorer. when i add the user to the share point site via Site Settings -> Manage Users, the user can now see documents in tfs explorer and connect to the share point site. He st ...Show All
Visual FoxPro How to set automatically start project folder?
Hi! I add a picture, in my project, but, when I change my project directory, or when I rename my folder, fox, asked me if I want to change the home directory of my project! I choose yes, and my project run correctly, but, it can't find my picture! I must write getdir( ) at the beginning, to set my start folder, if I want that the project run correctly with my picture! I try the curdir( ) or the home( ) but, this don't recognize correctly my p ...Show All
Visual C# How to get <summary> <remark>, etc desriptions to display in dlls
Hi, We are a developing an API. Currently the the descriptions are surrounded by <summary> </summary> tags. We compiled and the user has installed the dlls on to their machine. They added a reference to the API.dll and can use the methods but the only thing that displays in the intellisense are the methods headers. How do we get the descriptions to display. Are we using the wrong tag Thanks. ...Show All
Visual Studio Express Editions Windows service application in Visual C# Express
I'm trying to build a simple Windows Service application in Visual C# Express. I simply can't get started. The documentation mentions a NON -existent template, which makes it kind of hard. However, I can see there's a 'ServiceBase' item in the toolbox and I have a feeling that that's the way to go, but there's no documentation telling how to use that. If I start a Windows Form application, I can drop this 'ServiceBase' component on ...Show All
Visual C++ Browse Information bugs
Sometimes the browse information is wrong, usually when you modify things from outside the enviorment or make massive changes (replace in files for example). The question is: how can I rebuild this information . Another question i have: is there a way to use the browse information of another project/solution . I have problems sometimes with big dlls, when you click "go to definition" it actually goes to the declaration. I would be r ...Show All
Windows Forms How to read data from previously saved PropertyBag storage?
Hi everybody! How to read data in .net from previously saved PropertyBag file Lets say that somebody made such file in VB6 app and after that I need to load this data to .net app. Thanks, Ilya ...Show All
Windows Forms About arquitecture
My scenario is the next: I deploy my application to my clients with ClickOnce, but my clients can modify the code of the application (adding new attributes to the classes), and can personalize the user interface. How I can deploy a new version of my application to my clients without breaking the changes of my clients I need help. from what you've described, you can't, unless you save all the users configs ...Show All
