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 wOOdy-Soft 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 shadowlesshand

  1. shadowlesshand

    Disable Copy / Paste from text fields in C#

    Hi, Any idea how we can disable the Copy Paste option from text fields in C#? Might have to consider different browsers, so I guess its mostly a server side code. Thanks.
  2. shadowlesshand

    Credit Card or Debit Card validation in C#

    Hi All, How do we validate a credit card or a debit card using C# code. I believe Luhn check algo is used to determine the card type - Visa, Mastercard etc.. Any implementation examples? Thanks.
  3. shadowlesshand

    Firefox Allows Right Click Copy on Password Field. How to prevent this

    Hi All, Hope all's well at your end. I have a quick query. Firefox allows a user to enter a password in the password field. This is masked, however, anyone can copy this by Right Clicking on the Password field (which is displaying the masked characters) and also lets you copy it. This can be...
  4. shadowlesshand

    Printing From Crystal Reports, No DB, C#

    Thanks for your reply. I believe in this case we already know the structure (ie. static columns). But my scenario is there are several grids which request for a report to be generated. The coulmns on these grids can vary. The user is able to send the data in this grid and the column headers to...
  5. shadowlesshand

    Printing From Crystal Reports, No DB, C#

    Hi All, Is there a way to print a report from CR. I dont have a database table. Just datatable / string 2D array with the Information that needs to be printed. Column headers are included. I am using C# Win Forms code to achieve this. Thanks Karthik
  6. shadowlesshand

    Equivalent for WriteInt (as in VJ++) to C#

    Hi, I have a VJ++ code ported to C# using JLCA. I have a scenario as explained below. VJ++ CODE SAYS: private DataOutputStream dataOut = null; output = tcpSocket.getOutputStream(); dataOut = new DataOutputStream(output); dataOut.writeInt(command.length()); dataOut.writeBytes(command); IN...
  7. shadowlesshand

    What are the essentials in C#

    Wow, thats definitely one very good piece of information. Maybe at a later point of time I will come back and analyze with your help to see what next is the scope. Do keep me posted if you find something thats a must know. Any idea about the domains? Beacuse I have heard people working on...
  8. shadowlesshand

    What are the essentials in C#

    Very nice of you to appreciate. But honestly, I am new to .NET. Though I can create basic web applications, they are devoid of security features, Interfaces, Satellite Assembies, Delegates and stuff. I have only heard about these terms and nothing more. Hence the confusion as what I need to...
  9. shadowlesshand

    What are the essentials in C#

    Hi, I am a C# Developer and I been in the development field for a couple of years now. A better insight of the following would help me immensely. 1) What are technical skillsets necessary for a developer? 2) How do we and what do we refer to so that we can constantly upgrade our knowledge. 3)...
  10. shadowlesshand

    Unable to see controls on the Web Browser - Blank Project

    Hi All, I have just created a Web Application Project in VB.NET. Dragged a button onto the form and ran the project. The Project has been saved Button's visible property is set to True Default values / properties for the button HTML <h1> Sample header </h1> has been written. The problem is I...
  11. shadowlesshand

    Excel RANDBETWEEN() Language Options - Support many languages

    Hi Fellas, Can someone help me with this. There is an excel sheet with me and use the RANDBETWEEN() function in that. If this sheet is used by my friend who is in France, the RANDBETWEEN() function doesnt trigger correctly. The source cells have to be selected only after which the the function...
  12. shadowlesshand

    Does return value of main function need to be an integer

    Hi All, I would like to know if the return value of the main function in java (or any other language) actually needs to be an integer. Also what would the integer value be. If I use void as my return type, does it nullify the integer value it is actually returning? Thanks a million...
  13. shadowlesshand

    SQL Query For Custo Report

    Sorry, Can I have This: Hi All, I need to generate records for reports. Currently I have: ID EmpName ShiftType WorkDate 101 John Normal 01/12/2004 101 John OT 01/12/2004 102 Ann Normal 21/12/2004 102 Ann Absent...

Part and Inventory Search

Back
Top