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 Wanet Telecoms Ltd 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

    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...
  3. 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...
  4. 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
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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
  11. 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...
  12. 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...
  13. 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 =...
  14. 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...
  15. 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...
  16. 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...
  17. arneweise77

    Checkbox in datagrid problem

    Hi! I created a datagrid with some columns, the first column is populated with checkboxes. So far so good. But when a want to check which ones are checked, they all are false even if they are checked. Here´s the code: Private Sub DeleteButton_Click( Sender As Object, E As EventArgs ) Dim...
  18. arneweise77

    Creating charts

    Hello! I need to create barcharts to be displayed in IE. There seems to be a lot of different ways. Now I´m using objGraphics to draw rectangle and lines, but it´s becoming pretty complex and I don´t like the pretty amateur-like design. What I´ve seen it looks like a can use ActiveX, MSChart...
  19. arneweise77

    Hi all! I've got a problem with my

    Hi all! I've got a problem with my servercontrols, it's a textbox and a button. When a write in the textbox and hit enter the page reloads but don´t run the OnClick sub that the button is "connected to". On another page i´ve got a login and that works find when a hit enter. Could it...
  20. arneweise77

    Hello! I want to select a column

    Hello! I want to select a column named hours with the criteria &quot;date >= 'some date' AND date <= 'other date'&quot;. In this table a also have a column named workcenter. My problem is that for workcenter one and two a want the same date criterias but for workcenter three a want to use...

Part and Inventory Search

Back
Top