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 SkipVought 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: beefeater267
  • Order by date
  1. beefeater267

    BitField Struct Help

    ArkM, This code compiles for me no problem. But regardless, if you think Bit fields are too old fashioned, what objects can i use to do my code? Bottom line is that i'm writing an interface to an ICD, and i have the bit command structures, and the positions for what each byte means. Should i...
  2. beefeater267

    BitField Struct Help

    Hi, I'm new to C++ and am trying to use BITFIELDS. Here's the code i have thus far: typedef unsigned int BITFIELD; typedef struct SelfRegistrationMsg_T { //byte 5 BITFIELD rackID : 8; //byte 6 BITFIELD controllerID : 8; //byte 7 / 8 BITFIELD controllerNetmask : 8; }...
  3. beefeater267

    CRC Implementation Help

    ArkM - Thanks for the help. I'll try it out and let you know how it goes!
  4. beefeater267

    CRC Implementation Help

    Salem, No, not like that. This is not a standard CRC algorithm.
  5. beefeater267

    CRC Implementation Help

    Hi, I'm new to C++, and I need to implement a CRC algorithm as a function, and i'm having trouble doing so. The polynomial specified is : x16 + x15 + x10 + x3 Can anyone help me out with this one? I've been stuck on it for a while. Thanks
  6. beefeater267

    404 Error when requesting .NET page

    Hey, My team just built a fresh server using Win 2003 Server and when i install my .NET web service project from the msi, it installs fine, however when i try to request a page, i get the '404 page not found' error. The page does in fact exist. Even if i goto the directory with browsing...
  7. beefeater267

    ASP.NET 2.0 Async Webservice Calls?

    Hi, I have a VS.NET 2003 project that I am converting to .NET 2.0 / VS.NET 2005. So, basically I have a web service and a web app that consumes the service. So, from VS.NET 2003, I could make calls like: webService.BeginFoo and webService.EndFoo But, when I began porting over my code, I...
  8. beefeater267

    Limit Number of Rows In DataGrid?

    Hey, I am using VS.NET 2003 and have a windows application with a datagrid. So, I want the user to be able to enter data in the rows / columns... however, I need to limit them to a max number of 100 rows they can enter. Any way to do this? Any code sample is appreciated!
  9. beefeater267

    SAXParser Exception : java.net.MalformedURLException: no protocol:

    Sedj, I thought that the argument took raw XML as a string. I did further research and found out that it must be a URL to a file. PS..... if I had correct data in my post, I wouldn't be here asking for help ;)
  10. beefeater267

    SAXParser Exception : java.net.MalformedURLException: no protocol:

    Wrong... actually the string parameter is meant to be a URL to a XML file... (not raw xml)
  11. beefeater267

    SAXParser Exception : java.net.MalformedURLException: no protocol:

    Hi, I'm kind of new to Java and I'm creating a servlet that does the following: it just needs to parse an XML string. So, I have the following code: SAXParserFactory parserFactory = SAXParserFactory.newInstance(); parserFactory.setValidating(false)...
  12. beefeater267

    create a table that is 100% of screen

    The table is not 100% the height of the screen. the top row looks about 80 px in height.. but, the bottom row is only as big as the text in it
  13. beefeater267

    create a table that is 100% of screen

    that still doesn't work
  14. beefeater267

    create a table that is 100% of screen

    hi, i'm trying to create web app and am having problems laying out a HTML table in the default.aspx page. Can anyone help? basically, i'd like a table the ENTIRE height of the screen (100%) and 725 pixels wide. Essentially, I need the top 80 pixels of the table to say header and the bottom...
  15. beefeater267

    Writing a add-in for Visual Studio Express 2005?

    Hi, Is it possible to write a plugin for Visual C# Express Edition? I'm looking to add a menu item. Thanks for any help.
  16. beefeater267

    Best Practices For Securing IIS ??

    Hi, I recently opened up my web server to the world and checked the logs after 1 hour and saw what looks like security threats. (Random IPs trying to GET wierd files). Does anyone have any best practices tips for securing IIS against attacks?
  17. beefeater267

    How To Get POST Data W/ Servlet?

    So, does: "doPost()" and "doGet()" always get executed? It seems confused b/c my servlet is not the application doing the posting. It is simply retreiving information that was posted to it. I would have thought it would need to implement 'doGet()' because we are 'getting' the values that...
  18. beefeater267

    How To Get POST Data W/ Servlet?

    What's the difference between the implementations of doPost() and doGet()
  19. beefeater267

    How To Get POST Data W/ Servlet?

    Hi, I need to create a JAVA Servlet which just needs to capture HTTP POST data coming from another web application. How do you retrieve HTTP POST data w/ a Java Servlet? For example, support I have a form w/ a text box named 'job'. When the data is posted via HTTP to the servlet, how can i...
  20. beefeater267

    Difference Between J2EE 1.4 and J2SE 5.0

    so, should you download both J2EE AND J2SE

Part and Inventory Search

Back
Top