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

Search results for query: *

  • Users: cfprg
  • Order by date
  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 =...
  14. 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 = "\\khufu\XEROXdoc"...
  15. cfprg

    cfhttp connection failure

    I am using the following code and getting Connection Failure error..any ideas..Thanks in advance <cfhttp method="post" url="http://127.0.0.1/grades/example8.cfm"> <cfhttpparam name="form_test" type="FormField" value="This is a form variable."> <cfhttpparam name="url_test" type="url"...
  16. cfprg

    configuring xerces with tomcat / support for jdom and sax

    Thanks sedj for your quick response. I put all the necessary jar files xerses and xalan.(i think)..but i will try if i am missing anything..
  17. cfprg

    configuring xerces with tomcat / support for jdom and sax

    This is the problem i get when i run my jsp page on tomcat... type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception org.apache.jasper.JasperException: Unable to compile class for JSP Generated...
  18. cfprg

    html to javascript

    Hi guys, Thanks a lot for the quick responses. Unfortunately, i tried various ways with quotes either single or double..but none of them worked(though it obviously works on my desktop but not on pocket pc)..i think this is due to pocket pc's limited support for javascript..now i have to find...

Part and Inventory Search

Back
Top