176 Posted Topics
Re: in your users table do you have roles set? if you do you could get the current users role. lets say they are an admin or mod. if they are either you can add a delete button. they push that and delete the comment from the db | |
Re: i know my isp does not allow an incoming port 80. you are using your isp ip address correct? | |
Re: only one field is displaying? if this is the case you need to add another listbox add to the loop [code] While dr.Read() ListBox1.Items.Add(dr(2)) ListBox1.Items.Add(dr(3)) End While [/code] | |
Re: Do you already have your connection strings setup for the mdb? I will go with yes :) are you sure that the search will only return one entry in the db? i would probably go with either a listbox or datagrid to display the returns. this is a nice little … | |
Re: msn messenger is a stable chat app. if somebody sends you something you have to accept it. | |
Re: i think they showed you the best way to do it here [url]http://www.daniweb.com/forums/thread173153.html[/url] | |
Re: what type of DB are you connecting to? | |
Re: if they are catchy or easy to remember names i dont see much of a backfire problem. more ways to get to your site = more traffic | |
Re: do you know the original name of the db that was backed up? if you create a new db with the same name it is possible you can restore the .bak file that way | |
Re: there are many different programs available to do that. google file splitting software. i do not have a recommended program. | |
Re: it looks correct for checking if the value is less then 0 or if it is null. if you want to check the value from the text box then you can add another if statement. also you may want to change if the statement from < 0 to <= 0. … | |
Re: need to add & " after strlistrequest | |
Re: I am a little confused. I am assuming that the ref_id is a uniqueid from another table? | |
Re: in management studio right click the table you want to edit. you will see modify. click it. this will bring up the column properties. from here you can change anything you would like. | |
Re: How are you keeping track of the times accessed? Is it a history table? If you try to access a record that lets say has a history and has been accessed 5 times it adds it to history. programmatically query for total times accessed where date = now. It is … | |
Re: If you are wanting to reformat your hdd and install from scratch you will need that disc. Nothing else you can do without it. | |
Re: A great program to install and run is Malwarebytes. I use it all the time for virus removal. | |
Re: If you can create a partition on your HDD you can setup dual booting where you will be able to select what OS you want to boot into. Or if your computer has plenty of RAM you can setup Virtual PC and run Windows 7 on a virtual machine. With … | |
Re: Have you tried replacing your old stick with the new one? run on the new 256 alone for while to see if you have any problems? | |
I have a program that uses a Stored Procedure to create a report. Unfortunatly the SP has a problem in the VB6 code. The program could pull the information perfectly until 2 days ago. Now the program times out after 60 seconds after sending the params to the sp. I … | |
I have a Stored Procedure that is called through VB6 for a report. The Reports were working great until yesterday. Now all of the reports that use that sp are timing out. The default time is set to 60. I have adjusted this to 1000 and the report finally displays. … | |
Re: so you have 247 different countries that can be entered into the same table multiple times. in other words you could have millions of records in this single table? anyway sorry about rambling just didnt understand the table. the select statement should work. is it giving you any errors? | |
Re: 1. [code=sql] CREATE TABLE IF NOT EXISTS `tags` ( `id` int(11) NOT NULL AUTO_INCREMENT, `tag_name` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`tag_id`) ) [/code] you do not have a field called tag_id. it is only id 2. research joins. [code=sql] SELECT tags.id, video_tags.video_id, video_posts.fields from tag_name join video_tags on … | |
Re: just to get an idea can you show your connection strings to both instances? | |
I have a pc with 2 graphics cards. When I start the machine everything is ok. But if for some reason I have to restart the computer it dies on me and I can not get the machine started until I remove the second graphics card. Now if I shutdown … | |
Re: not sure if this will help you much [url]http://bytes.com/groups/net-vb/356895-openfiledialog-problem[/url] | |
Re: this is how you pass info from one page to another. lets say thats an id of some item from the other page. like a book for a library page. when you click the image or link it will have something like [code=html] <a href="info.php?id=2>link</a> [/code] this carries the book … | |
Re: Try this: [code=sql] CREATE PROC SaveFileToTable @Database VARCHAR(50), @Table VARCHAR(50), @Column VARCHAR(50), @WhereClause VARCHAR(200), @FilePath VARCHAR(500), @Server VARCHAR(50) = NULL, @User VARCHAR(50) = NULL, @Password VARCHAR(50) = '' AS ------------------------------------------------------------------------------------------------------------------------------------------------------------ -- This procedure can save the content file to column of IMAGE or TEXT data type -- Please use this … | |
Re: try this [code=sql] USE Persons; GO BACKUP DATABASE Persons TO DISK = 'Z:\SQLServerBackups\Persons.Bak' WITH FORMAT, MEDIANAME = 'Z_SQLServerBackups', NAME = 'Full Backup of Persons'; GO [/code] | |
Re: What version of Access are you using? I believe 2007 is the only version to allow saving an image. You could save the image in a folder and place the image path in the db and pull it that way. | |
Re: If you are using VS you can drag an OpenFileDialog, 3 buttons, textbox and a picturebox to your form. With your first button (Browse). In this buttons click event add [code=vb.net] OpenFileDialog.Title = "Get Image" OpenFileDialog.ShowDialog() [/code] Go back to your form and double click the OpenFileDialog. Add this code … | |
Re: is this in response to another thread? You can reply in the original thread instead of creating a new one. This is for VB.NET. This is what you are using correct? This allows .NET to talk to the COM Port. I do not know what errors you are getting. | |
hello, i am having some problems retrieving email from gmail. im not sure if its because its pop or what. unfortunatly my host doesnt have the pop module. but here is the code. [code=php] $imap = imap_open("{pop.gmail.com:995}INBOX", "username", "password"); $messages = imap_sort($imap, SORTFROM, 1); foreach ($messages as $message) { $header … | |
Re: go here on your working computer and place your nonworking computers serial number in the text box. this should give you a list of drivers you can download. [url]http://support.gateway.com/support/drivers/dlcenter.asp[/url] | |
Re: I have been running Ultimate since its release. in the beginning i did have problems with a blue screen. i upgraded RAM from 1g to 2g and have not seen a blue screen since. has been over a year | |
Re: Primary key is the unique identifier of a row of data. like: table Dogs: dogid=1(pk)unique dogname=spot dogbreadid=5(fk) age=3 dogid is the dog spots unique identifier in the db. dogbreadid is the foreign key. this links the dog to the bread table. table bread breadid=5(PK)unique identifier breadname=Chihuahua this lets you know … | |
Re: try this link. it has worked for me. [url]http://apcmag.com/how_to_dual_boot_vista_and_xp_with_vista_installed_first__the_stepbystep_guide.htm[/url] | |
Re: [code=php] $qry = mysql_query("SELECT * FROM tablename") or die(mysql_error()); echo "<table><tr><td>"; while($row=mysql_fetch_array($qry)) { echo $row['1stfield']. "</td>"; echo "<td>".$row['2ndfield']. "</td>"; echo "</tr>"; } </table> [/code] that should do it | |
Re: have you tried turning off the firewall just for testing? i have found that many times programs such as norton internet security will do this. this would be just a temporary test. if it works with firewalls off you know where your problem is. Good Luck | |
hello, I am having a problem getting all of my items to display correctly. I have a form that has a combobox. When this combobox changes I need to display different items on the form. This is the code to do this but for some strange reason not all items … | |
Re: you need to have the column names in the insert: [code=php] $sql=mysql_query("Insert into tc (col1, col2, col3, col4) Values (`$nama`, `$ic`, `$fakulti`, `emel`)") or die(mysql_error()); [/code] give that a try | |
Re: you can send it through the address [code=php] <a href="yourpage.php?info=imageinfo"> [/code] then on your other page you can grab the info using [code=php] $info = $_GET['info']; [/code] this will grab whatever info your sending through the link from image. | |
Re: or when you pull the info you could leave the country id and do a join in your query to pull the name from that id. | |
Re: crazy question but have you taken ownership of the files? | |
Re: instead of paying him to do your sites you can just come here and get all the help you need for FREE!!! |
The End.