Click here to Skip to main content
15,898,035 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Creating Button's Dynamicaly Pin
Dave Kreskowiak9-May-08 8:39
mveDave Kreskowiak9-May-08 8:39 
QuestionRe: Creating Button's Dynamicaly Pin
jacko8739-May-08 9:29
jacko8739-May-08 9:29 
AnswerRe: Creating Button's Dynamicaly Pin
Dave Kreskowiak9-May-08 9:57
mveDave Kreskowiak9-May-08 9:57 
GeneralRe: Creating Button's Dynamicaly Pin
jacko8739-May-08 10:13
jacko8739-May-08 10:13 
GeneralRe: Creating Button's Dynamicaly Pin
DanB19839-May-08 10:37
DanB19839-May-08 10:37 
GeneralRe: Creating Button's Dynamicaly Pin
Dave Kreskowiak9-May-08 10:41
mveDave Kreskowiak9-May-08 10:41 
QuestionVBA Help, probs really simple Pin
harveyhanson9-May-08 2:21
harveyhanson9-May-08 2:21 
AnswerRe: VBA Help, probs really simple Pin
parth.p9-May-08 2:56
parth.p9-May-08 2:56 
I won't write code for exactly what you need but I have got similar example.
VB.NET
Sub CheckList()

    Sheet1.Cells(1, 1) = "Text1"    'Set text in Sheet1
    Sheet2.Cells(1, 1) = "Text1"    'Set Text in Sheet2
    
    
    Dim sValueFromSheet1 As String
    Dim sValueFromSheet2 As String
    
    sValueFromSheet1 = Sheet1.Cells(1, 1)   'Get Value of Cell A1 on sheet1
    sValueFromSheet2 = Sheet2.Cells(1, 1)   'Get value from list on sheet2
    
    If sValueFromSheet1 = sValueFromSheet2 Then
        Sheet1.Activate
        
        'This will delete 1st Row
        Rows("1:1").Select
        Selection.Delete Shift
        
        Range("A1").Select
        
    End If
    
    ' Now for your question you will have to write your own code
    ' to do what you want to. I can't do everything for you.
    '
    ' Hope this example helps you.
End Sub


- Stop thinking in terms of limitations and start thinking in terms of possibilities -

QuestionSelect subset of records from .xml Pin
cstrader2329-May-08 1:40
cstrader2329-May-08 1:40 
AnswerRe: Select subset of records from .xml Pin
Dave Kreskowiak9-May-08 3:27
mveDave Kreskowiak9-May-08 3:27 
GeneralRe: Select subset of records from .xml Pin
cstrader2329-May-08 6:07
cstrader2329-May-08 6:07 
GeneralRe: Select subset of records from .xml Pin
Dave Kreskowiak9-May-08 7:40
mveDave Kreskowiak9-May-08 7:40 
QuestionHelp with Linq in VB.net Pin
Chinners9-May-08 0:24
Chinners9-May-08 0:24 
AnswerRe: Help with Linq in VB.net Pin
Guffa9-May-08 2:14
Guffa9-May-08 2:14 
GeneralRe: Help with Linq in VB.net Pin
Chinners9-May-08 6:19
Chinners9-May-08 6:19 
GeneralRe: Help with Linq in VB.net Pin
Guffa9-May-08 7:16
Guffa9-May-08 7:16 
GeneralRe: Help with Linq in VB.net Pin
Chinners9-May-08 8:23
Chinners9-May-08 8:23 
Questionexcel sheet problem Pin
asha_s9-May-08 0:19
asha_s9-May-08 0:19 
AnswerRe: excel sheet problem Pin
Dave Kreskowiak9-May-08 3:22
mveDave Kreskowiak9-May-08 3:22 
QuestionExecuting Code at specified time Pin
Ariel Kazeed9-May-08 0:04
Ariel Kazeed9-May-08 0:04 
AnswerRe: Executing Code at specified time Pin
Christian Graus9-May-08 0:25
protectorChristian Graus9-May-08 0:25 
QuestionInformation on Initialimage Pin
nishkarsh_k8-May-08 21:36
nishkarsh_k8-May-08 21:36 
AnswerRe: Information on Initialimage Pin
Christian Graus8-May-08 21:52
protectorChristian Graus8-May-08 21:52 
GeneralRe: Information on Initialimage Pin
nishkarsh_k8-May-08 22:33
nishkarsh_k8-May-08 22:33 
GeneralRe: Information on Initialimage Pin
Christian Graus9-May-08 0:24
protectorChristian Graus9-May-08 0:24 

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.