Survey - Checklist - Status Report - FEED Template

Sep 14, 2009

I am planning a three form checklist/status report for a FEED template. Each form will address a different FEL. FEL1 is really a simple checklist and is easily dealt with using the Windows Form. My question is there a better structure to handle the more complex FEL2 and FEL3, like the web page? FEL2 will have approximately 20 questions and FEL3 will have about 50. I am still undecided whether to use radio buttons (radio button list, which I do not understand yet) or text boxes that will take a value between 0 and 10. I may weight the questions to give an overall percent complete that I can show on the progress bar or some such. If there is a better structure than the Windows form, can it and the Windows Form be linked? If not, will abandon efforts to complete current FEL1. Conceptually, you cannot start FEL2 until you have completed FEL1, and FEL3 until FEL2 is complete.

Public Class FrmFEL1
Dim PctCmpt As New ProgressBar()

Private Sub CboxChrtr_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CboxChrtr.CheckedChanged

[CODE]...

This is what I have so far. It is no working at all. No values appear when boxes checked. Would like a value for each checkbox that can be added in in order to get a total. That total to be added to the percent complete (TxFEL1).

View 13 Replies


ADVERTISEMENT

Create A Feed Back Survey?

Feb 22, 2011

I have a user control form with two text boxs, three radio buttons, and a text box for a description, but i need help trying to lik together and when the user hits the send button it sends it to a email,

View 5 Replies

Change The Printers Setting To Use The Manual Feed Tray Instead Of The Auto Feed

Oct 14, 2010

i have found some info on this but nothing i can use... im using vb.net to automate excel before i print the excel worksheet i need to change the printers setting to use the manual feed tray instead of the auto feed

View 2 Replies

Check The Printer Status Before Printing The Report?

May 3, 2010

How to check the printer status before printing the report. i am using print dialog to print the report. i want to check the printer is on or off or printer is ready before report is send to printer.

i want to insert a function that check the selected printer status when user click on the print button. if printer works fine then print report else alert the user to set the printer.

View 5 Replies

Report The Status Of Multiple Tests To The User?

Jul 31, 2009

I want to report the status of multiple tests to the user like this:

Test1 PASS
Test2 PASS
Test3 FAIL

where the PASS should be green and the FAIL should be red. The number of tests is not known at design time, so I can't make N rows of labels and set their properties at run time. If I put all of that text in a single label, is there a way I can turn some of the words green and some of them red?

View 6 Replies

Feed Reader - Compare The Feed To The Database And Only Load New Items Into The Database

Nov 8, 2011

I am trying to figure something out. I have an application in which I am adding the ability to consume a feed. I have no problem with the feed itself, but my problem is how can I mark certain items as 'read'? The only thing I can thing of is to read the feed into a database. In this database, I add a column for 'read' which I update when the user has read the article. Then each time I retrieve the feed, I compare the feed to the database and only load new items into the database.

View 2 Replies

Create The Report Template At Design-time And Then "binding" A Datatable To It At Runtime?

May 18, 2011

New to reports here. Using VB.NET, my application makes use of datatables it creates from a postgresql database.These datatables are defined at runtime rather than design-time, and I would like some way of generating reports from these datatables at runtime as well.

Should I be trying to create the report template at design-time, and then "binding" a datatable to it at runtime?

View 1 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

VS 2005 Using A Status Strip To Notify The User About The Status?

Sep 1, 2009

Here is my insert statement:

[Code]...

Now for a succesful insertion i want to notify the user about a successful save operation.....i.e,i want to display a message "Successful Save Operation"to the user. How to do this using the Status Strip?

View 2 Replies

Getting The Checklist Box?

May 25, 2011

i have got a checklist box and i have bind it with value like menstioned below

Dim strquery As String = "SELECT Pk_ProcessID,Fk_ClientID,ProcessName,mc.ClientName FROM M_Process mp JOIN M_Clients mc ON mp.Fk_ClientID = mc.Pk_ClientID ORDER BY mp.Pk_ProcessID"
cnn = New SqlClient.SqlConnection(strConnect)

[code]....

View 1 Replies

Status Bar With The Current Browser Status Text?

Mar 20, 2009

I've got the code to display the current browser status text in the status bar but i want it to display the name of my web browser aswell. Example: Dreamincode.net - (Name of Webbrowser)

He is my code for the displaying staus text.
Private Sub webBrowser1_StatusTextChanged( _
ByVal sender As Object, ByVal e As EventArgs) _
Handles webBrowser1.StatusTextChanged

[Code]...

View 2 Replies

For Next Statment For Salary Survey?

Mar 28, 2011

A company pays its salespeople on a commission basis. The salespeople receive $200 per week, plus 9% of their gross sales for that week. For example, a salesperson who grosses $5000 in sales in a week receives $200 plus 9% of $5000, or a total of $650. Develop a console program (using a one-dimensional array of counters) that determines how many of the salespeople earned salaries in each of the following ranges (assume that each salesperson?s salary is truncated to an integer amount):

a)$200-$299
$300-$399
c)$400-$499

[code]....

My gross salary formula works fine but im confused about my For Next Statement. Not sure if im doing it right. i forgot one thing.... i'm not sure if my increment counter should be where i put it. I think it needs to be in my for next statement?

View 9 Replies

Add Data To Checklist Box On Runtime?

Aug 25, 2009

I have data in an arraylist and i want to add data to checklist box on runtime and i also want to display a textbox besides it so that i get the comments

example :
checklistbox "text" textbox
checklistbox "text" textbox
checklistbox "text" textbox
checklistbox "text" textbox
checklistbox "text" textbox

View 3 Replies

Arranging The Checklist Order?

Aug 8, 2009

i am currently doing a checkboxlist that is retrieved from database. is there any way where i can sort the checklist items in a way like those checked itmes will be displayed at the back then those that are not checked will be moved to the top.

View 4 Replies

Skills Checklist For Students?

Oct 24, 2009

For the assignment that I'm doing, there's certain skills I must demonstrate in my assignment. There are some standard ones, and some optional ones. The more optional ones I have, the better chance I have at achieving an A.Problem is, some of the things on the list are a bit wierd, and after Googling them, I still have no idea what they are. I will list them, if you could perhaps tell me what they are and how they work anInput Mask (Actually, I know what this is - when people input information, it's a method that inserts in the information in the correct frormat (eg. dd/mm/yyyy) but how do you do use this in Visual Basic?Use of procedures or modules

Optional
Validation rule andappropriate validation text message
Validating data input entry (eg data type, appropriate value, required)

[code].....

View 19 Replies

Create A Multiple Choice Survey?

May 13, 2012

I'm currently quite new to VB and am trying to create a multiple choice questionnaire for work. This is a depression survey in which there are 23 groups of statements with 4 options per group. Every time a patient clicks an option, the next set of 4 questions comes up on the screen.

I'm trying to convert the old VB4 code into the new VB 2010 code. Before we were using a control array and the code looks a little something like this[code]...

View 2 Replies

Php - Get Data From A Survey Paper Document?

Feb 24, 2012

i know it could sound as a silly question but i was wondering if there's a way to get data from a survey on paper though: i mean, let's say i have a survey on paper with questions and some checkbox that the user will tick and i want to get its data scanning the document and save it as pdf, if it's possible, or jpg or doc, whatever. Then with PHP or whichever language you suggest, try to get the data in some way from the scanned document and put it to a DB.

View 2 Replies

Salary Survey Code Verification?

Feb 1, 2011

I'm new with VB programming and would like to know if anyone can look/test this code I have written. I don't have the ability to test right now because I'm at work and can't get VB installed on my desktop. This program is supposed to display the amount of gross pay for employees based on their weekly sales (if $5000 or more times 9% + $200) while using a one dimensional array.

View 2 Replies

Survey: Including SQL In App Code Or Only In The DB / Procs?

Jan 22, 2009

Trying to start a discussion on what approaches forum members take when faced with the issue of writing code that calls SQL queries upon a DB. Do you tend to always put SQL in stored procedures and call the proc (and does that include basic CRUD operations) or always the opposite? Or do you prefer a mix of some procs and some coded sql? If its the latter then how do you determine which queries go where?I imagine the scale of a project can dictate some of the possible answers. I've done both and sometimes I find that quick and dirty apps that have little chance of changing or are easy to modify do not need procs. On the other hand, I generally will choose the mixed option where anything other than CRUD (i.e. workflows) will be sent to a proc. I have a particular interest in hearing about your experiences with larger projects (i.e. 100+ tables in the DB) that employ a Domain Model approach to a layered solution (has distinct UI, business, and data access layers.) However I'm interested in responses to all sizes and shapes of projects.Opinions?

View 1 Replies

Deleting Directories Using A Dynamic Checklist?

Mar 19, 2009

I am developing a .Net application that populates a checklist by querying the directories inside a "base" directory (this part already accomplished). The purpose is to show these directories and allow the user to "check off" the directories they want to delete, and then click a button to delete just those directories (this is the part I'm stuck at).My checklist populates, but how would I go about deleting just the directories that get checked?There is one more thing. Each of these directories might have a log file (of the same name) inside the "base" directory; this corresponding log file should also be removed.

View 2 Replies

VS 2008 Tell If User Checked A Box In The CheckList Box?

Oct 19, 2009

how would i tell if user checked a box in the CheckList Box? Im going to have alot so i need to keep it neet and tidy so it looks clean.

View 3 Replies

.net - Creating The DNN Survey Module From Source Code?

Sep 18, 2010

My boss has asked me to set up DotNetNuke's Survey Module and make a few custom changes to it for a client. But I'm having trouble just getting the bare-bones code to run properly!Downloaded both the source & install folders from [URL] Created a new VB Web Application Project Took out all the default pages Copied the Survey source code into the VB Web Application Project in exactly the same structure Made a batch script that creates an installation folder identical to DNN's install folder (double-checked by running a folder-diff on it, and all files/folders were identical) Zipped up my installation folder using 7-zip The source code compiles perfectly. But even though the files/folders are identical, DNN's zipped package will work properly on my DNN site, and my own zipped package will fail with this famous error message:

Error: Survey is currently unavailable.
DotNetNuke.Services.Exceptions.ModuleLoadException: Could not load type 'DotNetNuke.Modules.Survey.survey'. --->

[code]....

View 7 Replies

Creating The DNN Survey Module From Source Code?

Aug 25, 2010

creating the DNN Survey Module from source code

View 5 Replies

Add Record In My Database When It Is Coming From A Checklist Box Control?

Aug 30, 2010

I'm having trouble on how to code this. First I need to assign a value for every item in the list (1 for the first item, 2 for the 2nd and so on). Does this control have a separate field for the value aside from text?

Second, I need to insert this into my database(MSSQL 2008) in this format:

insert into table values(ID,selectedvaluegoeshere)

View 1 Replies

Determined The Item That Invoke A Postback In A Checklist?

Mar 10, 2011

My checklist is doing a autopostback on selectedIndexChange event. I need to know how to get the item that was just selected that invoked the postback. I tried using selectedvalue,selecteditem, selectedindex, but they all give me the lowest item in thecollection and not neccessarily the item just checked

View 2 Replies

VS 2010 Adding Items To A Checklist Box From Another Form

Feb 2, 2011

i know how to add items to a list box box if all controls are on one form but for space reasons i'm adding items/urls into a text box on form2 then when i click OK the items are supposed to be saved/stored in the checked list box on my main form.

View 5 Replies

Displaying A Chart - Create A Cafeteria Survey Application ?

Nov 15, 2011

I have to create a cafeteria survey application. Twenty students were asked to reate, on a scale of 1 to 10, the quality of the food in the student cafeteria, with 1 being "awful" and 10 being "excellent." Allow the user input to be entered using a ComboBox. Use an integer array to store the frequency of each rating. Display the frequencies as a bar chart in a list box.

I can get the comboBox and everthing, but it's not displaying the bar chart.

Here is my code.

Public Class Form1

'String array stores ratings
Dim ratings() As String = {"1-Awful", "2", "3", "4", "5", "6", "7", "8", "9", "10-Excellent"}
Dim studentCount As Integer 'number of student ratings entered
Dim frequency(9) As Integer

[CODE]...............................

View 1 Replies

Build An Application That Will Serve As A Very Large Checklist Of Sorts?

Apr 21, 2009

I am trying to build an application using vb.net that will serve as a very large checklist of sorts. and i'm not exactly sure of the best way to do this. I considered using a database but i would need it to be self contained without having to rely on a server or internet connection

View 4 Replies

VS 2008 : Linq / Sql Advice On Using Dropdown Checklist Usercontrol Values?

Apr 16, 2011

I had actually getting LINQ to work but I am past that now but I was wandering if anyone could help me what I basically have is a DropDownChecklist user control I made and the contents of the list are filled by LINQ getting a list of company names see below:

'Population for company filter box
Public Function GetCompNames()
Using DC As New DataClassDataContext
Dim comp = (From C In DC.Companies _

[code]....

Would you suggest using a public array or something to store the companyID's when populating the first list box? This just came to me at the end of writing this post. Will try this but not sure if its the right thing to do.

View 1 Replies







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