Search results for query: *

  • Users: bcorbett
  • Content: Threads
  • Order by date
  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

    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...
  5. 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” />...
  6. 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.
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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'>...
  12. 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...
  13. B

    Question Passing Dataset to User Web Control

    I have a web user control that has the following properties Dim ds As DataSet Dim EditPage As String 'Properties Public Property PropDS() As DataSet Get Return Me.ds End Get Set(ByVal Value As DataSet) ds = Value End Set End...
  14. B

    Question Checkbox in Grid View

    I have a Checkboxfield in my gridview. I'm creating the columns for the gridview in code behind with the code below. Everything works, but I need the checkboxes not to be read only. But What I've figured out is that you have to put the grid into edit mode first. Is there a way around this. I...
  15. B

    Tree View value/text

    I am populating a Tree view with a Query. Right now I setting the Node to the Description of the item that is being returned from the Table. But when the user clicks on the Item I want to pass the unique ID for that item to the Subrountine that handles the click event of that node. Basiclly...
  16. B

    DataGridView header text

    I want to get the header text of the column when I click on a cell. I also want to get the value of the cell in the first column in the same row as the cell that I click on. not real sure how to do this. Could someone help me on this? Thanks in advance!!
  17. B

    SQL Agent Jobs

    Is there a way you can see if a SQL job is running? Or a DTS Package? I need to do this from VB.net. Thanks In advance!!
  18. B

    Printer Torture

    Let me begin by saying UUUUUUUUURRRRRRRRRRGGGGGGGGGHHHHHHHH!!!! ok, I feel better. Heres my issue, I have an OLD Pitney Bowes Envelope Printer that the company’s owner has become fond of and doesn't want to part with. So I have been tasked with the job of converting the FoxPro app to...
Back
Top