- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 4
- Posts with Downvotes
- 3
- Downvoting Members
- 2
32 Posted Topics
Hey, I would like to be able to send html requests to cleverbot, and if you've ever been there before, you would know that it is probably the most intelligent chat bot AI that can be publically used. If you don't know what it is, just go to [url]http://www.cleverbot.com/[/url] and … | |
I've tried this in the past, but never got it to work. How would I set specific keys to run functions, whether I am on the current form or not? Thanks! | |
Hey, Most of you who help in this forum have probably read my posts, and this is another one for my math bot. :) I am using string arrays to assign to math operands, for example I would have an array such as this for a basic math equation: 5 … | |
I've been looking around for some good DLL Injection tutorials, because I would like to create a DLL Injector, mainly for educational purposes. I've looked around on google for the past 20 minutes and the only things I've come up with are debates on whether its possible or not. I … | |
I'm making a game board style program (Basically a modified monopoly with automated pieces and questions) and it is currently in the very early stages. Right now I am making the gameboard pieces move properly etc., but once I'm finished that I will need to know how to check if … | |
Re: I think I know what you want to do, you want to print the char '*' but make them it print in a form of a square? Like so: ***** *\\\\\* *\\\\\* ***** Where the ''s are blank space (multi spaces are not supported here I presume) For that you … | |
Hey, I am using a messenging system to do math, and I am in need of help for my string splitting. What I need it to do, is basically see if there is a '/' '*' '+' or '-' and split it from that charectar, and ALSO split it in … | |
Hey, I'm making a math bot, and when you type in your equation it converts the numbers to doubles right away. Except, when doing any equation with a decimal, the decimal is ignored. Example 2 + 2 = 4 (No decimals, it works fine.) 2.2 + 2 = 24 (Decimal … | |
Hey, I'm making a little program that will talk to you using fixed sentences etc., and I want to make it able to do math. How would I be able to check if a string contains + - * / and also contains numbers? and then furthermore, once I have … | |
Hey everyone, How would I go about creating a simple chat bot? I have finally just recently got an API running for a chat application called Steam, and I can send and receive messages with this program and moderate everything that goes through, too. So, I was hoping on getting … | |
I'm trying to make custom panels, but I can't even set the styles without getting errors [CODE]MainForm.SetStyle(System.Windows.Forms.ControlStyles.DoubleBuffer, true); MainForm.SetStyle(System.Windows.Forms.ControlStyles.AllPaintingInWmPaint, false); MainForm.SetStyle(System.Windows.Forms.ControlStyles.ResizeRedraw, true); MainForm.SetStyle(System.Windows.Forms.ControlStyles.UserPaint, true); MainForm.SetStyle(System.Windows.Forms.ControlStyles.SupportsTransparentBackColor, true); [/CODE] Throws errors saying [CODE] An object reference is required for the non-static field, method, or property 'System.Windows.Forms.Control.SetStyle(System.Windows.Forms.ControlStyles, bool)' (CS0120) [/CODE] | |
How would I make the background of a form (which is usually one boring color) a dynamic gradient, measuring by size of the form and creating the gradient from there? Thanks | |
The title basically says it all. How would I include a DLL for use in another project? | |
I know you can make a Web Browser without using the default one .NET comes with, but how would I go about doing this? Any tutorials or tips for this project? Thank you! | |
Re: Pretty sure its as simple as Application.Run(new FORMNAME(); | |
Hey guys, I was just fiddling around with PixelSearch again, and found that theres a little problem. I'll explain it with an example. I had my C# custom window open with the PixelSearch function on it, and whenever it searches for a pixel rgb, it returns the results and then … | |
I need a timer that checks every x ammount of seconds if the mousebutton is down. How would I do this? Oh, and it must be global. Not just on the form. | |
Hey, I would like to call a few functions from a static method, but it seems I can't. More specifically, I would like to start or stop a timer from a static hook, called when you click your left mouse button. Here is the code [code] //When you click... public … | |
Is there a way to detect a variable change, and then fire an event for it? I read the article on events tutorial in C# [url]http://msdn.microsoft.com/en-us/library/aa645739(VS.71).aspx[/url] But I couldn't make sense of it, since I tried putting it in my program and it didn't work. I was trying it with … | |
Hey, I found a cool class online for finding certain colors in a designated rectangle around your mouse position. Its optimised for speed, and supposedly works, but when I try compiling it I get around 32 errors. Heres the code [code] public static Point PixelSearch(Rectangle rect, int PixelColor, int Shade_Variation) … | |
How would I be able to find a certain pixel on any screen under a certain RGB, and then get its x y coordinants? Thank you! | |
Re: To make 'custom' buttons, most people add images, such as what you said. So, go create your button image in photoshop, save it as a .TGA (TARGA) image (This is useful since it keeps transparency), and remember where you saved it. Then, go create your button in your developer, and … | |
Re: Why not draw a picture in photoshop or MSPaint on what you want and use the transparency key to cut off edges etc. Once you're done the picture right click properties in design mode on your form and set the background image as the one you created and voila! You're … | |
How would I get an IP address? Not the local ip, but the one people would use to connect to say a TCP IP program? :P Thanks | |
How would I be able to make my program a critical process? Thanks | |
Hi all, I was wondering how I would use a single text box for multiple things eg. In one text box I would type 'createfile file.txt' or something like 'stopprocess process' etc. How would I do that? Thanks | |
How could I make a label able to move my whole form? Thanks | |
Cross-thread operation not valid: Control 'txtIn' accessed from a thread other than the thread it was created on. I am trying to make a TCP IP Client control and when I receive a message, or basically when the receiver text box is updated, it crashes my client due to cross … | |
I know you can delete the file DW20.exe to remove Microsoft Error Reporting's core executable, but is there a system command to kill it? Thanks | |
How would I write if x is lower than y then do this?? Like if(x == 50 or lower){ y = 5; } else{ y = 2; } | |
Hey, I'm having a problem with one of my newest programs. When you run it, it stores a .txt file with nothing in it just so that it can tell if you've run the program or not. If you've never run the program, the .txt file won't be there, so … | |
I'm making a program that was created to send text as you set it at a certain delay with a stop and start button etc. I finished my GUI first, then went on to creating the controls and functionality portion of the program, and I've come to a halt. Theres … |
The End.