85 Discussion / Question Topics
Remove Filter I'm trying to test my application and it keeps giving me the following error. I've never seen it before so I don't know what to do. Error :: Assembly generation falied -- Referenced assembly 'Dev9' does not have a strong name. | |
I need some help with networking information. I've figured out most of the simple stuff and made it simpler still with an application extension, however there are a few things that still confuse me. With sockets it "appears" as though I have the ability to send information such as text … | |
I've noticed that while programming sometimes a tool tip window pops up beside the selected class in the drop down window while typing. This tool tip often contains a description of the class or variable that is highlighted or selected. I was wondering how to do this for my own … | |
I'm trying to get the Physical Address of the user's computer but having no luck. I developed a method that was working but isn't anymore. I'm also having trouble getting the IP Addresses Broadcast and Loopback. [CODE] string ip = IPAddress.Broadcast.Address.ToString(); string ipl = IPAddress.Loopback.Address.ToString();[/CODE] The physical address is the … | |
How would I go about creating a loading screen or method that will load all my components and show the progress of loading through a progress bar. I would love to set something like this up for some of my larger form applications. I know how to do it with … | |
I'm developing an application that contains a picture box. I want the picture box to display the user's profile picture. The one that shows up on the logon screen for windows. I don't know how to even approach this, I've been trying to look for a directory but I don't … | |
I have a string array that I'm storing complete strings into. The array size is 1,000 so that I have plently of space to work with. Storing the strings into the array is working just fine. The part I need help with is removing specific indexes from the array. I … | |
I'm trying to develop a program that will factor a trinomial with a single variable. I'm using a string array and substrings to get the terms, however I'm having trouble with getting the factors of the AC Method. For those who don't know how to factor polynomials using the AC … | |
Okay so I have figured out a simple solution but the problem is it might not always work; so I want to combine it with something else to make sure my applications only run on the computer that ran the application first. Basically I retrieved the host name of the … | |
I've decide to create a dock like application kind of like Macintosh's dock. I need some assistance finding information on how to get application icons, and how to allow users to drag and drop application shortcuts into the dock, as well as how to stop the applications from opening a … | |
I'm trying to create a console application that will write an entire paragraph one letter at a time (on a timer for instance) without creating a new line everytime. My problem is that I can't figure out how to do it without if and else if statements. I thought about … | |
I'm trying to learn how write Silverlight applications and implement them into my website. I also can't figure out how to add a timer component to it. I know a little bit about C# programming but almost nothing about HTML. So any help is appreciated here. | |
I have a random string generator but it's not erasing the string every time it creates a new random one. Instead it's just adding to the old one. The code snippet is inside of a method that requires a boolean value (rText) to decide if it should use random text … | |
I'm trying to develop a class library that contains some of the code I don't like having to type into multiple applications. So I need help figuring out if my coding is right on this one? I don't have an SMTP server to test with. [CODE] public void Send(String client, … | |
I've always enjoyed naughty stuff like this; it's useful to me in most cases because I set my timer up on a 10 second interval, that way when I tell people in chat's that I'll be right back, it sends that message every 10 seconds (so not to annoy them) … | |
So I don't want the icon from my application to appear on the taskbar. Not even when the application is minimized or even visible. I don't know how to do this and can't find any information on the subject. | |
Been a while since I had a problem; so I guess it's about time. I've written a .dll that has a few methods, and a few variables. It has a method called Create(int x, int y) that will place a new 4 square formation onto the form in the project … | |
I've been trying to find information on this everywhere for quite some time now. I want to build DLL plugins for my application, but don't want to implement them at basic run time. I want the user to be able to import them through an open file dialog. Any help … | |
I have two problems; collision detection, and menu navigation. My collision system seems to work just fine until my object meet at certain points then they ride together. This is troublesome in a pong game. For my collisions I'm inverting the X coordinate for the ball on intersection with the … | |
I'm trying to get some information on the live XBOX stat's feed. Like recent games, gamer score, rating, and gamer picture. I want it to update continuously (like if you were on Microsoft's website viewing someone's XBOX Live profile, or on the XBOX itself looking at their live stats) and … | |
Okay so I've been running into trouble, I've figured out the majority of it. However, I can't seem to figure out how to save the location of a button. I could do it my way but my way is really ghetto and not recommended. The way I would do it … | |
Most web browsers print the web site's title in the form text. So I want to do the same thing on navigation if possible. [code]// Only prints the URL. So please help. string siteName = webBrowser.Url.Host; this.Text = siteName;[/code] Much thanks! | |
Okay I'm trying to set up an open file dialog to grab a dll of my choice, then inject it into the application. I know how to use my own custom DLLs, but I also want the ability to make DLLs then use them without modifying the source after run … | |
Okay, I have a menu Item that I only want to be enabled and visible if the user activates it through encryption key. My menu item is on a separate form than the encryption analysis and I can't figure out why it won't enable the item. It will pop up … | |
Okay so I have a few problems that I need help with. The main one being Multi Form Access. [B]Multi-Form Access:[/B] How would I go about accessing items in a secondary form. Like with .NET it would be: [code=]'.NET Syntax' formName.itemName.Enabled = true 'or' formName.itemName.Enabled = false[/code] However this isn't … | |
Okay so this has been bugging me for quite sometime. I thought if I skipped it and came back maybe I might figure it out but I guess not. The basic idea is to let the user generate their own content into a list box, text box, and the content … | |
Okay I finally figured this out... Thanks to getting curious and creating an encryption key for my application. It took me a second to understand it but here is the result. Make sure you declare your variables in the settings tab of the properties to your application. [code] void Form1_Load() … | |
Okay so this has been bugging me for quite sometime. I thought if I skipped it and came back maybe I might figure it out but I guess not. The basic idea is to let the user generate their own content into a list box, text box, and the content … | |
Okay basically I need my application to increase an objects size and move it's location at the same time. Basically, it'll increase the size, then drop it to a set value once it reaches a different set value. It needs to appear as though it's a growing shadow of an … | |
Okay so this has been bugging me for quite sometime. I thought if I skipped it and came back maybe I might figure it out but I guess not. The basic idea is to let the user generate their own content into a list box, text box, and the content … | |
Okay so I've always been a fan of creating and calling my own functions. With C# it's pretty simple. We're going to start out with a basic Windows Forms Application for this in the end your application will animate a label on the form though multiple colors. Only difference here … | |
Okay so a new problem presents itself to me. I have an intense source code that is currently about 5,000 lines long and is quite frustrating to manage. I want to learn how to use multiple source files, like with c++ you would use include. [CODE]// It says it's C# … | |
Okay so I got the original working and is fairly simple. Only problem is I can't figure out how to set it up to scroll one color section after the other. Like this pseudo code would be: [CODE]if (color1 >= 255) { color2++; } if (color2 >= 255) { color3++; … | |
Okay so I've been trying for a few days now and just can not seem to figure this algorithm out. Right now I'm trying it with a while loop but still not working. Basically here is my snippet. It's on a timer for 10ms. [CODE]void colorScrollRotation(object sender, EventArgs e) { … | |
Okay so I know practically nothing about creating mathematical applications in C++ but am trying to learn. Practically everything I search for isn't anything close to what I need. Basically, I need to lean how to make a calculator style app first before continuing on, however I can't find anyone … |
The End.