This is probably a little weird question.
In this example everytime button is clicked,counter is incremented
<%@ Page Language="C#" %>
<html>
<script runat="server">
void Page_Load(Object sender, EventArgs e)
{
lblCounter.Text = Counter.ToString()...
I want ot print a simple list of monetary value from $5 - $15 in increments of nickels, but using the code:
for ($j = 5; $j <= 15; $j += .05){
print "\$$j<p>";
}
prints out:
$5 $5.05 $5.1 $5.15 $5.2 $5.25 $5.3 $5.35 $5.4 $5.45 $5.5 $5.55 $5.6 $5.65 $5.7 $5.75 $5.8 $5.85 $5.9...
Hi. I have two combo boxes that have corresponding field values. Let's say my first combo box is "NAME" and the second combo box is PHONE NUMBER. If i select a name from the first combo box, how can I update the value in the phone number field of the second combo bux. Basically, I want...
Jim,
The key to the table is an autonum field CustomerNum.
I think my problem is that I'm not positioned at SMITH's record. I'm just using the DLookup to display the appropriate check/uncheckedness of the box depending on the name.
So I think the Me!DateField = Date command creates a new...
Hi again, I'm having trouble on another part of the form now.
Recap- User enters a lastname into TextEntry textbox
Checkbox CheckM1 becomes checked if there is a date in TextEntry's field M1
If the user checks an unchecked box, TextEntry's DateField value should change to the...
Here you go, thanks!
Private Sub TextEntry_AfterUpdate()
Dim M
Dim last As String
last = "LastName = '" & TextEntry & "'"
M = DLookup("CheckField", "TABLE", last)
If M = Null Then
Me!CheckM1 = Null
Else
Check = Not Null...
How do I give a checkbox a checked image? I tried using code like "If (Condition) Then Me!Checkbx = False End If", but I get an error message about not being able to assign a value.
Thanks for any help.
Hi :)
I know we can disable it in tools/options! :)
Maybe I didn´t made me understand... What I was trying to know was if it is possible to, with the same document, make that msgbox, not to appear. In other words, I was trying to know if there is any place inside a document (like an initialize...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.