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 TouchToneTommy 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: *

  • Users: rambleon
  • Content: Threads
  • Order by date
  1. rambleon

    can I use more than 1 charset on an aspx page

    I have an aspx page displaying forms containing Hebrew Dos text - Ansi char values 128 - 154. Using Response.Charset = "iso-8859-8" the Hebrew text displays OK but all the other Hebrew text on the controls comes out as gibberish (urecognizable). Is there any way of limiting the Charset set just...
  2. rambleon

    can ftp (or something else) replace this pcanywhree

    Hi, I would like to know if it's possible to replace the following pcanywhere (ole) session with ftp. 1. Remote calls waiting host (modem) 2. Files transfered from remote to host 3. Remote calls batch file on host to execute. 4. When execution on host completes the output files...
  3. rambleon

    Can I avoid the Encoding that vs.net imposes on every page

    Is it possible to avoid the Encoding that VS.net imposes on every page, so that input and output remain the same - if I hand code the page everything is OK. Or alternitavly is it possible to have more than 1 charset per page?
  4. rambleon

    Is it possible to disable the Back and Forward navigation buttons

    I would like to have control over which forms the user goes to from within my application. Can I disable the back and forward buttons?
  5. rambleon

    Hitting the Back button does'nt return the previous form the way I lef

    In what state is the previous form returned when I hit the Back button? In Form1 I have a LinkButton that does the folowing: Hyperlink1.Visible = False Textbox1.text = "" Textbox2.text = "" Response.Redirect("Form2.aspx") When I hit the Back button in...
  6. rambleon

    dropdownlist returns incorrect item

    What could be the reason that only the first 2 items in a dropdownlist work correctly. Clicking any other items either returns the 2nd item (SelectedIndex(1)) or nothing.
  7. rambleon

    Dropdownlist SelectedIndex returns incorrect value

    Hi, I have a dropdown list with 6 items, clicking the first item is ok - SelectedIndex = 0, clicking any other item the SeletedIndex = 1. I have the loading and binding for the dropdownlist in a If Not Page.IsPostBack block. Any ideas ?
  8. rambleon

    dropdownlist selectedindex incorrect

    Hi, I have a dropdown list with 6 items, no matter which one of the items I click the SelectedIndex changes to 1. Any ideas?
  9. rambleon

    How do copy ansi text from a file to an html page without any changes

    Hi, Is there any way to read data from a file and then output an exact copy of that data byte for byte to an html page. Response.Write(objStreamReader.ReadLine()) Can someone please send me a replacement for the above so that I can copy the input to output without any encoding interference...
  10. rambleon

    How do I convert a string from 1 character set to another

    Hi, I have a text file which I want to read and display in a browser, to display the text I have to convert the character set from hexadecimal values 80 - 9A to E0 - FA, bascicaly adding 60 (hex) to each charater before displaying it in the browser, what would be the best way to convert the...
  11. rambleon

    My asp.net app doesn't see new records added to access 2000 database

    My asp.net app doesn't see new records I add to the Access 2000 table. If I open the table from the Server Explorer the new records appear. Any ideas how I can make them visible from my asp.net app. ??
  12. rambleon

    How do I change the character set of a string

    Hi I need some code for changing text in a string(or file) from one character set to another (old code to new code) would the following work Regex.Replace(String, [a-z], [A-Z])
  13. rambleon

    Is there a pcanywhere(10.5) command-line for file transfer in

    Hi, Does anyone know if its possible to transfere files in pcanywhere 10.5 using a command-line. I'm a host waiting for a remote. When the remote (pca 11) calls I want to transfere from remote to host proccess the file and return a file to the remote and then terminate the connection. At the...
  14. rambleon

    pca 11 FileXferToHost hangs after successful connection

    Hi I have a problem with OLE FileXferToHost. I connect OK, I've checked the connectionStatus for 5 seconds to ensure I have a consistent connection, but the FileXferToHost hangs it opens file transfer but then just waits until I cancel the connection. If I get past this 1st filetransfer...
  15. rambleon

    using offset within ascii text file instead off reading from start

    Hi I have an ascii text file of monthly payslips, the 1st line of each payslip starts with an '*' followed by 131 spaces and CRLF, the 3rd line of the payslip contains a 9 digit ID number. I need to build a file of the ID numbers and the start address (offset) within the file of each payslip...
  16. rambleon

    Changing the forms backcolor has no effect.

    Hi, I have a form that I change the backcolor property. The property displays the new color, but the forms backcolor remains unchanged. Changing backcolor on other forms in the project works ok. Any ideas what the problem might be. ?
  17. rambleon

    How do I make a dataset available to multiple forms

    Hi, I have 2 forms, on Form1 (the startup form) I have a DataConnection, DataAdapter and a DataSet. How do I get the same DataSet to appear in DataBindings on Form2. Thanks for any help.
  18. rambleon

    Textbox width can be changed but not the height ?

    Hi, Why is it possible to change only the width of a textbox and not the height in Form design mode. ?? Or if it is possible, how?
  19. rambleon

    Form design Problem - The designer could not be shown

    Hi, I'm using VB.Net (VS 2002) to create a windows form. After adding an OleDbDataAdapter and OleDbConnection I clicked the form design tab and got the following: The designer could not be shown for this file because none of the classes within it can be designed. The designer inspected...
  20. rambleon

    Parameter query from a vb.net form to an mdb database

    I need to construct a Select statment to query an mdb database from a vb.net windows form. The Select statement is: SELECT * from EmployeeTable Where EmployeeNumber = Me.EmployeeNumberTxt Me.EmployeeNumberTxt is input from a TextBox on the form before executing the query. Can someone please...

Part and Inventory Search

Back
Top