Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

Member Avatar for Jazerix

[CODE]using System; using System.Security.Cryptography; using System.Text; public static class Encryption { public static string Encrypt(string input, string key) { byte[] inputArray = UTF8Encoding.UTF8.GetBytes(input); TripleDESCryptoServiceProvider tripleDES = new TripleDESCryptoServiceProvider(); tripleDES.Key = UTF8Encoding.UTF8.GetBytes(key); tripleDES.Mode = CipherMode.ECB; tripleDES.Padding = PaddingMode.PKCS7; ICryptoTransform cTransform = tripleDES.CreateEncryptor(); byte[] resultArray = cTransform.TransformFinalBlock(inputArray, 0, inputArray.Length); tripleDES.Clear(); return Convert.ToBase64String(resultArray, …

Member Avatar for hunny1
0
9K
Member Avatar for Jazerix

Hey there I've been working on a little tool for the last few hours, first i got all my info raw from the site, then i found out there was an api for youtube (stupid me >_<) but after hours of trying i simply cant get it working [CODE]YouTubeRequestSettings settings …

Member Avatar for Sivakumar_1
0
280
Member Avatar for Jazerix

Hi there :) I'm trying to request the info from "https://www.googleapis.com/sj/v1beta1/tracks". It should give me a full list of my google music tracks. To get the list, it requires you to do a request with an authorization. You get the auth from "https://www.google.com/accounts/ClientLogin?accountType=GOOGLE&Email=EMAIL&Passwd=Password&service=sj". The thing is, I'm doing a webrequest …

Member Avatar for darkagn
0
155
Member Avatar for Jazerix

Hi there I've been trying to change the process description of my program, wihtout any luck. Is it even possible to change the process description from within the code? Cheers -Jazerix

0
56
Member Avatar for Jazerix

Hey So i'm trying to create a pretty simple login for now... When i click the Log On button i need it to ingnore the wheather the letters are uppercase or lowercase, in textbox1, how can i do that? :D Kind Regards -Jazerix

Member Avatar for aloksupremacy
0
111
Member Avatar for Jazerix

Hey there First of all, I'm sorry if the title was a little misleading, wasn't sure how to put it :) Anyways, I got a pivot control. This pivot controls get's some info from my server, that determines how many tabs, it should add. Each tab uses the design "PivotDesign" …

0
51
Member Avatar for Jazerix

Hey there :) So, I'm making a small program for my school, and I need to get the names of the printers on the network. If you go to the control panel in windows, it can list the printers on the network, but how would I do that in my …

Member Avatar for Jazerix
0
124
Member Avatar for Jazerix

Hey there So, I was working on a program and unfortunately i got a blue screen while i was working. When I got back on my computer, Visual Studio wasn't able to open my Form1.cs and Form1.Designer.cs. Opened it in notepad, and it was completely empty however the filesize is …

Member Avatar for Jazerix
0
148
Member Avatar for Jazerix

Hey there I'm quite new with php, i create a small site that can control some function for a program i made in C#, however I'm having some trouble with the css :P i got a header, h1 and h2. the header and h1 is functioning as they should, however …

Member Avatar for Jazerix
0
189
Member Avatar for Jazerix

Hi I just set up my IP Board. Now i want to retrieve some of the data via mysql, so far I have no problem getting a table into a datagridview, but what do i do to get a value from a table right now i got SELECT * FROM …

Member Avatar for mikev2
0
109
Member Avatar for Jazerix

Hey there so i just got started with php and im actually quite amazed with it and how easy it is to understand anyways, right now im trying to do some coding, where i want the script to check if the user exist, if the user exist it will show …

Member Avatar for lps
0
46
Member Avatar for Jazerix

Hey there I'm currently going through a guide made by wrox, getting started with a asp.net Anyways, ive stumbled across a problem :( In the tutorial it tell me to access "Profile.Preferences.Theme" however in my Webform, there is no such option This is my current "Web.config" file [CODE] <configuration> <system.web> …

Member Avatar for Jazerix
0
204
Member Avatar for Jazerix

Hey there So, I've been coding C# Windows Forms Applications for quite some time now, and i want to get started with asp.net, however i dont know where to start :(, on microsoft site, there are MVC, Web Pages, Web Forms, and to be honest i just want to get …

Member Avatar for Jazerix
0
208
Member Avatar for Jazerix

Hey :) Uhm, I just finished a program today, and I was wondering, how i should retrieve the errors that the user may encounter :S Ive seen the logo { sa } somewhere, what does it stand for? Or what should i do about this :) Cheers -Jazerix

Member Avatar for Jazerix
0
167
Member Avatar for Jazerix

Hey :D So I got two forms, form1 and form2 when i click on a button on form1, it will show form2 and hide form1 once, on form2 i got a button "cancel", when i click on that button i need to close it and unhide form1 and not open …

Member Avatar for ddanbe
0
99
Member Avatar for Jazerix

So, I'm trying to get an image from the webbrowser in C# and for some reasons every second / third time it does it, it return a blank picture with the right canvas, instead of just getting the image, and I cant just download it, unfortunately thats not possible, so …

Member Avatar for Jazerix
0
113
Member Avatar for Obadiah1

hello every one, i ask for some help i would like to write program that enables the user to insert a photo into the picture box by clicking on a button. i used the following but it is bringing an error [CODE]pictureBox2.Image = Image.FromFile("path");[/CODE] Thanks

Member Avatar for Jazerix
0
120
Member Avatar for Jazerix

Hey there so i made this code, and i do not get why my while loop doesn't work, it checks once and then it continues to the next line, this is my code: [CODE] private void Timer1_Tick(object sender, EventArgs e) { timer++; if (timer != 65) { timerdone = false; …

Member Avatar for Jazerix
0
131
Member Avatar for Jazerix

Hey there This might be a stupid question, but I don't get why i cant do this [CODE] string SteamPath; XmlDocument LoadDoc = new XmlDocument(); LoadDoc.Load("Config.xml"); XmlElement rootless = LoadDoc.DocumentElement; if (rootless.Attributes["SteamPath"].Value == "") { } else { SteamPath = rootless.Attributes["SteamPath"].Value; } return SteamPath; [/CODE] It gives me the error …

Member Avatar for Jazerix
0
219
Member Avatar for Jazerix

Hey there So, i got a website, and i want a textbox to load a .txt file loaded on my site, so it doesnt need to be downloaded, but simply just streamed to the textbox.text for example google.com/textfile.txt, and when i click a button it would load the content of …

Member Avatar for Jazerix
0
216
Member Avatar for Jazerix

Hey everyone, i probably should have done this some time ago but i didn't :) Anyways I'm Niels F. Andersen Nickname: Jazerix Location: Odense, Denmark Age: 15 Right now I work for a company called Gasa Group as an It Supporter Assistant here in Denmark :) Sometimes I'm lucky and …

Member Avatar for jennia1686
0
172
Member Avatar for Jazerix

Hey first of all, im sorry if the title is a little misleading Im creating a private program for myself and some friends, and i want to make a login form, but i was wondering what would be the best way to host the usernames and passwords? I used to …

Member Avatar for jfarrugia
0
93
Member Avatar for Jazerix

Hey :) So i got a picture on a site, and it does not want me to download it from c# :( when i inspect the element in c# i get a link to the cache picture and not the picture on the site [CODE]data:image/png;base64,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[/CODE] like this :( ive been …

Member Avatar for zmeditation1
0
200
Member Avatar for Jazerix

Hey So i got a Webbrowse (wb_MainBrowser) and a button. for the webbrowser i got a code that looks like this: [CODE] private void wb_MainBrowser_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { if (wb_MainBrowser.Url.ToString() == "http://www.google.dk/") { MessageBox.Show("HEY"); } } [/CODE] and i got a button that goes [CODE] private void btn_Start_Click(object sender, …

Member Avatar for Jazerix
0
215
Member Avatar for Jazerix

Hey I'm looking for some code that can check weather the windows firewall is on, or its disabled :> Please help me out if you know how :D Kind Regards -Jazerix

Member Avatar for abelLazm
0
61
Member Avatar for Jazerix

Hey I'm trying to manage some processes So ive created a listview, the first column contains the name of the processes, the second should contain the id of the process, but I honestly cannot figure out how to get it working, making the "ListViewItem" control, but its not really working …

Member Avatar for Sravanthi Ch
0
112
Member Avatar for Jazerix

Hey everyone ^^ I'm making a little program that gathers the player coordinates from World of Warcraft via memory reading, the only problem I'm having so far is that I have no idea how to convert my hexes to floats, and it's honestly driving me nuts :P. [url]http://i53.tinypic.com/2rhs1zo.png[/url] <-Picture As …

Member Avatar for Jazerix
0
153
Member Avatar for Jazerix

Hey there so this program im building needs to read the info from LocalMachine\\SYSTEM\CurrentControlSet\\Control\\ComputerName\\ComputerName\\ within that folder i need to get the data from the string value called "ComputerName" I've tried a lot of ways to get this within c# but with no success im afraid :/ I'm just ending …

Member Avatar for Momerath
0
111
Member Avatar for Jazerix

Hey there. One of my friends want me to make him a gui, so i was wondering, how do I make it more graphical? I mean, in many programs I've seen the buttons look nothing like the ones I'm able to find in C#. Is there any way I can …

Member Avatar for Momerath
0
90
Member Avatar for Jazerix

Hey there, so im making a calculator to make my life a little bit easier ^^ so far its working well, I just got one problem o.O! If I enter a number with a comma like 0,5 into one of the textboxes and click calculate it will terminate, what can …

Member Avatar for Lusiphur
0
354