- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 15
- Posts with Downvotes
- 4
- Downvoting Members
- 11
I am me . . .
35 Posted Topics
I am currently working on a project in VB.net that requires the advanced power settings of the client's system to be set to allow wake up timers for when the system sleeps. Please I have been looking around for the solution. I desperately need it. Thanks in advance. | |
Please what is the best programming language and IDE that can be used in the development of WML web applications for mobile phones? | |
Please I am currently working on a web application project that works on both the desktop and mobile devices also. The web application is to be for all and sundry and therefore I need it to work on all forms of mobile devices (old and new). The web application uses … | |
I am currently trying to design a web application for a mixture of mobile devices: those that have only wml enabled, and those that have html-enabled. The programming language of choice was ASP.Net but I cant seem to find any good documentation on how to design an ASP.NET web application … | |
I am currently working on a project in which I have a thread that needs to [U]constantly[/U] be making changes on a control in another thread. What is the best way to go about [B]safely[/B]? [I]Note: The thread connects to a database, gets data from the database, and populates the … | |
I want to write an application that can query a dll or class stored in another location on a server to receive information or perform an action. Can someone please give me guidance on how to go about it. | |
What are the possible uses of the bitwise operators. i.e. bitwise AND, bitwise OR, bitwise XOR, shift right, shift left and complement. Also, what are the applications of bitwise operators in everyday problem solving. Examples would be nice. Thanks in advance | |
I have a program that uses two threads. I want to update a WPF control on one of the threads from the other thread but I don't knwo how to do this. Any help please?! | |
Hello all. I was just designing a web application form that is meant to accept a user's request to use a particular room in a specified period of time. After the user enters his specifications, the application now responds, telling the user if the location specified is available at the … | |
I am currently designing an application form that the user fills to use a room in a specified time. The application is to check if the room specified is available at the time period specified. I am stil wondering how to do this such that there is no clash. Any … | |
Re: whaddup Dipo! | |
Re: You can try debugging the program. Put different segments of the program into different functions and call them from the main() function. That way, you can know what segment the problem is coming from. For the debugging, you can output the values of the different variables to screen so that … | |
Re: One thing you can do is hide the title bar provided and then design your own title bar with shapes and code where you can have the buttons you need along with customized buttons to close the program [CODE]End[/CODE], and minimise the program [CODE]Me.WindowState=vbMinimised[/CODE] | |
Re: First of all, this is not very explanatory. Secondly, any code snippets of what you have done will be helpful. | |
Re: I think it means that you should make an error message to be displayed (possibly in a message box) whenever the user tries to write a value that is larger (or longer) that the value that is permitted to be entered. Probably your program only allows numbers up to 8-digits, … | |
Re: You can store the dates into an array, and compare the values in the array using the for loop. Assuming the array name is arrDate: [CODE]Dim curDate as Date curDate=arrDate(0) For i=1 to arrDate.Count - 1 If arrDate(i) = curDate.AddDays(1) Then con = True curDate = arrDate(i) Else con = … | |
Re: easy...just use the array indices of the two arrays. If the program picks the value "B", you get the array index as 1. Then fetch from the animal_master array, the value with the array index as 1. This value will be "Bear". | |
Hello, I am writing a program and I need to store important data like password, etc. What is the best way to store the password and where is the best way to store it? ![]() | |
I am writing a program where one part of the program gets some data while the other part gives in new data at intervals for the first part to work on. This two tasks are to be done independent of each other and concurrently. The time one part stops does … | |
I have a program that accepts multiple lines of strings for a variable and accepts another set of multiple strings for the next set of variables, and so on, each seperated by a free line i.e.\n\n How do I write such a program? | |
What is the integer or double equivalent of the NULL character. That is, the integer that can be entered to represent NULL when using integers (supposing 0 is accepted as a valid integer and not a NULL). | |
Please, How do I properly add a Winsock Control in WPF for purpose of LAN applications? I tried adding the Winsock control dynamically but then the event functions are not available then. Note: Using WindowsFormHost does not show in my WPF application. Help please! | |
Hello there, I am working on a little project and have a problem about finding the IP addresses of all the remote computers connected to a LAN network. I will greatly appreciate it if I get the answer to what I need. Thanks. | |
Please, I need help in finding the sum of two matrices using pointers. Thanks. | |
Please, i want to know how to ntework in vb6. Also, capturing the system name and other things like that. | |
Please, I am new to game programming and would like to get advice on a good game developing software for beginners. Thanks. | |
Please, is there anyway to make the forms in vb6 transparent? I need urgent assistance. Thanks. | |
how do you make sure that when you maximise a form in vb, the controls in it are also maximised. Thanks for the help. | |
please, i am havin problems developing a setup file using ms interdev98. Need help urgently. Thanks. | |
Hello. Please, i have this little question of finding the product of two matrices in which the user enters the number of rows and columns. i would appreciate it if a solution is given and even more if there are more than one solutions to the question. thanks. | |
hello. please i would want to know how i can communicate with the system and find the system's present status such as logging off, shutting down, etc. vb codes would be most appreciated. thaNKS | |
Hello. Please, i have this little question of finding the product of two matrices in which the user enters the number of rows and columns. i would appreciate it if a solution is given and even more if there are more than one solutions to the question. thanks. | |
I was just wandering about the user interface of C applications. What are the basic things one should know about programming a graphical user interface with C. | |
Please, I need help in this little problem of printing all the prime numbers from to 100. Please, if you have more than one method to the question, I would really appreciate it. I also need it as soon as possible. Thanks. | |
Re: #include<stdio.h> main() { printf("Hello"); } |