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.

0 Endorsements
~5K People Reached
Favorite Forums
Favorite Tags
Member Avatar for krosty4782

Hello, im new to asm, and im trying to code some kind of notepad. At the moment, my program create a file, and open a file. Now i want to be able to edit the opened file. I ve thought in one option: When i open the file, it shows …

0
160
Member Avatar for krosty4782

Hi. I want to make a program to download files from a remote host. So what i do is to send throw sockets all the binary information + a string used as end "mystyring". To check if i have to continue writing the buffer to the file i first convert …

Member Avatar for oredigger
0
192
Member Avatar for krosty4782

Hi! There is anyway to make the buffer size of a socket dynamic ? Because i need to download some things and my buffer of 1024 bytes cant get all the information. How could i do this ? Thanks

Member Avatar for krosty4782
0
2K
Member Avatar for krosty4782

Hi ppl I need to edit a listviewItem to change name so i use "beginedit()", but then i need to send the new name. The problem is, there is not way to see when edit is finished to send the new name. So, any idea of how could i do …

Member Avatar for krosty4782
0
460
Member Avatar for krosty4782

Hey!! I have two codes, one in c++ and the other in c# i think the problem is in the c# code, in the receive() method. I have this: [code] while (!aa.Equals("filemanagerstop")) { aa = getSocket(numsock).socketRecv(); MessageBox.Show(aa); }[/code] the socketRecv() method: [code] public string socketRecv() { buffer = new byte[1024]; …

0
74
Member Avatar for krosty4782

Hi! I want to join 2 strings, but it has been impossible. I have this: [code] i = socket.Receive(buffer); recibido = System.Text.Encoding.UTF8.GetString(buffer)[/code] Buffer contains: "C:" I want to add the "\\" to the string so i have tried to do: recibido = recibido + "\\". But no way, when y …

Member Avatar for krosty4782
0
222
Member Avatar for krosty4782

Hi! Im having a problem in the next line: i = socket.Receive(buffer) buffer is defined as: byte[] buffer = new byte[1024]; It crash when its waiting for the answer. In c++ im sending this: len = send(sock,"hola",4,0); Any idea? Thanks

Member Avatar for krosty4782
0
173
Member Avatar for krosty4782

Hi guys. All in FORM1 [CODE]public partial class Form1 : Form { Thread thread; public Form1() { thread = new Thread(run); thread.Start(); } public void run() { ConectadoThread socketConectado = new ConectadoThread(); } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { socketConectado.close(); } } [/CODE] Why when i do "socketConectado.close()" it …

Member Avatar for kvprajapati
0
102
Member Avatar for krosty4782

Hi people, i have been trying a lot of codes to change a resource of a compiled exe, finally what im using is this: [CODE]using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Windows.Forms; using Microsoft.Win32; namespace WindowsFormsApplication1 { static class Program …

0
132
Member Avatar for krosty4782

Hello people. Im having a problem with this. I want to create an exe from my own exe. For example in my exe you can put "name: " "haircolor: ". So when yo click ok, this exe make the exe2. So when i open exe2 it shows a messagebox showing …

Member Avatar for krosty4782
0
159
Member Avatar for krosty4782

Hi guys. Im having a problem with this. I have an object that i create in other thread. Now what i want to do, is that when i close my app in the event it must call a method from the object created in the thread maded earlier. How can …

Member Avatar for krosty4782
0
188
Member Avatar for krosty4782

Hi guys. I have a question. How i could do to display a panel of options if the cursor click in a item of the listview ? I know about the MouseEvent and how to select the right click event, but i lost to apply that click in a item. …

Member Avatar for Kimpl
0
123
Member Avatar for krosty4782

Hi all. Im having a problem with my project. I need that my socket recive multiple conections from differents pcs. Example: I have my socket, it is listening, when a pc connect to its, it stop listen, so there come the second computer trying to connect, and this computer cant …

Member Avatar for krosty4782
0
172