Forum: Java Sep 8th, 2009 |
| Replies: 3 Views: 720 I tried compiling my java program and it gave me the following error:
Note: DnldURL.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
What does this... |
Forum: C++ Jul 24th, 2009 |
| Replies: 3 Views: 486 I am using Dev-C++ in Windows. When given a file's url I want to be able to download it to a variable and then pull data out of the file using string manipulation and use it in my application. I have... |
Forum: Linux Servers and Apache Jul 15th, 2009 |
| Replies: 1 Views: 1,639 i think if you put your htaccess code in between these tags it will only affect index.php
<Files index.php>
</Files> |
Forum: Networking Hardware Configuration Jul 15th, 2009 |
| Replies: 2 Views: 552 I think you are confusing a router and a modem. DSL modems have a phone line input and an ethernet output. routers deal with routing ethernet connections and have multiple ethernet inputs/outputs. If... |
Forum: C++ Jul 14th, 2009 |
| Replies: 2 Views: 408 thanks a lot. that tutorial looks great. |
Forum: Networking Hardware Configuration Jul 14th, 2009 |
| Replies: 0 Views: 265 I am looking into setting up a radius server to connect to a WPA enterprise AP. I want to have the ability to write a script or program that handles the authentication on the radius server, since I... |
Forum: C++ Jul 13th, 2009 |
| Replies: 2 Views: 408 I have a few computers one acts as a server and the rest are clients. They are all on the same LAN. I need to write a program that when I enter data into one of the clients it sends it back to the... |
Forum: C++ Jul 6th, 2009 |
| Replies: 8 Views: 579 what api would you all recommend to learn? i dont really want to use visual c++ .net since i want it to be independent from the .net library. is there an api that is easily bundled with the exe such... |
Forum: VB.NET Jun 18th, 2009 |
| Replies: 4 Views: 322 i am using vb .net 2003 have not upgraded yet. |
Forum: VB.NET Jun 18th, 2009 |
| Replies: 4 Views: 322 topitem is a read only property, so it won't work. I found a better way to do it through using the following code
Dim k As New ListViewItem(TextBox1.Text)
k.SubItems.Add(TextBox2.Text)
... |
Forum: ColdFusion Jun 18th, 2009 |
| Replies: 1 Views: 653 "+" is a placeholder for the spaces in your fields |
Forum: VB.NET Jun 17th, 2009 |
| Replies: 3 Views: 825 thanks, that helps a lot. |
Forum: VB.NET Jun 17th, 2009 |
| Replies: 4 Views: 322 In the application that I am building I have a log window that contains a listview control. This listview control has two columns, a time stamp column and log description column. When an event... |
Forum: VB.NET Jun 16th, 2009 |
| Replies: 7 Views: 408 |
Forum: VB.NET Jun 16th, 2009 |
| Replies: 7 Views: 408 This should work where listbox1 is the name of your list box.
lstbox1.Items.Remove(listbox1.SelectedItem) |
Forum: VB.NET Jun 16th, 2009 |
| Replies: 4 Views: 373 hamachi and logmein use an in between server which initiates the connection that is the reason why they work behind routers. You need to make one of the computers visible on the net through port... |
Forum: VB.NET Jun 16th, 2009 |
| Replies: 3 Views: 825 I am making a program where I need to dynamically add buttons to a form. When the form loads anywhere from 0-30 buttons will need to be loaded. When a button is pressed it needs to run a common... |