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 strongm 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. arneweise77

    Retrieve text from dynamic textbox

    Hi! I create a few textboxes dynamically and then adds it in a placeholder. Works fine. Then the user fills the textboxes and hits a submit-button and here´s my problem. I can´t retrieve the text from the textboxes because the textboxes doesn´t seem to exist anymore!? How can that be? If I try...
  2. arneweise77

    Need button to fire both javascript function and asp.net sub

    Ok, got it to work, had some problem with the javascript... apologize for taking up your time.
  3. arneweise77

    Need button to fire both javascript function and asp.net sub

    AtomicChip you definitely don´t need to apologize because I didn´t explain what I want to do. Here goes: The user can choose a product in another listbox then press a button and a chart is displayed with a bar that represents the hours it takes to make that product, a cookie holds this...
  4. arneweise77

    Need button to fire both javascript function and asp.net sub

    Hi! I´m using vb.net together with asp.net and I´ve encuntered a problem. Basically what I want to do is read and write cookies with asp.net, I write a httpcookie and put some info about it in a listbox, then the user can select and delete that cookie. Did this using asp.net only but then I...
  5. arneweise77

    How do I disable a RequiredFieldValidator

    Hi everyone. I´m struggling with a RequiredFieldValidator. I want to disable it when pressing one button, and have it enabled when pressing another button. But somehow "validator-id.enabled = false/true" doesn´t work. Is there some other way to go around this? Hope someone can solve...
  6. arneweise77

    Submit form by pressing the enter key

    Hi, a simple question on how to submit a form with keydown event. I´ve tried a function with KeyPressOnEventArgs as one argument which it didn´t recognize. Do someone have a function that could help me with this problem? thanx in andvance Arne
  7. arneweise77

    Using Line2D.Double in Applet

    Hi! I´m using a Line2D to get information about the x's, y's in a straightline. Both as an application and an applet. Because of that Line2D is abstract am using Line2D.Double like: Line2D.Double line; line = new Line2D.Double(); And then am using some of it´s functions. Works great so long as...
  8. arneweise77

    Find the pixels in a straightline

    Hello! I need to move an image in a straightline in 2D, much like a ball movement for a 2D game. I have the coordinates for start and end but how do I get the ones in between. I want to move the image one pixel at a time so it moves smoothly. I can´t find a function that returns each x,y for a...
  9. arneweise77

    Find the pixels in a straightline

    Hello! I need to move an image in a straightline, much like a ball movement for in 2D game. I have the coordinates for start and end but how do I get the ones in between. I want to the image one pixel at a time so it moves smoothly. I can´t find a function that returns each x,y for a line, is...
  10. arneweise77

    Changing date format

    Hi! I´ve just finished an aspx application and went to my employer to install it on his server and I encountered a problem. I changed the Regional Options to display Swedish date and currency and so forth, but the change didn´t affect my aspx app. I´ve checked in Ms Access that the regional...
  11. arneweise77

    accessing database on network drive??

    Hi! I´m accessing an Access-database from my asp.net page with OleDb and it works find as long as the databasefile is on the local machine but I need the file to be on a network drive. I´ve mapped up the drive to g: and got permission to access my database file. But when I run my app the this...
  12. arneweise77

    Make sure double-click on button doesn´t happen

    Hi! I´m submitting some values into an Access-database, but if the user is clumpsy and doubleclick on the submit-button, the record get sent two times. So I get two records in my database instead of one. Is there an easyway to overcome this problem?? Thanks Arne
  13. arneweise77

    Unable to get the text in repeater textbox

    Hi! I have a slight problem with retrieving the text in my textbox. I´m using at repeater with the id: thedata. In my repeater and Itemtemplate I have a textbox with the id:version_txt. I now need to get the text from that textbox that the user have entered. But I get an error that says &quot...
  14. arneweise77

    Call a JavaScript function from VB function?

    Hi everyone! I need to call a JavaScript function from a VB sub/function in the same aspx page. How do I do this? I´m using onBlur to this JavaScript function from a textbox, then sets a variable to the value of the textbox, and then I need the value of this variable in my VB sub to work with...
  15. arneweise77

    Comparing date in OleDb

    Ooops! Sorry about that guys, pretty tired today. Selected from wrong table... Well I´m man enough to admit it, give me that!!
  16. arneweise77

    Comparing date in OleDb

    Hi! I´m using a simple datagrid that gets data from MS Access. Then the user have the chose to display rows in the datagrid with a certain date. The user types this in a textbox. My problem is that a then want to make SQL-statement like: "select * FROM myDataBase WHERE date =...
  17. arneweise77

    Force user through form from top 2 bottom?

    Hi everyone! I have this form which has to be filled in from the top to the bottom to get the right values and entrys. I want it this way just to keep the user away from making type errors. I´m setting focus to the first textbox, but how do I force the user to enter information before moving on...
  18. arneweise77

    Get time elapsed from 2 textboxes?

    Thanks guys, you´ve been most helpful, and I´m glad to say: problem solved! Thanks again, maybe we´ll run into eachother some other day Arne Weise
  19. arneweise77

    Get time elapsed from 2 textboxes?

    Hi! I have this "tricky" problem regarding total time elapsed. Im using a form with 2 textboxes: Start-time, End-time which the user fills in values in string format. Let´s say start-time= 23:25:45, and end-time= 02:26:46. Now I want to present total time elapsed as = 3:01:01 in a...
  20. arneweise77

    Problem importing namespaces

    Hello all! when I compile my .vb file(making my own namespace) with the vbc command an error occurs with imports of certain namespaces. These are my namespaces: Imports System Imports System.Drawing Imports System.Drawing.Imaging Imports System.Drawing.Drawing2d Importing System is no problem...

Part and Inventory Search

Back
Top