Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
83% Quality Score
Upvotes Received
11
Posts with Upvotes
11
Upvoting Members
8
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
~28.4K People Reached
Favorite Forums
Favorite Tags
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 ncaatrackstar

The problem I am having is that I need to reference a dll this is rebuilt every hour and are placed into a unique directory. So every couple hours I have to go to the newest directory and reference that dll for mt project. What I did so far is …

Member Avatar for BhuvanRam
0
541
Member Avatar for mgt

Usint PHP, I'm trying to add the username, used in a login form, to the MYSQL table of another form. Scenario: User "x" logs in (providing his username, "x", and a password). The username and password are stored in a MYSQL table called "users". Once "x" is logged in, he …

Member Avatar for Threza
0
114
Member Avatar for Tko_1

Ok im a little new to php so please bare with me. this is the code i have been using to Transfer Variables from and to. What i want to do is to keep the variables in page2 untill further notice even after submited. Concept of this for customer to …

Member Avatar for Biiim
0
198
Member Avatar for samueal

I have a program to download files from server (using ftp_connect) using php and save the files in my local system.While saving the files in local system file's modified time changes according to my system time But what i need is the files saved in local should have the same …

Member Avatar for cereal
0
88
Member Avatar for samueal

Hi, I need a Php library or Code to convert images to a video. If i give few images as input, the library should convert it to a Video and it's output should be a video file!! Where can i find this library?? Need some help?

Member Avatar for diafol
0
720
Member Avatar for polinolin

hi mate. i have problem about REGEX this is my simple code [CODE]<?php $teks="hi whats up? how are you?"; $replace=preg_replace("/(you)/i",'<span style="background:yellow;">\1</span>',$teks); echo "$replace"; ?>[/CODE] what the mean \1 ? its not give effect for my text.. if i change the value to \2, the text has change.. thanks mate!

Member Avatar for diafol
0
84
Member Avatar for geneh23

Hey everyone, So I've looked and tried to figure out how to get the user to "log in" before accessing a page. However I've seen where you send the user to the log in page if he or she has not log in but what about if the person has …

Member Avatar for geneh23
0
1K
Member Avatar for andy106

Hi i have a foreach loop, but it is just showing everything in one long line, so I wanted to put it in a table like this <table> <tr> <td>data1</td> <td>data2</td> <td>data3</td> </tr> <tr> <td>data4</td> <td>data5</td> <td>data5</td> </tr> </table> here is my loop: [CODE]<?php foreach( $products as $product ) { …

Member Avatar for pritaeas
0
1K
Member Avatar for 1stoptutorials

Hey Everyone, hope all good. i have a problem with some php that is not randomly selecting an ip. I will try to explain my problem below. I have a state form [CODE] <select name="State"> <option value="0" selected="selected">Select a State</option> <option value="AL">Alabama</option> <option value="AK">Alaska</option> <option value="AZ">Arizona</option> <option value="AR">Arkansas</option> etc..... </select>[/CODE] …

Member Avatar for samueal
0
365
Member Avatar for Mirfath

hi! i have a form to enter data i want to put validations in the text boxes and prompt the user if he/she enters the wrong data i want to put validations for phone number Date of birth email i tried using regex but it says that i am missing …

Member Avatar for Mirfath
0
130
Member Avatar for rexdon

i want to add a word document into c sharp code as reference..and while clicking a button in the form,the word file has to get opened..

Member Avatar for tgreer
0
365
Member Avatar for Asotop

Hey! I'm trying to create a program which can multiplicate complex numbers. For example. (1+2j)*(3-4j)= 11+2j What would be the best way to split up the equation (1+2j)*(3-4j), so i can persom the calculations? I tried using the split method but I just got stuck, since i couldn't make it …

Member Avatar for gusano79
0
159
Member Avatar for techlawsam

Ok So I have to create a Date Class that will allow me to return the current day with data members of month , day, and year this is what I have for from my Main() class: [CODE]using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DateApp2 { class DateApp …

Member Avatar for Kohai
0
331
Member Avatar for davy_yg

Hi, I have this codes: (index.html) [CODE] <body> <div id="wrapper"> <?php include('includes/header.php'); ?> <div id="nav"> <a href="#">Home</a> <a href="#">About</a> <a href="#">Portfolio</a> <a href="#">Contact</a> </div> <!-- end #nav --> [/CODE] I wonder why <?php include('includes/header.php'); ?> does not works. In other words, the codes that I have place in header.php does …

Member Avatar for azeem786
0
2K
Member Avatar for majorawsome

Um, How do these work? I know you do something like [CODE]Blah Blah {Get; Set;}[/CODE] but how does that work? how does it know what to get and set?

Member Avatar for shiva07
0
168
Member Avatar for lianpiau

I'm making a datagridview, inside datagridview got many columns. 1 of column name is Finished(checkbox). When load form, the system will detect Finished is Checked and display color. But when I click column header to sort, it will not display color. So how I set color command in column header …

Member Avatar for lianpiau
0
156
Member Avatar for staticclass

Hi guys, I created an application in C#, which requires [B].Net Framework 4.0[/B] (Not the client profile) I created a Setup project for my application, since it has to be installed on a very big number of computers, some of which may have not access to the internet. Moreover, I …

Member Avatar for staticclass
0
1K
Member Avatar for jineesh

The datetime picker control 'focused' property is not set to true even though I have changed the date value. Please anyone help me Regards, Jineesh

Member Avatar for jineesh
0
97
Member Avatar for CeeGee

Create a class named Pizza. Data fields include a string for toppings (such as pepperoni), an integer for diameter in inches (such as 12), and a double for price (such as 13.99). Include properties to get and set values for each of these fields. Create a class named TestPizza that …

Member Avatar for samueal
0
2K
Member Avatar for samueal

This is the code snippet used to get the files/folder present in a particular folder/sub directories.

Member Avatar for CsharpChico
-1
482
Member Avatar for jmurph333

I am currently working on a game that takes place in the console. I need to know how to combine [CODE]Console.WriteLine()[/CODE] and [CODE]Console.ReadLine()[/CODE] into 1 line so that the blinking underscore appears on the same line. Is there any way to do this? Any help is appreciated.

Member Avatar for jmurph333
0
227
Member Avatar for Arjun_Sarankulu

I have application which contain textbox, 2 button and datagridview In text box user will enter query button1 click to display query result in gridview and Button2 to export data to excel My application is working fine But problem is when i again click button1 it also show the previous …

Member Avatar for Mitja Bonca
0
153
Member Avatar for Arjun_Sarankulu

I have a application contain 1 text book for Multiple line 2 Button(Query and Export) and 1 DataGrid View If user enter the query in textbox and click on Query Button i want to prompt for use input to get key for validating purpose My application is working fine But …

Member Avatar for Arjun_Sarankulu
0
129
Member Avatar for virendra_sharma

Hi Frnz, anyone can help me with code , how to setting up [B][U]"solr search engine "[/U][/B] for document search on ur desktop in .net

Member Avatar for virendra_sharma
0
91
Member Avatar for xanawa

Hi, I am using windows form. Now in this window i have 2 textboxes which have their validation using the error provider. Now i want that when the user clicks on the close button it closes not rests until u enter something in the textboxes. How can i do so?

Member Avatar for xanawa
0
200
Member Avatar for rootchord

I am learning about networking in C# and to do so i am making a simple instant message server/client app. everything is going fine. i am currently testing it by inputting my own ip address as the target to send/receive on same machine. but, i can only send one message …

Member Avatar for samueal
0
975
Member Avatar for rminator

string valeur = ligne.Split(ChrW(59))(0); what is the equivalent of that in C# please???

Member Avatar for samueal
0
271
Member Avatar for rminator

Hallo, i have a Csv file,i would like to read ,convert it and than represent it with Datagrid the fonction who read my csv [CODE]public List<String[]> Parse_CSV(String File_Path) { List<string[]> Parse_Data = new List<string[]>(); try { using (StreamReader Read_File = new StreamReader(File_Path)) { string Line; string[] Row; while ((Line = …

Member Avatar for rminator
0
786
Member Avatar for vehpurple

okay so i figured everything out for my project except how to get this simple select statement to work. i have a table named [B]Car[/B] that i LINQ'd from a Microsoft Access File. please help. i want a button to display the Car database according to the SQL statement. thank …

Member Avatar for vehpurple
0
101