Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. eulogy6

    Update Command --- drives me crazy

    Dear jmeckley, thanx for your awnser.... There isn't any error message...just doesn't update. The db requires text for telephone.... The mystery is that when I don't put the "telephone", the query works...
  2. eulogy6

    Update Command --- drives me crazy

    Hi, I have the following code: The update works when I've not the telephone field...and when I put it...doesn't. Do you have any idea? Private Sub DataGrid1_UpdateCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles DataGrid1.UpdateCommand...
  3. eulogy6

    Input string was not in a correct format

    TipGiver thanx for your kind replay, both txt2 & txt3 contain text
  4. eulogy6

    Input string was not in a correct format

    Hi all, :::::In users.aspx page I have the following: Private Sub Linkbutton4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Linkbutton4.Click Dim user As String user = txt2.Text Dim pass As String pass = txt3.Text...
  5. eulogy6

    Read specific values from a XML?

    thanx mikegrove that really helps....
  6. eulogy6

    Read specific values from a XML?

    thax bigtimmin for your answer. I looked up your reference but I didn’t find any solution…. Until now I have: PrivateSub btnShowValues_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnShowValues.Click Me.TextBox1.Text = "" Dim rd As XmlReader =...
  7. eulogy6

    Read specific values from a XML?

    Hi to all, I‘ve a XML like the following: <rss version="2.0"> <channel> <title>TEST</title> <link> </link> <description> </description> <language>En</language> <webMaster> </webMaster>...
  8. eulogy6

    Login...Using 2 tables with Username &amp; Password

    Hi to all, I have 2 tables checking for correct username & password, something like that: Private Sub btnlogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnlogin.Click Dim username As String Dim password As String username =...
  9. eulogy6

    Passing Variable From .aspx To .htm(FrameSet)

    Hi to all, I have a .aspx page and with a linkButton I have: Dim LblKey As String LblKey = txt1.Text Response.Redirect("frameset.htm?Key=" + Server.UrlEncode(LblKey)) In the frameset.htm I have: <frame name="header" src="menu.aspx" scrolling="no" noresize> <frame name="main"...
  10. eulogy6

    values between forms question

    thanx four your help... The .Tag property is a good idea, but how can I use the "If statment"? Something like that Private Sub DataGrid1_DblClick() If frmImportsForm.Tag = 1 Then frmAnalysisDetails.Text11.Text = Me.Text1.Text else frmImportsForm.Text6.Text = Me.Text1.Text End If Unload Me...
  11. eulogy6

    values between forms question

    Sheco thanx for your replay Lets say, I have already frmAnalysisDetails loaded. If i use the .visible property the "If" statment dosen't work what fires both forms Any other idea? Thanx in advanced
  12. eulogy6

    values between forms question

    Hello to all, I have a main form with a datagrid, frmImportsForm & frmAnalysisDetails How I Know which form is open (frmImportsForm OR frmAnalysisDetails), in order to pass a value? I suppose my question is very simple. Private Sub DataGrid1_DblClick() If frmImportsForm.Hide = True (something...
  13. eulogy6

    Input string was not in a correct format.

    thanx to all for your kind replay. I made the changes but I have the same error. "Syntax error in UPDATE statment" Also, the line "MyCon = New OleDb..." end with &", because I have also a Access password after that.. Any suggestion? Thanx
  14. eulogy6

    Input string was not in a correct format.

    Yes the error is on the "MyCommand.ExecuteNonQuery()"line The problem is that I can "Insert" or "Delete" if I change the Sql statment but I can't "Update" Any Idea? Thanx
  15. eulogy6

    Input string was not in a correct format.

    Thanx jbenson001 from your reply.. The "Update" statment..
  16. eulogy6

    Input string was not in a correct format.

    I get an error "Input string was not in a correct format" and I don't understand why? I'm going to use the following code in order to change the user's password with the "newtxt1.Text", having an Access database with 1 table(Users) with UserID|Username|Password. Can anyone tell me what I'm...
  17. eulogy6

    How can I copy a value of a control to another page

    I have a control for example textbox1 in "default.aspx". It's possible to copy the "textbox1.text", let's say to textbox2.text in "products.aspx" ? Thanks
  18. eulogy6

    Publshing ASP.NET application...

    v0520 thanx for your answer!! How can I check it?
  19. eulogy6

    Publshing ASP.NET application...

    The webpages open in the webserver without the webform elements. For example when I have www.mycompany.com/webform1.aspx, the only thing I can see is a page with none webform element. In the local server I haven't problem.Everything seems to be OK.
  20. eulogy6

    Publshing ASP.NET application...

    First of all, peekay thanx for your answer. Yes..I have all ready copy the binary files. I don't understand what it's going on. It's possible to give the right directories I must have in my www.mycompany.com directory. Also I use Cuteftp for uploading & Windows 2000 server SP3 in in the system...

Part and Inventory Search

Back
Top