Search results for query: *

  1. B

    IIS 6 Compression

    I have the following function running in a webservice: <WebMethod()> _ Public Function Mobile_ReturnDataset_New(ByVal UDID As String, ByVal DeviceID As String, ByVal Passkey As String, ByVal LastRev As String) As DataSet Try Dim dsDemoData As...
  2. B

    Question How DO you create a taskbar

    I want to create a form that will act like the task bar (Where the Start button is). Just a thin bar that is movable. Not real sure where to start. Thank!
  3. B

    Adding Controls Dynamic

    I'm trying to add a DataGridView to a Split Container Panel. I am able to add the control, but it just places it on top of the old one. What I want is to add it below the existing one. Can't figure out how to do it.
  4. B

    Webclient UploadFile

    First of all, thanks for the post. I think I have better understanding of this. I did download fiddlier2 and I ran a test page that works and this is what I the post looked like: -----------------------------7d92bfe90ea0 Content-Disposition: form-data; name="MAX_FILE_SIZE" 5000000...
  5. B

    Webclient UploadFile

    WHAT I WANTED TO SEE!!! Thanks Dude! <?xml version="1.0"?> BUBBA01 <dmsXML version="1.0"><jobid value="0"/> <rescode value="BADLOGIN"/> <rescode_description value="Authentication Failure."/> </dmsXML> I get the Badlogin error because this code is sending the login info as Querystrings...
  6. B

    Webclient UploadFile

    I have following form to automate in vb.net: <html> <body> <!-- The data encoding type, enctype, MUST be specified as below --> <form enctype="multipart/form-data" action="http://www.nikonet.com/api/customerid.php" method="POST"> <!-- MAX_FILE_SIZE must precede the file input field --> <input...
  7. B

    Http/post

    I have the following HTML form <form enctype="multipart/form-data"action="http://www.SomeURL.com/id.php" method="POST"> <input type="hidden" name="MAX_FILE_SIZE" value="5000000" /> <input type=”hidden” name=”AUTH_NAME” value=”john” /> <input type=”hidden” name=”AUTH_PW” value=”mypass” />...
  8. B

    Question Input Box

    Does anyone know how to get a value from a Java script Input box? I tried to use the vb.net inputbox but it only works in the dev enviroment. I'm doing a save routine that pops up a input box and passes the value to a vb.net function.
  9. B

    Global Class

    I'm new to OOP so forgive my ignorance. I have a login on page that I want to create some global variables for. I'm currently using Session variables but I want to use a class. Is there a way to create a class and populate its properties with the user's informations. For example: When the...
  10. B

    RSS Reader

    I have the following Reader. It works fine when I run it locally. but when I put it on the production server. it doesn't load the elements. I don't get any errors, it just doesn't load. I ran into this before and I had to download the rss feed and save it as a xml file and it works. But I had to...
  11. B

    Using Response from within UpdatePanel

    I get this error when the below function runs from within an Updatepanel: Function CreatePDF(ByVal path As String) Response.Clear() Response.AppendHeader("content-disposition", "attachment; filename=sample.pdf") Response.ContentType = "application/pdf" Dim doc As New Document...
  12. B

    ASP.net Add Image to PDF and Download

    CHEERS TO YOU!!!! That is exactly what I needed!!! Works like a champ. Thanks!!!
  13. B

    ASP.net Add Image to PDF and Download

    I have an image on a form and I want to Convert (or create) to PDF and then send a stream for download. I don't want to create a physical file, just create the pdf and then allow the user to download the PDF. I'm not against buying a Control, but I haven't been able to find one that does...
  14. B

    Passing values to javascript function from asp.net button

    I saw that too. I'm not real sure where its coming from. I assumed it was ASP.net creating that code on compile.
  15. B

    Passing values to javascript function from asp.net button

    It looks like that code is doing what its supposed to do, but the page is blinking. meaning, I see what I expect to see, then it disappears, like its posting back. I sent you a link to the page I'm working on via PM. If you have a sec could you take a look and see where I'm screwing up? I'd...
  16. B

    Passing values to javascript function from asp.net button

    I'm trying to pass the values in the textboxes below to a Javascript function (also below) on the button click of a ASP.net Button. I've been looking and can only find ways to it on page load (<body onload="initialize()">) Any Help will be appreciated! <script type='text/javascript'>...
  17. B

    Question XML for SQL Stored Procedure

    Nah, that I know how to do...LOL
  18. B

    Question XML for SQL Stored Procedure

    Thanks for your help! I converted the C# code that was on that tutorial that you pointed me too. I tweeked it a little bit and it does what I want it to do. It Creates an XML doc from a Dataset and then converts the Format. Now I just need to pass the stored procedure the String and I'm Done...
  19. B

    Question XML for SQL Stored Procedure

    Thanks for moving my thread. I looked at the link you provided. I'm not trying to create a XML file I am trying to write the xml to a varible that I then pass to a Store Procedure. How do I run XSLT against a variable in vb.net? Again I'm a little over my head with XML more with XSLT. So...
  20. B

    Question XML for SQL Stored Procedure

    Let me start out by saying that i am XML stupid!:D I'm not even sure I'm asking this correctly but here it goes.... I have a Stored procedure that will look similar to the following: Declare @RegionList varchar(1000) DECLARE @DocHandle int EXEC sp_xml_preparedocument @DocHandle OUTPUT...
Back
Top