Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
C

cjengler

@cjengler
About
Posts
28
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Is this a simple algorithm?
    C cjengler

    If I recall correctly, Trig is high school level mathematics which does not make it advanced by today's standards.

    Algorithms graphics algorithms regex tutorial question

  • acm problem: firenet
    C cjengler

    I agree with you totally on the number of queens that could be placed on this board due to wall constraints, this is why I suggested a modified version of n queens. The wall constraints could easily be taken into account and still allow for the same "Basic" n queens algorithm to function correctly.

    Algorithms php algorithms help question

  • acm problem: firenet
    C cjengler

    This appears to me to be a simple modification of the n-queens problem. Placing n queens on a board such that no queen can capture any other queen. I would persue this line of thought with a google search on the n-queens problem.

    Algorithms php algorithms help question

  • data mining algorithms
    C cjengler

    Take a look at http://www.autonlab.org/tutorials/[^]

    Algorithms algorithms question

  • data mining algorithms
    C cjengler

    To do what? There are a multitude of data mining algorithms each offering benifits in specific areas. You need to be more specific about what you are trying to accomplish.

    Algorithms algorithms question

  • Reading text file problem with casting to double
    C cjengler

    This error tells me that the string that you are passing in to be converted contains something other than numbers and a decimal point. For example if you pass in "A32.41" the conversion to double will fail. If you pass in "36.42" the coversion will pass. Look to see what the actual string is when you call the convert function.

    Algorithms help

  • Reading text file problem with casting to double
    C cjengler

    Replace: y = (double)(lstChars.ToString()); //error with: y = Convert.ToDouble(lstChars.ToString()); You are attempting to perform a cast that is not implicit. You need to use the ConvertTo function to handle this type of cast. Also, if the string does not represent a double or has characters in it that would not be used to represent a double the cast will fail.

    Algorithms help

  • (220v Relay), please help
    C cjengler

    I use something like this for control of Christmas lights. http://www.herbach.com/Merchant2/merchant.mv?Screen=PROD&Store_Code=HAR&Product_Code=TM03RLY4706&Category_Code=RLY[relay]

    C# help question

  • DLL Problems
    C cjengler

    Thanks for the help. We have solved the problem. It was an internal security issue. Thanks again

    C# csharp question

  • DLL Problems
    C cjengler

    I am trying to develop a C# library that will be used by other class libraries in our orginization. I am have great difficulties in getting our other class libraries to be able to call methods of this library. We can create an instance of the public classes in my library but are unable to call any of the public methods or properties (even static ones) of that instance. Can anyone make a suggestion as to what I am missing here?

    C# csharp question

  • Resizing an asp:table
    C cjengler

    I currently have an asp:table on my form. I have been asked to make it act like a splitter would in that you can grab the border and drag it to the size you wish. Is there a way to do this with tables or should I look at revamping the app to include a splitter?

    ASP.NET question

  • c# program using a barcode scanner
    C cjengler

    If you get a Keyboard wedge barcode scanner then when you scan an item the barcode numbers are simply outputed to the textbox (or other control) that has current focus. With the keyboard wedge there is no need for any specific software or drivers.

    C# csharp database hardware tutorial question

  • C# Project
    C cjengler

    What I did for my final projects was go to different departments through out the campus to discover what they needed written and then selected from that list. In the end I wrote a complete point of sale system for the bookstore. I had 9 months to work on this though so you may need to scale back based upon your skill set and time available. Hope this helps

    C# csharp

  • help me about insert
    C cjengler

    seferi wrote: string ins = "INSERT INTO tabela(Column1,Column2,Column3,Columns4)VALUES ("+ "'"+ this.txtColumn1.Text + "'" + ","+ "'" + this.txtColumn2.Text + "'" + "," + "'" + this.txtColumn3.Text + "'" + "," + "'" + this.txtColumns4.Text + ")"; Your first problem comes after your this.txtColumns4.Text. You forgot the ending "'". Like I said, that is your first problem and actually your smallest. Your biggest problem is that you are open for Sql Injection errors. You should really be using paramterized queries to prevent this. Please see http://www.codeproject.com/useritems/SqlWrapper.asp[this]

    C# help csharp security question

  • Application always on top?
    C cjengler

    It may be that I just don't have enough coffee in me yet this morning but out of curiousity, if I have two apps with both set to TopMost which one actually appears on top? Guessing it would be the last one open but I may be wrong.

    C# question

  • How to Solve Integration Equiation ?
    C cjengler

    I am unsure as to if there is a class out there to do integration. I would suggest using Remiann sums and limits with ever increasingly small delta values. You will be able to get a close approximation for the integral. If anyone knows of calss to do differentiation and integration please comment on this. Thanks

    C# tutorial help question

  • Escape Single Quote
    C cjengler

    Hi, Is there a simple method to place two single quotes anywhere there is a single quote so that single quotes can be inserted into a database? Currently I have been searching through each string (textbox, or what ever it may be) and manually (looking at each character in the string) replacing the single quote with two single quotes. I have also tried the Replace function but that does not appear to change the single quotes. If any one has experinced this please pass on your knowledge or point me in the right direction. Thanks Joe

    C# database algorithms question

  • Crystal reports Problem HElpppp Me
    C cjengler

    You need to visit the Crystal Reports website and register the version that came with your VS 2003. Then you need to read their install/use PDF. It tells you which files you need to include in your project and how to register the license to that project.

    C# help csharp visual-studio question

  • DropDown Button
    C cjengler

    I am somewhat young in C# but what has worked for me is to add a context menu to the button.

    C# csharp question

  • Click outside of form detection
    C cjengler

    At least you have a decent user name :)

    C# question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups