- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
27 Posted Topics
Hello, I am new to C++ and have been writing a server program to help me learn. I am currently stuck on how to get a couple of classes passed by reference. I have been searching on forums for hours now and I just can't figure this out. I would … | |
Hi guys, I currently have a custom network protocol I have written that uses the NetworkStream class. Within my protocol I have implemented a way to detect data that also works as a timeout. This seemed to be working fine until my client uploads an image of approx 24kb+ and … | |
Hello everyone, I am working on a website and I decided to create my own testing server as I currently have my Windows machine hosting apache for this. I have now set up a seperate machine running Linux and on the face of it everything should be working fine. I … | |
Hey guys, I have written a "bot" program that is scriptable to do certain automated tasks, e.g. type, move mouse, interact with windows etc. I have a little window on this bot program (picture box) which captures the screen and places a crosshair on the window which shows the user … | |
Hello everybody, I was wondering if anybody knows whether or not it is possible to send data too fast over a NetworkStream? I have an issue with my client/server program, where I am sending large files over normal IP address (Not Local) where everything used to work fine. It would … | |
Hello! I have a problem with my C# Client/Server network program. This problem only occurs when connecting via an IP over the internet, whereas everything works fine using a local address (127.0.0.1). What happens is while transferring a file (10kb or more maybe) using the below code, my receiving program … | |
Well the save file dialog, for some reason removes all file extensions that are input to it. No matter what i do or how i set the filename value, it always removes the extension which is incredibly annoying when i need to extension to stay as it is otherwise the … | |
Re: Yeah, your problem is the while (true), you need to have some sort of shutdown flag, something like: [CODE] internal static bool Shutdown = false; private static void Main() { while (!Shutdown) { // Do stuff here } } [/CODE] And when you click your stop button, do "Shutdown = … | |
Hi, I'm just about finished making my browser but i need to find a way so that i can make it the default internet browser, when it loads, it sets itself as the default program for internet browsing but so far all iv managed is setting it as a program … | |
At the moment i am using the shell command simply because i need to the my program as if it was a batch file, the program that im using needs the shell command to run properly otherwise it would need to be done in a batch file, now i know … | |
First of all, if you have not done any hardware interfacing then you probably won't know the answer to this question, just to save you time of reading this post and then realising you don't know. I'm having some trouble figuring out how to structure commands properly when communicating via … | |
Re: I'm not completly sure what you mean with the button examples, but I think aslong as the component container is created in the scope with the buttons, when it goes out of scope, the buttons will be deleted. If your button array is global, then i think they will probably … | |
I've just started playing a game again after a while (Runescape.com) and thought i would just make my own small utility program that looks up hiscores etc, but for some reason i get this error: "Attempted to read or write protected memory. This is often an indication that other memory … | |
Hi, iv got a problem with an updater i built for a program of mine, it firstly checks for updates by downloading a file and comparing current version to the version listed in the file and determines if it needs to update, and if its out of date then it … | |
It seems that the command Shell() in VB.NET is becoming obsolete because of its out-datedness and other reasons, but i cant find a way i can still use a command line in my applications, Because I'm not that experienced with C#, I still don't know some of the basics, is … | |
Hi, I'm trying to work out a way i can create my own "find..." or "find next" dialog for a textbox, because i don't think Vb.net has one that you can use, and its vital that i manage to get this otherwise the program wont be much use when editing … | |
Is there a way i can run a single void from my java class when using a shell/batch command or does it only run the main void when using a command such as "java MYCLASS" I have tried commands such as "java MYCLASS.VOID" or anything similar but im not sure … | |
I'm getting further and further to figuring out how my java program can read from my console application written in vb.net, i have some of my class here that i found on a site: This is mainly to do with reading numbers from input but il change it later. [CODE=java] … | |
I'm using a system.timers.timer in my console application, but i don't know what the sub would be to trigger each time the interval elapses, can anybody help, thanks. SOLVED: all i did was use this: Dim WithEvents Timer1 As New System.Timers.Timer and Private Sub timer1_tick() Handles Timer1.Elapsed MsgBox("TICK!!!") End Sub | |
Firstly I'm not sure where to put this post because it falls under java and vb.net, but since I'm guessing that the main part needs to be done with my java files, i put in here. OK, so i am trying to create a console application to run my java … | |
I'm having a hard time trying to figure out how to use my DLL in my application, i just started off with a very basic DLL so i can figure out how to get it working before i use a DLL in my applications, in my DLL i have this: … | |
Re: I don't think other programs do... When your changing a theme, window's explorer.exe is changing the theme and it takes time, thats why it freezes, explorer.exe is the whole desktop environment so when its busy it cant be used. If on the other hand your talking about a splash screen … | |
Re: [QUOTE=Annex;463265]Hi all, I have a simple question. But tell me please. How can I open another form which is being the same project by pressing the button?[/QUOTE] Put this in the button.Click sub [CODE] formname.show() [/CODE] | |
hi, im developing an application that uses mswinsock and the two .DLLs it needs to run, because im using an installer program, it keeps the two DLLs in the same place as the program but when i start the program from the desktop shortcut, it tries to find the two … | |
Re: You could use an outside installer such as INNO and use the .exe you get in the bin folder after building/debugging your app. | |
Hi, I'm getting quite good with vb.net now and have created quite a few good programs but I'm having trouble with something that seems simple but i cant figure out whats wrong, if anybody can help me with the following code it would be very appreciated. What I'm trying to … | |
Re: Maybe you edited the Windows generated code by accident? try starting a new project, put a textbox on the Form, save and reopen, if it stays there then you probably accidentally edited the Windows generated code. |
The End.