Click here to Skip to main content
15,917,059 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: DAAB wrapper issues with MS Access Pin
Michael P Butler3-Jan-07 21:14
Michael P Butler3-Jan-07 21:14 
GeneralRe: DAAB wrapper issues with MS Access Pin
shreekar3-Jan-07 21:19
shreekar3-Jan-07 21:19 
Questionhelp with PRINTING MARGINS (PAGESETTINGSDLG) Pin
vbbeg3-Jan-07 18:43
vbbeg3-Jan-07 18:43 
QuestionBuild Error Message Pin
mosdwt3-Jan-07 18:21
mosdwt3-Jan-07 18:21 
AnswerRe: Build Error Message Pin
CPallini3-Jan-07 21:55
mveCPallini3-Jan-07 21:55 
QuestionNotecard Program Pin
sh3l13-Jan-07 13:39
sh3l13-Jan-07 13:39 
AnswerRe: Notecard Program Pin
CPallini3-Jan-07 21:41
mveCPallini3-Jan-07 21:41 
QuestionRe: Notecard Program [modified] Pin
sh3l14-Jan-07 13:41
sh3l14-Jan-07 13:41 
Alright, update, can someone tell me why this doesn't work, (don't worry, the layout will change, i have it like this for testing). I suspect that the problem is in the part where it saves the cards.

Public Class Form1<br />
    Dim mode As Integer<br />
    Dim words(30) As String<br />
    Dim definitions(30) As String<br />
    Dim synonyms(30) As String<br />
    Dim sentences(30) As String<br />
    Dim rotation As Integer<br />
    Dim temp As String<br />
    Dim Wordnumber As Integer<br />
<br />
    Private Sub CreateCard_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CreateCard.Click<br />
        mode = 1<br />
        Wordnumber = 1<br />
        Label1.Text = "Card Created"<br />
        temp = Word.Text<br />
        words(Wordnumber) = temp<br />
        temp = Def.Text<br />
        definitions(Wordnumber) = temp<br />
        temp = Sentence.Text<br />
        sentences(Wordnumber) = temp<br />
        temp = Syn.Text<br />
        synonyms(Wordnumber) = temp<br />
        Wordnumber = Wordnumber + 1<br />
    End Sub


or in the part where it recycles the words when it reaches a blank one

<br />
    Private Sub flipcard_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Flipcard.Click<br />
        synstudymode.Text = synonyms(rotation)<br />
        sentencestudymode.Text = sentences(rotation)<br />
        defstudymode.Text = sentences(rotation)<br />
        wordstudymode.Text = words(rotation)<br />
        If words(rotation) = "" Then<br />
            wordstudymode.Text = "You have completed one rotation."<br />
            rotation = 1<br />
        End If<br />
        rotation = rotation + 1<br />
    End Sub<br />


I have posted the entire source at:
http://www.mediafire.com/?9n42k3mj3rz


-- modified at 19:59 Thursday 4th January, 2007
QuestionPolymorphism/Inheritance question Pin
dukesys3-Jan-07 11:44
dukesys3-Jan-07 11:44 
AnswerRe: Polymorphism/Inheritance question Pin
CPallini3-Jan-07 21:38
mveCPallini3-Jan-07 21:38 
GeneralRe: Polymorphism/Inheritance question Pin
dukesys4-Jan-07 11:54
dukesys4-Jan-07 11:54 
Questionformat date in MySql Pin
jds12073-Jan-07 10:07
jds12073-Jan-07 10:07 
AnswerRe: format date in MySql Pin
Dave Kreskowiak3-Jan-07 11:40
mveDave Kreskowiak3-Jan-07 11:40 
GeneralRe: format date in MySql Pin
jds12074-Jan-07 3:59
jds12074-Jan-07 3:59 
GeneralRe: format date in MySql Pin
jds12074-Jan-07 5:27
jds12074-Jan-07 5:27 
QuestionPerformance with Editor Pin
Cecil Cheah3-Jan-07 10:00
Cecil Cheah3-Jan-07 10:00 
AnswerRe: Performance with Editor Pin
Enriad4-Jan-07 2:47
Enriad4-Jan-07 2:47 
QuestionVB6 to VB.NET printing using Printer Language Pin
oogyboogyme3-Jan-07 8:18
oogyboogyme3-Jan-07 8:18 
AnswerRe: VB6 to VB.NET printing using Printer Language Pin
MatrixCoder3-Jan-07 8:40
MatrixCoder3-Jan-07 8:40 
AnswerRe: VB6 to VB.NET printing using Printer Language Pin
oogyboogyme3-Jan-07 8:51
oogyboogyme3-Jan-07 8:51 
AnswerRe: VB6 to VB.NET printing using Printer Language Pin
Tim Carmichael3-Jan-07 10:17
Tim Carmichael3-Jan-07 10:17 
GeneralRe: VB6 to VB.NET printing using Printer Language Pin
oogyboogyme4-Jan-07 13:00
oogyboogyme4-Jan-07 13:00 
GeneralRe: VB6 to VB.NET printing using Printer Language Pin
Tim Carmichael5-Jan-07 2:41
Tim Carmichael5-Jan-07 2:41 
QuestionEngineering problem-please advise Pin
neobavesten3-Jan-07 6:10
neobavesten3-Jan-07 6:10 
GeneralRe: Engineering problem-please advise Pin
nagendra rao s.v.3-Jan-07 20:07
nagendra rao s.v.3-Jan-07 20:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.