- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
16 Posted Topics
Hi I am trying to set a larger calendar font (Calendarfont) for a Datetimepicker control, but vb.net (2010) doesn't seem to use/honor it. It remains the same (very small) regardless of the font/size I choose. Have also tried changing it in program on the onload of my form but that … | |
Re: Can't you simply sort the data before you add it? Or do you want to be able to sort and resort different fields? | |
Re: From the project menu, select your project's properties. In here you can set your information in the Application tab, and other info in the publish tab. | |
Is it possible to link a process (i.e. osk.exe) opened by a program so it dies when calling program dies? So, I start my application, it starts OSK.EXE, and if the program crashes, the on-screen keyboard is still there. Possible to link the two so that the process dies when … | |
Is there a way to determine is any control at all on a form has gotten focus? I know you can individually determine if a single control has focus or has been clicked, etc. but is there an event that can tell you that some/any control has been clicked? i.e. … ![]() | |
Hi Looking for a way to pass back multiple data types from a method. I want to be able to pass back an array that the method fill out, and also the length of that array (I need that because the calling code will pass the byte array to the … | |
Hi Is it possible to capture a mouse click anywhere on a form (both on the form itself and on any control) without putting code in each control? I want to reset a timer/timeout when the user hits a key (which I have working no problem w/ a combo of … | |
Re: Have you taken a look at this thread (not sure if its related to what you want to do but it might get you started): [url]http://www.daniweb.com/forums/thread11533.html[/url] | |
Hi I am currently porting (well really totally re-writing) a project to run on WM6 devices. I need to initiate a GPRS data connection (or any internet data connection really, shouldn't matter if its GSM or CDMA) before I can get the data I need (actually sync. a database over … | |
I am trying to create a dll project using VS2005 (C++.NET). It is going to be used to access a database to store records w/o having to know how to actually create records (i.e. just pass info, and the dll classes will create a row in db). I want to … | |
Re: What SQL database? MySQL? MS SQL? | |
Re: I don't understand what you are asking for. The form looks fine, what isn't working? What do you want the buttons to do that they aren't doing now? | |
I have a form that is called w/ ShowDialog. Inside that form, I want to pop a message box to ask the user a question, but it doesn't show. Form: [CODE] Dim someFrame as myFrame = new myFrame someFrame.ShowDialog() [/CODE] Then, inside that form: [CODE] Dim ans As MsgBoxResult ans … | |
Hi I am 'trying' to get my head around multi-threaded programs. I have a working program (single thread) that uses a socket to listen on a particular port and exchange info with a client(s). The basic program structure is this (most declarations and error-checking removed for clarity): [code=c++] ... /* … | |
How do I 'restore' my output (stdout) back to the terminal after redirecting it to a file. I want to be able to output to a file for a specific section of code, then close that file and put output back to the screen/terminal. [code=c++] fprintf(stdout, "This will go to … | |
I am writing some code to talk to a device via a serial port. I am testing my program by using a loopback, so I can see that what I send is correct. I am sending an unsigned hex array, and when I display the values (before they are sent), … |
The End.