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

Visual Basic

 
AnswerRe: compiling what was compiled before Pin
Jay Royall5-Feb-09 0:30
Jay Royall5-Feb-09 0:30 
AnswerRe: compiling what was compiled before Pin
EliottA5-Feb-09 5:07
EliottA5-Feb-09 5:07 
QuestionI need events of Datagridcomboboxcolumn Pin
A.gomathi nayagam4-Feb-09 18:36
A.gomathi nayagam4-Feb-09 18:36 
AnswerRe: I need events of Datagridcomboboxcolumn Pin
Bharat Jain4-Feb-09 19:10
Bharat Jain4-Feb-09 19:10 
Questioni need events of Datagridcomboboxcolumn Pin
A.gomathi nayagam4-Feb-09 18:24
A.gomathi nayagam4-Feb-09 18:24 
AnswerRe: i need events of Datagridcomboboxcolumn Pin
Jay Royall5-Feb-09 0:38
Jay Royall5-Feb-09 0:38 
AnswerRe: i need events of Datagridcomboboxcolumn Pin
Henry Minute5-Feb-09 9:06
Henry Minute5-Feb-09 9:06 
QuestionCode in vb.net using asp.net Pin
ROHINIKOUNDINYA4-Feb-09 18:19
ROHINIKOUNDINYA4-Feb-09 18:19 
how to check whether the given data in the textbox control is valid , if valid the relevant details should be displayed?? can any one tell coding for this?? am doing this in vb.net using asp.net, a project which is a part of my course?? can any one help me... and am giving you the coding part... below, can anyone help me please...

<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" Title="Untitled Page" %>

<script runat="server">


Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
If (TextBox1.Text <> "") Then
Panel1.Visible = True
Panel2.Visible = True
Else
Panel1.Visible = False
Panel2.Visible = False
End If
End Sub

Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click






End Sub
</script>

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<center>
&nbsp;<table>
<tr>
<td colspan="2">
<asp:Label ID="Label2" runat="server" Height="4px" Text="Patient Details" Width="139px" Font-Bold="True" Font-Size="Larger"></asp:Label></td>
</tr>
<tr>
<td style="width: 114px">
<asp:Label ID="Label1" runat="server" Text="Patient Id"></asp:Label></td>
<td style="width: 100px">
<asp:TextBox ID="TextBox1" runat="server" Height="15px" Width="57px"></asp:TextBox></td>
</tr>

<tr>
<td colspan="2">
<asp:Button ID="Button2" runat="server" Text="Display" OnClick="Button2_Click" /></td>
</tr>

<tr><td style="width: 114px"><asp:Panel ID="Panel1" Visible="false" runat="server" Height="176px" Width="185px" HorizontalAlign="Left" BorderColor="Cyan" >
Panel1<br /><br /><br /><br /><br /><br /><br /><br /><br /><br />

<tr><td>
<asp:Label ID="Label3" runat="server" Text="Report Incident" Width="117px"></asp:Label></td>
<tr><td><asp:DropDownList ID="drop1" runat="server" Height="6px" Width="54px">
<asp:ListItem>Yes</asp:ListItem>
<asp:ListItem>No</asp:ListItem>
</asp:DropDownList></td><br /><br /><br />
<center>
<asp:Button ID="Button1" runat="server" Text="Enter to Report" PostBackUrl="~/Rep Entry Screen.aspx" OnClick="Button1_Click" />&nbsp;</center>
</asp:Panel>
</td>
<td style="width: 100px">
<asp:Panel ID="Panel2" Visible="false" runat="server" Height="176px" Width="185px" HorizontalAlign="Left" BorderColor="Cyan" >
<center>
Displayed Report Entry Scren</center><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><center>
&nbsp;</center></asp:Panel>
</td>
</tr>
</table>
</center>

</asp:Content>
AnswerRe: Code in vb.net using asp.net Pin
Johan Hakkesteegt4-Feb-09 22:11
Johan Hakkesteegt4-Feb-09 22:11 
Questioncheck my code..TableLayoutPanel in vb.net Pin
dilipmca044-Feb-09 17:31
dilipmca044-Feb-09 17:31 
AnswerRe: check my code..TableLayoutPanel in vb.net Pin
Dave Kreskowiak5-Feb-09 2:18
mveDave Kreskowiak5-Feb-09 2:18 
GeneralRe: check my code..TableLayoutPanel in vb.net Pin
EliottA5-Feb-09 3:29
EliottA5-Feb-09 3:29 
GeneralRe: check my code..TableLayoutPanel in vb.net Pin
Dave Kreskowiak5-Feb-09 9:00
mveDave Kreskowiak5-Feb-09 9:00 
RantRe: check my code..TableLayoutPanel in vb.net Pin
EliottA5-Feb-09 9:04
EliottA5-Feb-09 9:04 
QuestionXML issues Pin
StuBaum4-Feb-09 15:03
StuBaum4-Feb-09 15:03 
AnswerRe: XML issues Pin
Johan Hakkesteegt5-Feb-09 0:12
Johan Hakkesteegt5-Feb-09 0:12 
GeneralRe: XML issues Pin
StuBaum5-Feb-09 2:54
StuBaum5-Feb-09 2:54 
GeneralRe: XML issues Pin
Johan Hakkesteegt5-Feb-09 3:08
Johan Hakkesteegt5-Feb-09 3:08 
GeneralRe: XML issues Pin
StuBaum5-Feb-09 3:31
StuBaum5-Feb-09 3:31 
GeneralRe: XML issues Pin
Johan Hakkesteegt5-Feb-09 20:23
Johan Hakkesteegt5-Feb-09 20:23 
GeneralRe: XML issues Pin
StuBaum6-Feb-09 2:25
StuBaum6-Feb-09 2:25 
GeneralRe: XML issues Pin
StuBaum6-Feb-09 2:29
StuBaum6-Feb-09 2:29 
GeneralRe: XML issues Pin
Johan Hakkesteegt6-Feb-09 3:26
Johan Hakkesteegt6-Feb-09 3:26 
GeneralRe: XML issues Pin
StuBaum6-Feb-09 8:19
StuBaum6-Feb-09 8:19 
QuestionDelegates Pin
εїзεїзεїз4-Feb-09 3:49
εїзεїзεїз4-Feb-09 3:49 

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.