176 Posted Topics
Re: Ancient Dragon you have enlightened me. Thank You | |
I am attempting to write a script that will add a user to the system. I am using fedora 5 and am attempting to use the useradd: command but i receive "command not found" I am also trying to get the current users from the system so i can check … | |
Re: i havent had any problems useing CoreFTP and Filezilla. | |
Hello, I am writing a program that connects to a webservers db. I have a testing db on my local machine and i add a new dataset to this local db. I have tried to go into the app.config and change the connectionstring to a global variable i created useing … | |
This is somewhat funny. I have just installed Fedora Core 8. When i start my pc i get a localhost login. I have to login as root and use the password i had set up during installation. Once i have done that i would really like to get into the … | |
Hello, I am running Fedora Core 8. I have a wireless nic that i am attempting to use. I have this setup as eth1. I have entered the security and other wireless information. when i try to save this and set this up i get a "failure to connect check … | |
Re: try this Use the "Style" property - [code] DataGridView1.Item(ColumnIndex, RowIndex).Style.BackColor = Color DataGridView1.Item(ColumnIndex, RowIndex).Style.ForeColor = Color [/code] or [code] DataGridView1.CurrentCell.Style.BackColor = Color DataGridView1.CurrentCell.Style.ForeColor = Color [/code] | |
Re: i dont think you can view the table in dreamweaver once it is in the <?php ?> code. | |
Re: great example for login [url]http://www.daniweb.com/forums/thread6028.html[/url] | |
Re: Try this thread. [url]http://www.daniweb.com/forums/thread103912.html[/url] | |
I am having a problem validating a date entered by user. This date must be later than todays date(at input time). I have attempted using the > (today) but this will not work if the the month is larger then input time. If you have any examples I would greatly … | |
Re: this shows the steps to setup a Universal Testing Server. Just so you can double check the steps you have taken. [url]http://center.uniformserver.com/uniserver_dreamweaver/uniserver_dreamweaver_1.html[/url] | |
Re: this is a good reference [url]http://www.vbdotnetheaven.com/UploadFile/mahesh/XMLusingVbDotNet04222005015518AM/XMLusingVbDotNet.aspx[/url] | |
Re: So you have 4 columns in your db that you are wanting to show and only the top 3 entries? I can see that you are missing the closing </table>. try adding it like this to display all 6 columns three per table column [code] { Print "<tr>"; Print "<td>".$info['B'] … | |
Hello everybody, I have a module that I am trying to print a specific table. My print button works but it prints the whole page and I needing the table (receipt) to print. Any suggestions or tips are greatly appreciated. Thanks | |
My name is Ralph. I stumbled on DANIWEB while looking for a solution to a problem. I must say I have browsed through other forums but is by far #1. I am somewhat knew to this Development life. I have programmed in VB.net for the last two years. PHP for … | |
Re: I have used this code when a row in the datagrid is doubleclicked. [code] Private Sub dgvOrders_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) orderid = Me.dgvOrders.SelectedCells(0).Value Dim myconnection As New SqlConnection(myconn) Dim sstring As String = "SELECT * From Orders Where OrderId = " & orderid & "" Dim … | |
Re: I have used this as an example to create a marquee: [url]http://vbcity.com/forums/faq.asp?fid=15&cat=Forms&#TID78584[/url] | |
Re: I have used this page as a reference in creating dll's [url]http://www.devcity.net/Articles/111/1/vbnet_se_dll.aspx[/url] | |
Re: try importing: [code] System.Object System.Attribute System.CLSCompliantAttribute [/code] then adding this code: [code] using:system (assembly:CLSCompliant(true)) [/code] | |
Re: Try this page. [url]http://www.oracle.com/technology/pub/articles/cook_dotnet.html[/url] | |
Hello, Does anybody know of a tutorial on download specific data from a web server sql db and inserting this into a local access db? | |
Re: i know of a couple of ways. in the properties of the button you can set the background as the image or you can pull a picturebox on the form and set its click event. | |
I have been working on a program. When I have stumbled across a problem I post it here and get the problem solved. I appreciate all the help I have received. Now I am needing to find a decent reporting add on. Something decent but won't make me place another … | |
i am attempting to retrieve a registry setting and set this in a global variable. I have tried to research this problem but havent found much. this is the code: [code] Module Info Friend m_Server As String Public Sub getserver() Dim sRegKey As RegistryKey = Registry.LocalMachine sRegKey = sRegKey.OpenSubKey("software\\Normans Professor … | |
Hello, I am having an issue trying to add a checkbox field to my DataGrid. I have the following Code but it does not display my checkbox. Any help is greatly appreciated. [CODE=VB.NET] Dim myconnection1 As New SqlConnection(myconn) Dim dtcCheck As New DataColumn("Select") dtcCheck.DataType = System.Type.GetType("System.Boolean") dtcCheck.DefaultValue = False Dim … |
The End.