Thanks!
Sokka93
Posts
-
Jagged Arrays Definition -
Jagged Arrays DefinitionThank you so much!
-
Jagged Arrays DefinitionHello everyone. As far as I know Jagged array is also called "array of array" does that mean that I can use a definition like int[][][] Jagged Array = new int[3][3][]? And does it mean "array of array of array"? I mean if I use something like that does it contain 9 arrays in it? if I'm wrong how can I define something like that? Thanks in advance!
-
How To Create My Own File Encryption AlgorithmNo not just numbers. Letters and numbers. BTW Is it a problem for a key to be long? Are there any restrictions about it? Because the key can be so long. My algorith decides Its length according to the lenght of the text. So the key might be so long. I plan to put the text into a cube and turn it according to random numbers. Like The Cube Of Rubik. ANd I'm thinking of saving all the moves and create a key with it.
-
How To Create My Own File Encryption AlgorithmBecause I'm going to use it to enroll a competition. All I'll do is to create a random encryption algorithm. It works with text but the problem is I create the key and I can't think any way of giving the key to someone. Because the key is random too. So I decided to use it to encrypte files.
-
How To Create My Own File Encryption AlgorithmHello. I've created a text encryption algorithm and it works fine. The problem is I don't know how to encrype a file. Can anyone tell me how to do that? I don't want any code just some tips. Thanks in advance.
-
Creating application settings at runtime?Thank you very much!
-
Coloring picturesThank you all for your good answers.
-
Coloring picturesHello I'm using the below code to color a picture but it is pretty slow is there a way to do it faster? Thanks in advance.
Bitmap Turn(Bitmap pic) { Bitmap newpic = new Bitmap(pic.Width, pic.Height); for (int i = 0; i < pic.Width; i++) { for (int j = 0; j < pic.Height; j++) { Color color = pic.GetPixel(i, j); newpic.SetPixel(i, j, Color.FromArgb(123, 46, 125)); } } return newpic; }
-
msgbox show for a set timeThank you so much guys.
-
msgbox show for a set timeHello, Is it possible to show a message box (while the macro is running, importing external data) without buttons, but only with a message and while macro is running and when macro stops running it closes itself. Thanks.
-
Creating application settings at runtime?Is there a way to create application settings at runtime? So that I can save the locations of each controls on the form. Thanks in advance.
-
How to transfer text to label from richtextboxHello, I have been trying to transfer text to a label from richtextbox. The problem is I can't equalize font and text color. For example, if I write "Hello World!" it seems the same on label but when I write "Hello World!" it seems "Hello World!". Is there a way to equalize them? Thanks in advance.
-
How to remove a videoYes I did. I already know what the article tells.
-
How to remove a videoPlease help me!
-
How to remove a videoSorry but it didn't help.
-
How to remove a videoHi! I'm using Microsoft.DirectX.AudioVideoPlayback to play a video on my application. I can add more than one video at run time. But I can't distinguish them and remove them.
Panel panel=new Panel(); Video video=new Video(); video.Owner=panel;
I use the code above. I can't remove the video. What should I do? Thanks in advance. -
Saving User and Application Settings in WinFormsThank you. What if I don't know how many buttons or controls exist? How can I create a setting for each control? I'm working on a programme that users can add controls at run time.
-
Saving User and Application Settings in WinFormsI want to save changes in my C# form. So I tried this. There are 3 buttons on my form but the code saves only button3's location. What should I do? Please help me!
foreach (Button a in Form1.ActiveForm.Controls) { Properties.Settings.Default.SavedSetting3 = a.Location; } Properties.Settings.Default.Save();
Thanks in advance
-
A problem with wmp.dllI'm using The COM component wmp.dll but when I add the component I cant see the pause,stop,volume etc. buttons. Can you help me about it? Thanks in advance.