Standard EXE Template ?

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


ADVERTISEMENT

Create A Windows Service In Studio 2008 Standard (No Template)?

Dec 7, 2009

I want to create a Windows Service using VB.Net, but in VS2008 Standard, you don't seem to get the "Windows Service" template I've used before.

What's the best way of creating such a service, without resorting to using the C++ template?

View 2 Replies

Save Data In A Database Table While At The Same Time Sending Standard Template Email

Jun 9, 2012

I haven't done any VB coding since school (15 years ago) but currently have a need to run what "sounds" a fairly simple app at work. I'm hoping some of you might be able to give me some pointers as to whether or not my idea is possible, and if it is, how best to approach it.

I work for a company where we send a number of standard emails to potential clients asking them to contribute to our magazine . if no response we then send a number of follow up emails. each and every time I send a new email to a new prospect I'm editing one of our template emails, putting their name and email address into outlook and manually sending emails. Then for every reminder I'm going back into outlook, clicking reply all and then c&p'ing our second or third reminder emails in each and every time. needless to say at least 2-3 hours of my day are spent editing and resending the same emails on outlook.

[Code]....

View 1 Replies

Can't Capture Message Of Standard Output (Stdout) And Standard Error

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

Add Standard Button To Toolstrip / Make Toolstripbutton As Standard?

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

VS 2008 : Create Template At Runtime And Save It The Template With Name?

Aug 20, 2011

In VB.NET,I want to create template at runtime and save it the template with name. for ex : Administrator design a page with 5 fields like using firstname, lastname, dob,nationality and job. He want to assign this page to the user with some restriction like user1 need to enter the all the fields and save it the forms as user1profile, but user2 need to enter only firstname and lastname and save it as user2profile.(in features, he can remove the fields from the form).

View 1 Replies

C# - Using Types In A T4 Template That Exist In The Same Project As The Template?

Aug 4, 2010

I'm working on my first T4 code generation tool to add some Stored Procedure helper code to my project. I've created custom types (e.g. StoredProcedure and StoredProcedureParameter to help with my code generation and have included the assembly and namespace references in my code:

<#@ template debug="false" hostspecific="false" language="VB" #>
<#@ output extension=".generated.vb" #>
<#@ assembly name="$(TargetPath)" #>
<#@ import namespace="StoredProcCodeGenerator" #>

This allows me to use my custom types in my T4 template code. However, because my custom types exist in the same project as the T4 template code, I can't recompile my project once I run the template code without restarting Visual Studio. This isn't very much fun.

I read a great article that addresses this exact issue by using the T4 Toolbox, but it's not working. Either I'm implementing the VolatileAssembly directive wrong or the T4 toolbox simply didn't get installed. I'm not sure that the toolbox got installed correctly (I'm using VS 2010 on Win XP).

View 3 Replies

Get The Standard BackColor Of A Standard TabPage?

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

IDE :: Differences Standard - Professional - Team Suite - Team Foundation Server Standard & Team Foundation Server WorkGroup Edition

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

Which VB Template To Use

Aug 8, 2011

I am just starting out on VB so this is a very elementary question. If I want parse a file and store results in a csv format, which template do I use? Console Application? Empty Project?

View 1 Replies

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

Add Windows CE Template?

Nov 9, 2009

I would like to have windows CE devices available and am unable to see how to select that option.

Under tools > options > device tools - Windows CE device is listed.

I'm new to this and unsure how to do this. I created a project, but it's not right for windows ce and does not deploy.

Do I need a windows ce template or how can it be selected under new project?

View 3 Replies

Best Way To Print A Template

Mar 22, 2011

I have been working on a inventory management system for a friend of mine. It has to be able to keep track of incoming and outgoing stock from his business.

I have already got all the programing done, working great! But now it has got to the stage, that I need the program to print out invoices from the program. I have the program extract certain records from an attached database, and will most probably pass them into a variable in the function.

NOW... I have a template of the tax invoice page setup in MS word. I was going to make a macro in word that will automatically fill in all the "static" information, but I was wondering if passing the variables from the main program into the word macro is: 1. possible and 2. the best way of doing this.

I am still a noob when it comes to VB so please excuse the next question, but is there a way to set up a page to be printed including tables, logo, different font styles.. etc within the VB program?

View 5 Replies

Excel Without A Template?

Apr 18, 2010

I managed to export my data to an excel file, by using a excel template that I created beforehand. But I'd rather have that the excel file will be create when I press the button instead going to my file.

Dim ApExcel As Object
ApExcel = CreateObject("Excel.application")
ApExcel.Visible = True

[Code]....

View 2 Replies

Template For A Web Application?

Nov 21, 2009

I'm making a signup application to go along with a website I'm making with HTML. I've already made one version of it with a WPF Browser application template, but it's not working the way I'd like it to. Is this the template I should be using or should I make it in the generic windows form application?

View 1 Replies

What VS Template Should I Use Just For VB Code

Jan 31, 2011

I am using Visual Studio 2008 Express, and I was wonder which Visual Studio Installed Template I should use just to execute VB code? Previously, I generated a project using Window Form template with a button to start, and it has references which made my .exe not to execute in any directory structure. Someone indicated that it must not have other absolute references and I think this was using absolute references? All I need to is to execute VB Code. What template would you suggest? Where do I put the start of the VB program to execute at? Since I don't need a form, there is no on event for me?

View 6 Replies

.NET Read Standard Output?

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

C# - Update The Code According To Standard?

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

Get Default/standard Program?

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

How To Access Standard Icons

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

How To Convert Standard To Encoded Hex

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

Paging With Standard .net 2.0 Gridview

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

Redirect The Standard I/O Of A Process?

Apr 10, 2009

How do I redirect the standard I/O of a process?

View 2 Replies

Redirecting The Standard Output?

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

Remove VB Net Standard 2002?

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

Specifying Standard View In Arguments?

Oct 28, 2009

How can I start a new process (calc.exe) and specify Standard view in the arguments?

View 9 Replies

Use Standard Windows Icons?

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

VS 2008 : Using Non Standard Colours In DGV?

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

VS 2008 How To Prepare A Standard Exe

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

VS 2010 Mean And Standard Deviation?

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







Copyrights 2005-15 www.BigResource.com, All rights reserved