I'm trying to send some form variable to my email address, however it doesn't work and I can't seem to figure out why. Any help would be appreciated. Thanks!
JackIsMe777
Posts
-
php form email issue -
CSS link problemsThanks for the responce. That worked perfectly!
-
CSS link problemsI have three different styles of links that I would like to have on page... 1. General links on the page 2. Navigation menu links 3. Page footer The problem I'm having is that the different styles keep on affecting other ones randomly. For example, the general links on the page are supposed to be in (Verdana, Helvetica, Arial, sans-serif), however they are inheriting (monospace) from the footer?!? I have the navigation menu setup in a div like this: ****************************************************
**************************************************** ...and the footer setup liks this: ****************************************************
click here **************************************************** Here is my CSS code: **************************************************** /*NAVIGATION MENU LINK PROPERTIES*/ #navmenu a, a:link, a:visited, a:active { padding-left: 25px; padding-top: 5px; padding-bottom: 5px; font-variant: small-caps; line-height: 30px; letter-spacing: +1px; font-family: cursive; font-size: 12px;} /*NAVIGATION HOVER PROPERTIES*/ #navmenu a:hover { color: #eded0a;} /*GENERAL LINK PROPERTIES*/ a, a:link, a:visited, a:active { padding: 0px; margin: 0px; color: #f8f8f8; font-family: Verdana, Helvetica, Arial, sans-serif; font-size: 11px; font-weight: normal; font-style: normal; text-decoration: none; text-indent: 0px; text-align: left; font-variant: normal; text-transform: none;} a:hover { padding: 0px; margin: 0px; color: #f8f8f8; font-family: Verdana, Helvetica, Arial, sans-serif; font-size: 11px; font-weight: normal; font-style: normal; text-decoration: underline; text-indent: 0px; text-align: left; font-variant: normal; text-transform: none;} #footer a, a:link, a:visited, a:active { font-family: monospace; font-variant: normal; padding: 0px; font-size: 10px;} **************************************************** Thanks for any help you can give!
-
Date Format Issue ?I might possibly be able to help, however I will need more information: 1. What languages are you using? 2. What is the code supposed to do? You mentioned that it calculates the "wrong number of days". Can you share this section of the code, so I can see what you are working with? 3. How do you want the US date formatted (June 4, 2006, 06.04.2006, etc...) and how do you want the Brittish date formatted? Note: I can't help you, at least someone else who can will have all the info that they need, however I will do my best to answer your question.
-
Form QuestionWhat is the best way to make a form like this one that is used by codeproject.com? I was thinking about using a combination of php and sql, but if anyone knows a better/easier way, any help would be appreciated. PS: The form I am wanting to make is completely un-related to codeproject.com and has noting to do with program/web developement.
-
Please help explain this code...I am creating a .exe file in visual basic. I have a button and a web browser (the standard one that you add from the toolbox) setup to load a webpage in a the web browser when the button is clicked. I am trying to stop the "Page cannot be displayed" page from loading if the user of my program is not connected to the internet, so I want to be able to check if the user is online that way I can route them to an offline version if necessary. My code looks like this:
Public Class Form1
Private Sub Button5\_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click WebBrowser1.Navigate("http://www.google.com") End Sub
End Class
Thanks again for the help!
-
Please help explain this code...:confused: I was given this code when I asked if anyone knew how to check if a user of my Visual Basic program is connected to the internet so that I can handle "Page cannot be displayed" errors, however I am a newbe to visual basic and this code does not make any sence to me, nor do I know how to use it... Can someone explain what steps I would follow to impliment this code? For example, where do I put this code? How do I call the function? Thanks.
Private Declare Function InternetGetConnectedState Lib "wininet.dll" (ByRef _
lpSFlags As Long, ByVal dwReserved As Long) As Long
Const INTERNET_CONNECTION_MODEM = 1
Const INTERNET_CONNECTION_LAN = 2
Const INTERNET_CONNECTION_PROXY = 4
Const INTERNET_CONNECTION_MODEM_BUSY = 8' return True if there is an active Internect connection
'
' optionally returns the connection mode through
' its argument (see INTERNET_CONNECTION_* constants)
' 1=modem, 2=Lan, 4=proxy
' 8=modem busy with a non-internet connectionFunction IsConnectedToInternet(Optional connectMode As Integer) As Boolean
Dim flags As Long
' this ASPI function does it all
IsConnectedToInternet = InternetGetConnectedState(flags, 0)
' return the flag through the optional argument
connectMode = flags
End Function -
How do I check if a user is online?I'm really new to vb and don't understand this code or how to use it... Does anyone out there know how I can impliment this into my program... Thanks.
-
Is there a way to check if a user is online?I'm creating a program in visual basic that uses a web browser and I don't want the "Page cannot be displayed" error to show up, so I want to check to see if a user is online (connected to the internet), so that I can re-route them to an offline version if necessary. I am not doing anyting illegal, this is actually a program for a church...
-
Is there a way to check if a user is online?Is there a way to check if a user is online or not? If so, how? Thanks.:confused:
-
How do I check if a user is online?I have created a program that will access a webpage online using the built-in web browser in visual basic 2005 express, but if the user is NOT online, they get an ugly "Page Cannot Be Displayed" page. I want to be able to validate that the user is online so that I can redirect them to a custom page that I will store on their hard drive if necessary. I am fairly new to vb, and would appreciate any help I can get. Thanks in advance!!