Forum: C# Jul 25th, 2009 |
| Replies: 14 Views: 698 I tried something like this.
Original
Split1
byteArray
Split2
But it never worked. |
Forum: C# Jul 25th, 2009 |
| Replies: 14 Views: 698 your sarcasm and your friends spam is what annoyed me, but yes i have tried every encoding known to man and i still cannot write a fully working file.
I do not understand why. |
Forum: C# Jul 25th, 2009 |
| Replies: 14 Views: 698 Same for you, stop spamming my topics. |
Forum: C# Jul 25th, 2009 |
| Replies: 14 Views: 698 Post reported, please don't spam my topics. |
Forum: C# Jul 25th, 2009 |
| Replies: 14 Views: 698 |
Forum: C# Jul 24th, 2009 |
| Replies: 14 Views: 698 Notepad must be embedded into the secondary exe. I can write strings to the EOF data and have the secondary exe read them into a messagebox so i dont see why i can't do it with bytes. |
Forum: C# Jul 24th, 2009 |
| Replies: 14 Views: 698 |
Forum: C# Jul 24th, 2009 |
| Replies: 14 Views: 698 Image of my problem
http://i31.tinypic.com/2v3ivyq.png
Left = Actual notepad.exe opened in notepad
Right = what i get after i read/write.
Goal - Be able to store notepad.exe between to... |
Forum: C# Mar 29th, 2009 |
| Replies: 3 Views: 531 Solved
public void ClearOriginal()
{
Form1 form1Form = (Form1)Application.OpenForms["Form1"];
Button newpodcastButton =... |
Forum: C# Mar 29th, 2009 |
| Replies: 3 Views: 531 the buttons don't become invisible and such |
Forum: C# Mar 29th, 2009 |
| Replies: 3 Views: 531 using System;
using System.Collections.Generic;
using System.Text;
namespace bPod
{
public class PodCastFunctions : Form1
{
public void ClearOriginal()
{ |
Forum: C# Feb 6th, 2009 |
| Replies: 3 Views: 2,119 i already read through all that lol and i didn't understand :( |
Forum: C# Feb 5th, 2009 |
| Replies: 3 Views: 2,119 Hey, im just wondering how to say the source of a webpage that is in your WebBrowser Control.
I've tried loads of methods but i am failing horribly (google isnt my friend today). Just wondering if... |
Forum: C# Feb 5th, 2009 |
| Replies: 8 Views: 956 yes what i meant is i have no idea how to keep them from the login and inject them into the webbrowser control so i can from there
execute javascript |
Forum: C# Feb 2nd, 2009 |
| Replies: 8 Views: 956 ive only been coding in C# for around a month so i have no idea about cookies |
Forum: C# Feb 2nd, 2009 |
| Replies: 8 Views: 956 yeah............ I don't understand :( |
Forum: C# Feb 2nd, 2009 |
| Replies: 8 Views: 956 |
Forum: C# Feb 1st, 2009 |
| Replies: 8 Views: 956 Ok so it logs in fine using
public bool Login()
{
string postdata = string.Format("m=login&nextURL=http%3A%2F%2Fwww.ijji.com%2Findex.nhn&memberid={0}&password={1}",... |
Forum: C# Jan 21st, 2009 |
| Replies: 3 Views: 559 im creating a server/client situation (teacher being server) (students being clients) and the clients connect to the teacher (server) via LAN.
and thats all i need atm and no this isnt homework or... |
Forum: C# Jan 20th, 2009 |
| Replies: 3 Views: 559 Any ideas where i can start im really quite lost :( |
Forum: C# Jan 9th, 2009 |
| Replies: 3 Views: 400 nope its fine, i just ran it in another thread :) |
Forum: C# Jan 9th, 2009 |
| Replies: 3 Views: 400 I need need it to update my ListView before continueing
if (chars.Length > 0)
{
string log = string.Format("{0}:{1}", acc.Username, acc.Password);... |
Forum: C# Jan 3rd, 2009 |
| Replies: 4 Views: 385 i dont want to pause the main thread. |
Forum: C# Jan 2nd, 2009 |
| Replies: 4 Views: 385 I need my program to "stop" as the timer is running and when the timer returns true i need it to continue what it was doing.
Sleep:
void iUpdateStatus()
{
bComplete =... |
Forum: C# Jan 2nd, 2009 |
| Replies: 5 Views: 1,100 as i said if someone could show me how to use the timer correctly that would be very very helpful :) |
Forum: C# Jan 2nd, 2009 |
| Replies: 5 Views: 1,100 Well im trying to "sleep" or make the program twiddle its thumbs for 15 seconds before continueing but without pausing the main thread.
So i thought maybe if i create a new thread and Sleep in... |