Search results for query: *

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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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)...
  8. 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.
  9. 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 =...
  10. 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)...
  11. 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...
  12. R

    DotFuscator...Huh? Where are instructions?

    I chose to start using Dotfuscator with my current project. This is the Community Edition bundled with VS.NET 2003. There are no directions anywhere. I did register today but never got the email to validate my account, so that I could use the PreEmptive Forum forum. I followed these...
Back
Top