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. M8KWR1

    Get geolocation server side.

    I do believe this question is more relevant to .net, as I want the longitude and latitude from the javascript to be accessible in my .net server side code. If a java person does not have .net experience then surely they would not be able to assist me!
  2. M8KWR1

    Get geolocation server side.

    I have the following script to get the long and lat (after prompt, and they say ok), and it populates 2 hidden fields. What I have trying to do is get this to server side so I have use the information a db query. I have tried to use a ontextchange event, but no event is firing! Any assistance...
  3. M8KWR1

    Controlling the url and what to display on the web page

    Sorry, really unsure how to word what I am trying to achieve I would like to be able to get rid of the .aspx but in the url, but the website still be able to know what content to display. Would this be a matter of controlling the error404 page - or is there another solution that fits what I am...
  4. M8KWR1

    Adding a row to Datagid - WPF

    Hi, a bit stuck. I have a datagrid that i load data into on the window load, into the itemsource via a datatable On the window is another listview, which I want to add a new row to the datagrid when the user double clicks on the listview. How do you add a new row to the datagrid. Any help or...
  5. M8KWR1

    Dropping an image from desktop into textbox

    Hi, I am trying to drag/drop an image from the desktop (or any location), into a textbox field. I want to be able to capture the filename/locations. From there I know what I want to do, but unsure how to do the above. Any help would be appreciated.
  6. M8KWR1

    Opening Crystal report that is included in Project

    I've got this code Dim crReportDocument As New ReportDocument() crReportDocument.Load() I have a report in the solution called "company details.rpt" All i am trying to do is load this, so i can then apply it to the crystal viewer, but can not figure out how to do this. Can anyone...
  7. M8KWR1

    Subreports wrapping page properly.

    HI, I have a report that has a subreport. But the data been pulled from the subreports forces a new page in the report, where i would like the data underneath one another. example: the first data been pulled is 1 line, but the second record is about 2/3 of page. Above the subreport, i am...
  8. M8KWR1

    Script to change image on page from mulitple drop downs

    Is it possible to have on a form multiple drop downs, and then to get these to affect the image that is displayed on the webpage? Example, DD1 (Colour) - Red, Blue, white, black DD2 (Front Logo) - Logo1, Logo2 DD3 (Front logo Colour) - Red, Blue, white, black DD4 (back Logo) - Logo1, Logo2...
  9. M8KWR1

    Change a Report FilterOn property

    Aceman many thanks the only things that was wrong in your code was i had to use FilterOnLoad.... but thanks for pointing me in the right direction... EXCELLENT
  10. M8KWR1

    Change a Report FilterOn property

    I can not set the filter on the report that way... The code i am using for the pdf file, just needs the report name, and nothing else!!!! So i was kind of wondering if there was a way to over-ride if the report uses the filterOn or not... As default the report use FilterOn, and i have set a...
  11. M8KWR1

    Change a Report FilterOn property

    Is there a way to change the filterOn property of a report before i run the report, via some vba. I know i can do this within the report, but i am using some code to export this to a PDF document - and it does not hit the report_load procedure. As default the report has a filter setup, but i...
  12. M8KWR1

    Encoding utf-8 - reading

    I do have more things i will need to replace, does anyone know of website which displays them all to me Many thanks for your help so far.
  13. M8KWR1

    Encoding utf-8 - reading

    Unsure if this is the correct place to ask this question, but i have this code Dim IPNResponseStream As Stream = strResponse.GetResponseStream Dim encode As Encoding = System.Text.Encoding.GetEncoding("utf-8") Dim readStream As New StreamReader(IPNResponseStream, encode)...
  14. M8KWR1

    HTML POST via code

    Hi, I have got the following code, which all works fine, just so you know it queries paypal... System.Web.HttpContext.Current.Response.Clear() System.Web.HttpContext.Current.Response.Write("<html><head>")...
  15. M8KWR1

    How to get carriage return to display

    sorry, my fault i was reading it up-side down and back-to-front... Many thanks again, perfect... i should of tested it before i commented....
  16. M8KWR1

    How to get carriage return to display

    brilliant, that works. is there another way so a user would not have to put the <br> into the text??
  17. M8KWR1

    How to get carriage return to display

    I am accessing an sql table with a text field. I am adding a label control at runtime, with the data from the above field. When i am creating the data it contains carriage returns, but when it is displayed on the webpage, it is just one line of text. What are my options to get this work. I...
  18. M8KWR1

    Create menu dynamically

    really sorry i have fixed it now... i have just been having one of those days which everything i did just did not happen for me...
  19. M8KWR1

    Create menu dynamically

    Sorry having one of those days. I want to create a side menu, from a list of information in a table. I think i need to add control to the page, which i think i have figured out, but just struggling to place them where i need them to be.
  20. M8KWR1

    Create menu dynamically

    Hi, I have got a database containing a sub menu. which will constantly change. Within the data that i am bringing back will be the Name, order_by How do create the menu dynamically, assign a style and a url link. I know how to get the data out of the database, but its just doing the other...

Part and Inventory Search

Back
Top