How To Develop A Standard C#
Oct 5, 2009
So, I don't want this to get into a flame war between C# and VB.NET developers. This is purely from a standpoint of a development department going forward. We've been a VB.NET company for years, but that was mainly due to who we've hired. That requirement has fallen off the wayside as of late, as we've pulled in 2 guys who specialize in C#. I used to be a C++/C# guy before converting to VB.NET for this company.
So, to everyone who has to deal with this whether on a hiring basis or a maintainability basis: how do you handle standardizing languages of choice going forward? I'm inclined to make a push for C#, as that'll make 3 solid C# developers here. But just curious what everyone's thoughts on this are.
View 12 Replies
ADVERTISEMENT
Dec 15, 2011
I build program to launch application(launch application can as local profile or can as network credentials) using Advapi32 "Create Process WithLogonW".but I got the problem, I can't capture message of standard output(Stdout) and Standard Error(stderr).could everyone help me how to capture message and the code?
View 1 Replies
May 27, 2009
I usually use standard button and do the settings like causevalidation etc if required.
i decided to use toolstrip and inserted some buttons but end up that it doesn't do the validation for control and also doesn't call leave event of textbox control.
so my question is, anyway to use regular button functionality for toolstripbutton or there is a way to add regular button on toolstrip.
View 4 Replies
Mar 11, 2009
I am trying to add a TabPage containing a UserControl to a TabControl at runtime, because the number of TabPages to add are determined at runtime.
The UserControl (objDataInfo) is just two Textboxes, two labels and two Radiobuttons, nothing too exciting...
The TextBoxes have their Anchor properties set to Left, Up, Right so they scale with the width of the usercontrol.
The TabPages are added in the constructor of the form, which takes the number of tabpages to create (n) as an argument:
vb.net
Dim cList As List(Of objDataInfo)
Public Sub New(ByVal n As Integer)
[Code]....
So... How can I get the standard BackColor of a standard TabPage?
(I tried leaving out the usercontrol all-together, but the TabPage still has a gray background...)
View 9 Replies
Jul 15, 2009
1) Can anyone post a link or tell me the differences between these versions of VISUAL STUDIO please? >>
Standard, Professional, Team Suite, Team Foundation Server Standard & Team Foundation Server WorkGroup Edition
2) I imagine Team Foundation Server WorkGroup Edition is the most expensive and therefore has the most functionality?
3) Are there any others I have not mentioned?
View 4 Replies
Jul 24, 2008
On creating a new project in Visual Basic 2008 Express Edition (Version 9), where you get to choose a template, I can't find Standard EXE anywhere.
View 5 Replies
Jun 30, 2011
From my application I need to run a command and parse the output. I can do this with no problem but I don't want the command to be displayed. I hoped WindowStyle = ProcessWindowStyle.Hidden would work but it doesn't. Take the sample code below for example. It works fine but the command window still visibly opens and closes very quickly and I need it to never show its ugly face. How can I fix this?
[Code]...
View 3 Replies
Feb 24, 2010
Using VB.Net, C#.Net and SQL Server.Windows Application.I want to separate a code for 3 Tier Architecture(Presentation Layer, Data Access Layer, Business Logic Layer).
Code.
Form_Load
Dim cmd As New SqlCommand
Dim ada As New SqlDataAdapter
Dim ds As New DataSet
[code]...
Above code is working, But i want to do a same process by using 3 Tier Architecture.How to separate my code according to 3 tier Architecture.
View 2 Replies
Nov 4, 2010
It�s there a way in VB to get the dominant Webbrowser, antivriusprogram, firewall, mailprogram or other things that can be set as default?!
I have search on the internet but probobly not the right refrences, with no success?
View 2 Replies
Jan 20, 2007
How to access standard icons, like the "back", "forward", open and stuff? i want to put then in my menus, the save etc can be accessed by inserting standard items but the IE "back"? any eternal free sites?
View 5 Replies
Sep 3, 2011
I have an example of standard text (in Hex form) in a specific encoding (selected by the user). And I have a weirdly encoded text which is in the same encoding but a little different. How do I convert the Standard to the encoded Hex?
Cyrillic (ISO-8859-5) Example:
## 12 91 BB BE BA B8 C0 2E 20 CD BA C0 B0 BD B0 20 B8 20 BA BB B0 B2 2E <- ALTERNATIVE
B1 DB DE DA D8 E0 2E 20 ED DA E0 D0 DD D0 20 D8 20 DA DB D0 D2 2E <- STANDARD
Diff. from Standard (in Decimal): -32
Hebrew Visual (ISO-8859-8) Example:
## 1C 0B E0 E2 D9 DC EA 20 DE E1 DA 20 D5 DE E7 E9 D9 DD <- ALTERNATIVE
F0 F2 E9 EC FA 20 EE F1 EA 20 E5 EE F7 F9 E9 ED <- STANDARD
Diff. from Standard (in Decimal): -16
View 3 Replies
Apr 3, 2009
I am using a standart .net 2.0 Gridview which uses an XMLDatasource to populate the Grid. The Data property of the XMLDatasource is set dynamically which allows the gridview to change based on input.All this works fine however I am having problems with paging.I have set the AllowPaging Property to "true" and set the PageSize Property to "10". The GridView populates fine the first time around showing the first 10 records and the number of pages as hyperlinks at the bottom, BUT when i try to click on any of the page numbers to view them a message box pops up saying "Object reference not set to an instance of an object"..[code]
View 3 Replies
Apr 10, 2009
How do I redirect the standard I/O of a process?
View 2 Replies
Jun 16, 2010
I am having trouble redirecting standardoutput and standarderror from a command line program that dumps a lot of numbers to the screen. I've looked through a lot of similar posts and think my code matches what it should be doing (asynchronous reading of the data with appropriate invokes for writing to the log text box) but it still just hangs the application until my p.WaitForExit times out. Once it times out and I kill the process, a chunk (but not all) of the data is written to the textbox in from the OutputDataReceived event handler. Any ideas what is going on here? I've seen some posts regarding buffer size, but that apparently is fixed (i.e. I can set a buffer size of 1 and receive every char). Below is my function to execute the process and two relevant event handlers.
Private Function ExecuteWallGen() As Boolean
Dim bResult As Boolean = False
Dim szExec = Me.ExecutablePath & Me.WallGenExecutable
[code]...
View 4 Replies
Jul 31, 2010
I need to remove VB .Net Standard 2002 installation from a XP SP3 laptop I used for development. Unfortunately I threw away the installation disk which came with a VB MSPress Manual. I have read and followed the advice in KB Articles 312383, 320114 and 319714 with no success. The MSIs would not even run in admin mode. Has anyone removed this product without the installation disk? Is there a source for a detailed list of the files and folders I must manually remove?
View 1 Replies
Oct 28, 2009
How can I start a new process (calc.exe) and specify Standard view in the arguments?
View 9 Replies
Aug 20, 2009
In VS.Net 2008, if you choose a new form with the Explorer template, the form is preloaded with a menu strip, and all the items have the familar save, print, open, etc, icons/bitmaps. I would like to use these icons in other forms, but the form does not appear to reveal the location of these icons or where they came from. Does anyone know where they are? If I find them and point to them, can I be assured that these icons are in the same place on any computer (or do I need to embed them in the exe)?
View 2 Replies
Sep 6, 2009
I have a colour that is not predefined and I want to change the selectionbackcolor in a DGV. In the DGV it is defined as 255,255,192.
RoomNamesDGV.DefaultCellStyle.SelectionBackColor = " a colour "
How do I set the colour using 255,255,192.I need to do this as I have 2 DGV side by side and I want to show where the focus lies.
View 3 Replies
Jul 31, 2009
i have prepared a visual basic project which is completely ready. I need to deliver it to the client in the form of an exe. , since this is my first project i do not have any idea how to prepare a standard exe.if i started to publish it says signers certificate not valid. how to rectify this problem.Im using Visual studio 2008.
View 1 Replies
Dec 14, 2011
I seem to figure out why my code is not for finding mean and st dev because the code i wrote for finding the sum is working and mean = sum/N so im confused i think i might have the wrong formula/code for standard deviation tho..i just found it online..
Private Sub btnDisplayMean_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDisplayMean.Click
Dim Mean As Integer
Dim Sum As Integer
For J = 0 To MyArray.Count - 1
[Code]...
View 4 Replies
Jun 22, 2011
I am new to this forum and I would like some help from my respected seniors.I am trying to develop a ASP.Net Web Application using C# or VB. First of all prefer me whether C# would be easy or VB for the following scenario:Below are the requirements:
1. For All Users:
Text-chat feature will allow users to chat with the available online users.
2. For Registered User:Allow users to create new folders and sub-folders, to store (upload) files.Allow users to perform move/copy/delete operations on folders and files. The percentage of storage capacity remaining and used should be displayed on the top. Automatic versioning system will record the version/revision information when a file is replaced/overwritten Team management feature will allow users to work in teams (by inviting other existing registered users). The activities of the team include access to the password protected area for the team, uploading files, commenting on the uploaded files (discussion), polls, automatic and manual reminders to the team members.
3. For Administrator:
Approve/Reject new team requests; update/delete existing teams.View all the files and folders uploaded on the server.Allow to perform delete operation on any existing file/folder existing on the server.Delete account for any registered user.Define and Edit storage capacity and other limits such as Maximum file size allowed for uploading.
Queries:
1) As, every user will have his/her own PERSONAL profile page then how will the system redirect the user to his/her PERSONAL profile page after hitting Login?
2) How this chatting feature can be developed?
3) How this storage capacity would be assigned overall?
4) How Administrator will manage all this?
I am totally confused.I have developed SRS as well. but in coding I am totally stuck as I am not so good in coding. I thought Visual Studio 2010 would help me effectively in this case, and I am trying but couldn't find any way for this to be done.
View 4 Replies
Mar 19, 2012
I need to develop some apps that will be accessed from both PC and macs. Can this be done with visual Studio 2010?
View 2 Replies
Dec 29, 2010
Is there any way to develop for MonoTouch using VB.NET, rather than C#?
View 2 Replies
Aug 9, 2011
Want to develop POS program in visual basic?
View 2 Replies
Mar 14, 2011
I am underway to develop a VB.Net compiler using visual studio 2005, but so far I am not aware on how to go about, regarding to what are the key requirements or skills required for developing a compiler.
View 3 Replies
Dec 15, 2010
i need to develop a plugin to evaluate web interfaces. Can someone guide me about how to develop plugin in vb 2008 express.
View 4 Replies
Jan 20, 2010
I develop an VB application unter XP with VS 2003 (.NET 1.1).
Is it possible to run it on a system with Windows 7 (x64) or do i have to change my programming environment ???
The code itself is in a directory on a windwos server and the workstation has only
a link to the EXE-file server01programsigiksigik.exe. until VISTA, it worked, if i call .net configuration wizard and give "full trust" to "intranet".
can i install .net on a pc with windows 7 ?
View 3 Replies
Mar 16, 2011
I know this is a stupid question maybe, but what is the naming standard for generics?Of t or Of TEntity or Of..it doesn't really matter?I see IQueryable(Of T) but then DBSet(Of TEntity).
View 3 Replies
Dec 18, 2010
I am trying to redirect the output of a c program which generates output in the console. I can redirect the output once the process exits. But is there the way to redirect the output as and when there is some output in the shell window? I require this to make it understandable that the program is running and since different steps of the c code may take, say 10-15 minutes to run.
View 1 Replies
Jan 29, 2012
I've run into an issue with Access Key in either Visual Basic or C#... also happens whether on my windows 7 64 but laptop or my Windows Vista 32 bit laptop - in Visual Studio 2010 professional... I create an Access Key (for example E&xit)... while the underline under the x shows up in the development area, it does NOT show up when I run the application NOR does it work... for example, press alt-x does not run the code associated with the exit (nor does a break into that code show it gets into that code).When I try it in a menu, it is a little different at first the underline under the access key does not show up but then after I access something by hand, it sometimes shows up and is usable.
View 1 Replies