Search results for query: *

  1. R

    cloud, virtual,dedicated?

    I am developing two low-traffic . NET ecommerce apps both of which will need their own IP’s and their own databases preferably both win/sql 2008. I will also be hosting a few ASP.NET starter sites. I’m confused about whether a cloud server or Virtual server will serve my needs. I am...
  2. R

    HOw do I troubleshoot browser issue?

    Was an omission. Actual code: <form id="form1" runat="server"> <div id="Table_01"> <div id="Banner-1024x101_"> <img id="Banner_1024x101" src="http://www.vbdotnetforums.com/images/Banner_1024x101.png" width="1024" height="101" alt="" /> </div> <div id="-menu-172x767_">...
  3. R

    HOw do I troubleshoot browser issue?

    I deployed an ASP.NET 4.0 web site to my development(beta) server(W2K8-64bit running Framework 4, IIS7.5) on company intranet and one of the pages no longer displays correctly when viewed from my local machine(IE8, .NET 4, win 7 PRo, 64-bit). he page that contains a CSS-table created with a...
  4. R

    Don't understand using UpdatePanel/progress bar with long-running processes

    This code behind emulates a user choosing 3(could be up to 10) reports and hitting submit button on the web interface. I don't know how to complete the code to execute parameterized batch file using an UpdatePanel and/or background-workers. Imports System.IO Partial Class UpdatePanel...
  5. R

    Local foldername prepended to UNC Path

    If i put this in debugger: String.Format(FilenameFmt, GetFileDateString(tmpDte))), DateTime.now.ToString("MM/dd/yyyy")) I get \\resource_center\reports\2010_03_29_sales.xls Which is exactly the URL I would like to link to. (where 2010_03_29 is the return value my custom GetFileDateSTring...
  6. R

    Local foldername prepended to UNC Path

    dim filenameFmt as string = "\\resource_center\reports\{0}_sales.xls" Dim dlyOutline As New PdfOutline(m_pageoutline, New PdfAction(String.Format(FilenameFmt, GetFileDateString(tmpDte))), DateTime.now.ToString("MM/dd/yyyy")) My local drive name keeps being prepended to UNC and causes error...
  7. R

    Question Get parameter values with ScriptControl and ParameterInfo

    :confused: I've almost accomplished getting method parameter name and values. TestScripting("I hope this works") Public Sub TestScripting(ByVal A As String) Dim oscript As New MSScriptControl.ScriptControl oscript.Language = "VBScript" For Each oParm As ParameterInfo...
  8. R

    Freelancer from London

    Actually only the multipage PDF generation is urgent. The code is written but doesn't work. For someone who knows ItextSharp, they will probably be able to look code and spot the problem.
  9. R

    Freelancer from London

    Yes I am. The template is LFS_CWSR_template.pdf. Please don't be confused by the specs in the word doc. The only thing I need urgently is to create multipage pdf from a template. I provide the code that I have done also but is too slow. http://harbortownsolutions.com/posttosite.zip
  10. R

    Freelancer from London

    ITextSharp programmer? I need assistance with creating pdf from template by tomorrow. LOL. . I can pay. especially if you have Paypal. there is more if you are interested.
  11. R

    Question Why don't I get the option to sum a column?

    I'm designing a simple Crystal Report in VS.NET 2005. I am using an XML file as my datasource . I am trying to sum my Week To Date sales column. But whenever, I add "running total", to the Group Footer, I don't get "Sum" in the dropdown. I get maximum, minimum, count, distinct count...
  12. R

    Deploy Files to custom folder question

    I've never used MSI deployment and am having a hard time using Setup and Deployment project. I have added a project to solution and specified the simple stuff: primary output, etc... But I need to 1) move my Windowsform.exe to c:\myapps\myproject 2) Move a custom config file( mycustom.config)...
  13. R

    How do I sell eBooks on website?

    I would like for customer to place eBook in shopping cart and upon check-out/payment and email with the locked/encrypted PDF would be attached along with the key to unlock.
  14. R

    If statement is false but code doesn't execute

    When I looked back at this with a fresh eye this a.m. what I wrote makes no sense. The "If" statement is evaluating to true although the _required = false. What I am trying to accomplish is: give an error message only when the field is required and length is 0. My eye is not fresh enough to...
  15. R

    If statement is false but code doesn't execute

    :o I've not been to sleep in 18 hours. Pseudocode for the problem portion of the statement: if field is required there is no data return an error message What's is this statement returning true.? When I take it thru debugger, the first test is false yet Code: dim val as string =...
  16. R

    Transform non well-formed document?

    My vendor doesn't always send me well-formed html documents. How can I use VB.NET to transform these documents. xmldoc.Load(server.MapPath("SCCPage.htm")) dim sXpath as String sXPath = "//table[id='ProductDataList']" dim nodes as XmlNodeList nodes = xmldoc.SelectNodes(sXpath)...
  17. R

    Need param names and values programmtically

    unfortunately, i think you're right
  18. R

    Need param names and values programmtically

    Usually when no one responds means its a stupid thread. :) Please let me know if this topic doesn't make sense.
  19. R

    Need param names and values programmtically

    oh yeah, this is ASP.net 1.1
  20. R

    Need param names and values programmtically

    Im building an error routine that will give me the variable names and the values in the faulty sub or function. Public Class myParamInfo public paramName as string public paramValue as String paramType as string End Class Calling Code: Dim stFrame As New StackFrame Dim...
Back
Top