Search results for query: *

  1. T

    Opening a new internet explorer window

    Hey all!! I just want to know how to open a new Internet Explorer Browser window. The scenario is as so: User inputs date (i.e January 2005) the program searches the database and returns all the dates with January 2005. I want the Internet Explorer browser to open when a button is clicked.. and...
  2. T

    Searching Databases

    Hey All!! Having troubles with searching for data within a DB. I have to RESTRICT the HTML report output by using an IF statement and selecting only the records where the student Birth Month matches a month entered by the user (i.e user defined month). For Example, if the user enters 1, the...
  3. T

    Fibonacci Sequence

    Hey All I need to display the fibonacci sequence in a label, repeating it N times where N is the number entered in the textbox. Neone know how to code it? ALSO anyone know how to display the numerical series of the number - that is all the numbers up to that number added together. EG Series...
  4. T

    Reverse

    Hey ALL!! Im having troubles with Reversing text from a text box. e.g If the sentence is Hello there then ereht olleH is displayed.. To use the LEN function and accessing a single character with sSentence.chars(icounter) <--- From For LOOP Tk Unlimited!!
  5. T

    Extracting from textbox

    Hey ALL!! How do i extract the first three letters from text input into a textbox. E.g Input Franky in a textbox.. Want to extract "Fra" Thanks!!
  6. T

    Summary

    Any ideas how to display a summary of products that are in a listbox, showing how many times it was ordered? E.G PRODUCT QTY Fish 5 Cat 2 Fish 1 Dog 2 ===================== Fish 6
  7. T

    Selecting In MULTIPLE listboxes

    Hey All, Im having trouble selecting data stored in listboxes.. I have 6 listboxes all with 'SALES' information and as there are many entries, is it possible when i click on ONE entry it selects all the other entries in the other listboxes in the same position? E.g Select entry in listbox...
  8. T

    Calender Control - Date Time picker

    Does anyone know how to convert the Calender Control - DateTime picker to short date format?
  9. T

    Calculating change

    Order Number Incrementation My problem is still my order no. Each time i process an order i want the orderno. to increment by one and for some reason += 1 doesnt work.. only just adds one.. and then doesnt add nething else
  10. T

    Editing and saving

    That worked thanks heaps!!
  11. T

    Calling Public Function

    How would i call this public function Module ArrayStuff Public Sub copyListboxToIntArray(ByVal theList As ListBox, ByVal theArr() As Integer) Dim iLimit As Integer Dim iItemNo As Integer iLimit = theList.Items.Count For iItemNo = 0 To (iLimit - 1) theArr(iItemNo) =...
  12. T

    Running Totals

    Hey All Can someone tell me how to display a running total to be displayed on a Label FROM a listbox? Also i want to include an Order number as well.. which would also be a running total.. Any suggestions on how to code this Order no? Know im asking too much but also when a button is...
  13. T

    Writing New Text File

    Hey all! Currently with my program everything i store in the listbox is stored in a textfile that i have already created... HOWEVER is there possibly a way where if i input a name into a textbox that it will create a new textfile and save it as the name in the textbox?? :(
  14. T

    Average'd Out

    I'm having trouble getting an average of marks from a listbox.. These are the following steps: -Find out how many marks in the listbox - this is the limit for the loop -Start a total variable with 0 -Using a FOR LOOP, loop though each mark in the marks listbox and add each mark to the total...
  15. T

    Challenge

    As you all can tell I SUCK at VB thats why im posting ANOTHER question :p At the moment the program PROmpts the user for the total no. of competitors in a competition.. This is the challenge.. If the user inputs 5 competitors... I want the form to display 5 Text Boxes soo the user can input the...
  16. T

    Time

    Hey All The current program i'm working on requires times to be displayed in seconds to two decimal places. I am currently declaring the time variadble as a decimal.. Can I declare the variable as something more appropriate?? and how do i code it??.. :confused: Also.. I am displaying it in a...
  17. T

    Multiple Prompts in an InputBox

    Hey All :D I require help with a problem i have come across.. I want to be able to allow the user to input data in several input boxes but at the same time want the Input box msg to prompt as so: Enter Fruit Type #1 Enter Fruit Type #2 Enter Fuit Type #3 etc etc etc ALSO as VB is case...
Back
Top