176 Posted Topics

Member Avatar for serdas

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

Member Avatar for serdas
0
261
Member Avatar for PcPro12

i know my isp does not allow an incoming port 80. you are using your isp ip address correct?

Member Avatar for hughv
0
295
Member Avatar for kerek2

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]

Member Avatar for Comatose
0
205
Member Avatar for kerek2

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 …

Member Avatar for Teme64
0
238
Member Avatar for yingyang

msn messenger is a stable chat app. if somebody sends you something you have to accept it.

Member Avatar for Ole Raptor
0
57
Member Avatar for MSK 7

i think they showed you the best way to do it here [url]http://www.daniweb.com/forums/thread173153.html[/url]

Member Avatar for death_oclock
0
126
Member Avatar for andy_aphale
Member Avatar for Techie08

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

Member Avatar for Ole Raptor
0
41
Member Avatar for ricksvoid

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

Member Avatar for Ole Raptor
0
95
Member Avatar for jeevaa

there are many different programs available to do that. google file splitting software. i do not have a recommended program.

Member Avatar for rishan
0
98
Member Avatar for ryan311
Re: help

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. …

Member Avatar for Ole Raptor
0
103
Member Avatar for firoz.raj
Member Avatar for drbaz

I am a little confused. I am assuming that the ref_id is a uniqueid from another table?

Member Avatar for drbaz
0
81
Member Avatar for emilio

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.

Member Avatar for emilio
0
99
Member Avatar for swaransoft

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 …

Member Avatar for Ole Raptor
0
111
Member Avatar for Miikk4

If you are wanting to reformat your hdd and install from scratch you will need that disc. Nothing else you can do without it.

Member Avatar for caperjack
0
146
Member Avatar for Eka Alim
Member Avatar for Ole Raptor
0
161
Member Avatar for waldchr

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 …

Member Avatar for waldchr
0
110
Member Avatar for djm123
Member Avatar for timcripps

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?

Member Avatar for Ole Raptor
0
139
Member Avatar for Ole Raptor

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 …

Member Avatar for Ole Raptor
0
91
Member Avatar for ~gamer4life~
Member Avatar for Ole Raptor
0
93
Member Avatar for Ole Raptor

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. …

Member Avatar for Ole Raptor
0
169
Member Avatar for ramegharaj

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?

Member Avatar for ramegharaj
0
77
Member Avatar for irx

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 …

Member Avatar for Ole Raptor
0
95
Member Avatar for culebrin

just to get an idea can you show your connection strings to both instances?

Member Avatar for culebrin
0
150
Member Avatar for Ole Raptor

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 …

Member Avatar for jermaghs07
0
132
Member Avatar for Dell XPS

not sure if this will help you much [url]http://bytes.com/groups/net-vb/356895-openfiledialog-problem[/url]

Member Avatar for Dell XPS
0
199
Member Avatar for blunt57

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 …

Member Avatar for snadboy6371
0
2K
Member Avatar for Traicey

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 …

Member Avatar for Ole Raptor
0
147
Member Avatar for konczuras

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]

Member Avatar for Ole Raptor
0
49
Member Avatar for poonams

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.

Member Avatar for Krisha
0
143
Member Avatar for omotoyosi

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 …

Member Avatar for zumanequeen
-1
3K
Member Avatar for manishmn1987

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.

Member Avatar for manishmn1987
0
87
Member Avatar for Ole Raptor

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 …

Member Avatar for Ole Raptor
0
293
Member Avatar for Bulldawg
Member Avatar for TheDeadMilkman

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]

Member Avatar for TheDeadMilkman
0
82
Member Avatar for PCPowerUp

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

Member Avatar for pcfresh
0
76
Member Avatar for dskumar_85

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 …

Member Avatar for Ole Raptor
0
81
Member Avatar for sisi

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]

Member Avatar for Peteieboy
0
167
Member Avatar for senthilvnr08

[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

Member Avatar for Ole Raptor
0
68
Member Avatar for dean66

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

Member Avatar for deep32
0
177
Member Avatar for godevars
Member Avatar for Ole Raptor
0
63
Member Avatar for Ole Raptor

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 …

Member Avatar for Ole Raptor
0
157
Member Avatar for soosai

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

Member Avatar for phpuser
0
254
Member Avatar for yara1
Member Avatar for heels

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.

Member Avatar for heels
0
113
Member Avatar for Papa Awortwe

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.

Member Avatar for Ole Raptor
0
115
Member Avatar for dribm
Member Avatar for zeeshan359

instead of paying him to do your sites you can just come here and get all the help you need for FREE!!!

Member Avatar for peter_budo
-2
80

The End.