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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by cfprg

  1. cfprg

    any java IDE that is similar to Visual Studio

    I am basically a dotnet developer. I use visual studio.net IDE to develop application. Now i need to create a small desktop application in java which will a form (a bit complicated to type all the code, as there are many controls i need to add). I can make the same application in no time in...
  2. cfprg

    thread is at a location at which function evaluation is not possible

    Thanks chiph, i figured it out. The problem was in regex itself as thread parsing it was going into infinite loop, i changed my regex and it works fine now.
  3. cfprg

    thread is at a location at which function evaluation is not possible

    Regex regEx = new Regex(xmlZone.InnerText, (RegexOptions.Multiline | RegexOptions.IgnoreCase)); matches = regEx.Matches(bldrZone.ToString()); foreach (Match match in matches) { //code } The strings "xmlZone.InnerText" and "bldrZone.ToString()" are available until i try to match...
  4. cfprg

    hread is at a location at which function evaluation is not possible

    can anyone let me know the reason for this error "evaluation of function 'someStringBuilder.ToString' cannot take place because the thread is at a location at which function evaluation is not possible" Thanks in advance.
  5. cfprg

    regular expressions: look for a string that doen't have a substring

    I am parsing a file that has information as below: port x: id (yy) Vendor: xxy SN: xxxxxxxxx port x: id (zd) Vendor: xyz SN : xxxxyyyy " " " port x: id AZ SDWES x-Port xx:xx:xx:xx:xx:xx:xx:xx port x: id DW WDES x-Port...
  6. cfprg

    default marshalling?

    What is default marshalling in .NET?
  7. cfprg

    View state error ..

    Hello there, My form has "runat=server", and it is submitted to another page. The error i get is in "viewstate". This is one of the error messages: "2) Viewstate can only be posted back to the same page." I believe with viewstate i can't submit my data to some other page, As i always do in...
  8. cfprg

    printing a word document to a network printer

    I am using pocket pc. With desktop application i know we can print just by selecting print from file menu. but we don't have any such functionality for pocket pc. hence i need to find other way. Like i want to invoke the document from the server and print it to the network printer.
  9. cfprg

    printing a word document to a network printer

    Does any one know how to print a word document using asp or asp.net to a network printer. I am trying to do something like : press a print button on the webpage, which prints out word document from the server to network printer. There is a very little info on the web which shows how to print...
  10. cfprg

    printing word document using asp on network printer

    I want to print a word document on the network printer using asp. the functionality i want to acheive is: ---> when i press a button(named print) on the webpage, it should invoke the specific word file from the server and print it on the network printer. i need a code which invokes word file...
  11. cfprg

    Element RESPONSEHEADER is undefined in CFHTTP

    never mind..I figured it out..
  12. cfprg

    Element RESPONSEHEADER is undefined in CFHTTP

    Hi All, I get this error. Element RESPONSEHEADER is undefined in CFHTTP. when i dump cfhttp, i can see the struct for it.it seems o.k. i can see responseheader in the struct with corret value. my http method is "get" and the following is the code i use.. <cfset...
  13. cfprg

    Printer connection acces denied

    Hi All, I am trying to print using windows script. I am using the following code and the error i get is WSHNetwork.AddPrinterConnection (0x80070005) Access is denied. <!--#include virtual="/include/ConnFile.asp"--> <% ' Get information from our form ' strPrinterPath =...

Part and Inventory Search

Back
Top