Search results for query: *

  • Users: vargf
  • Order by date
  1. V

    Server.Transfer() question

    I find Already the answer I give thanks to my freand. Now How can I put the answer to the second page this is the code: MainPage.aspx ProtectedSub Page_Load(ByVal sender AsObject, ByVal e As System.EventArgs) HandlesMe.Load Try' start of a try block Dim MyError AsNew Exception("This...
  2. V

    I need help in how to work with two webforms?

    I like to make a math calculator, but the issue is that I want to perform a calculation in the mainpage and display the result of that calculation in a second webform. all advice is wellcome I'm new in asp.net 2.0. I'm using VS.Net 2005 please help me. :confused:
  3. V

    How to show % in a Progressbar retrive info from Access db

    I like to know how to retrive porcentage from an Access db and Show in a Progressbar.how I like to know how to convert hole numbers in porcentage for example if in a field of access db I have in a progressbarA 5000 show in porcentage if I have in other ProgressbarB 1000 show in porcentage, but...
  4. V

    How to make a progressbar with colos

    Hi evry body I'm working in a Poll vote in VB.net not in ASP with radio buttoms to select the item desided to vote plus a label to use as progressbar, but I have two questions 1. how to store the dara in Access and retrive data and show in the progressbar with procentage value. 2. Put...
  5. V

    Pictures Paths in Access to Display in VB.Net need help

    Hi I'm working in a proyect Ilike to know how to retrive images from Access to display in VB.Net I have a Access Database with IDPrimayKey,First_Name,Last_Name,Phone_number,Address,Picture. the idea is to retrive the picture of each student in the Picture Box the All the personal info...
  6. V

    About the Try... Catch I need a little push

    Since I got many ideas from all of you I make the code: ________________________________________________________________ Dim FirstNum,Second As Short ________________________________________________________________ Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As...
  7. V

    Try...Catch help

    I'm Doing a simple Math calculator but I want to include the following items For the sume When I test the program with 99999 + 99999. This should raise a 'System.OverflowException’ exception. I want to modify the code to catch and handle the exception so that the user can continue.I want to...
  8. V

    Validate a Phone Number

    help with this method in validating a phone number I start practicing with the telephone validation I got one with a sub procedure,but somthing I did wrong on blank or wrong format (999999999)field respond good with the Msg Invalid Phone Number,but when I put the correct format(999-999-9999)...
  9. V

    Validate a Phone Number

    I want to now how validate a Phone number where accept12 Characters only.When the user clicks a button, the program should determine if the entry is of the form 999-999-9999, where the character 9 represents any number. If the entry is determined to be a telephone number, display an appropriate...
  10. V

    Modular functions and substring

    Hi can any body help me on understand the Modular function and the sub string? here is an exalple of a modular function and the sub string Function LocationOfPeriod(ByVal Text As String) As Integer Dim MaxSize As Integer = Text.Length ' get size for loop Dim counter, Index As Integer '...
  11. V

    I want to apply an array to my project.

    Now I want to access all data via Array I inisialized the Array with all my grades for exemple: 'Declare variable Global here 'to add the txtInputScore with btnRadioInputExtraCredit 'all radio buttoms. 'I inisialized the array. now I want to put at th bottom of the 'if...Then statement go and...
  12. V

    Arrays

    Hi all I have a 2 questions. How to inicialized an Array for my Assignement Grader ? I inicialized like this Dim listGrade() As String = {"A", "B", "C", "D", "F"} ------------------------------------------------- Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As...
  13. V

    Assignament Grader issue

    Hi i'm new in programming, I working in a Assignament Grader,but I face a problem all the result I want to get Letters insted of numbers for example: beetwen 100-99=A, 80-89=B, 70-79=C, 60-69=D, 0-59=F. here is my code and works greate but again I want to display letters istead of numbers...
Back
Top