User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 392,215 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,804 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 161
Search took 0.02 seconds.
Posts Made By: ProfessorPC
Forum: PHP 12 Days Ago
Replies: 2
Views: 213
Posted By ProfessorPC
Re: Get email with imap

I have found that the script does work on other servers. I think my host has me locked down a little more than i would like. Guess its time to look for that VPS i have been wanting.
Forum: PHP 13 Days Ago
Replies: 2
Views: 213
Posted By ProfessorPC
Get email with imap

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.



$imap =...
Forum: PHP 28 Days Ago
Replies: 5
Views: 514
Posted By ProfessorPC
Re: sort by clicking on column headers

you can use the same method as the above solution. using the switch in your function and changing your ORDER BY in your query.
on your display page you can add

<th width="10%" align="center"...
Forum: Windows NT / 2000 / XP / 2003 Jul 9th, 2008
Replies: 2
Views: 228
Posted By ProfessorPC
Re: xp Missing drivers

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...
Forum: Windows NT / 2000 / XP / 2003 Jul 7th, 2008
Replies: 2
Views: 172
Posted By ProfessorPC
Re: Blue Screen of Death

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
Forum: MS SQL Jul 4th, 2008
Replies: 1
Views: 587
Posted By ProfessorPC
Re: Foreign and primary key

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...
Forum: Windows Vista Jun 23rd, 2008
Replies: 10
Views: 366
Posted By ProfessorPC
Re: I need help with partition in Vista?

the link i posted above gives the directions from beginning to end.
Forum: Windows Vista Jun 23rd, 2008
Replies: 10
Views: 366
Posted By ProfessorPC
Re: I need help with partition in Vista?

try this link. it has worked for me.
http://apcmag.com/how_to_dual_boot_vista_and_xp_with_vista_installed_first__the_stepbystep_guide.htm
Forum: PHP Jun 23rd, 2008
Replies: 3
Views: 385
Posted By ProfessorPC
Re: How create the datagrid in 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']....
Forum: MySQL Jun 18th, 2008
Replies: 1
Views: 424
Posted By ProfessorPC
Re: Right Forum?

try here first. www.w3schools.com
Forum: VB.NET Jun 18th, 2008
Replies: 7
Views: 318
Posted By ProfessorPC
Re: Problem Displaying Items

i havent really went as far as displaying everything as its needed. I have ran into this problem of the main grp not displaying correctly. without that group there isnt much else i could really do so...
Forum: PHP Jun 17th, 2008
Replies: 3
Views: 225
Posted By ProfessorPC
Re: inserting into selected fields

you need to have the column names in the insert:

$sql=mysql_query("Insert into tc (col1, col2, col3, col4) Values (`$nama`, `$ic`, `$fakulti`, `emel`)") or die(mysql_error());


give that a try
Forum: VB.NET Jun 17th, 2008
Replies: 7
Views: 318
Posted By ProfessorPC
Re: Problem Displaying Items

i have stepped through the code. it hits the code to set visible = true but after continuing and i mouse over the visibility is still set to false. very odd.
Forum: VB.NET Jun 17th, 2008
Replies: 7
Views: 318
Posted By ProfessorPC
Re: Problem Displaying Items

I have a groupbox grpmain that will not display. Some other objects are not displaying as well but the main one is the grpmain.
Forum: VB.NET Jun 16th, 2008
Replies: 7
Views: 318
Posted By ProfessorPC
Problem Displaying Items

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...
Forum: PHP Jun 16th, 2008
Replies: 6
Views: 301
Posted By ProfessorPC
Re: hi how i redirect my page

do you own this .org domain?
Forum: PHP Jun 15th, 2008
Replies: 2
Views: 281
Posted By ProfessorPC
Re: Php data display

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.
Forum: PHP Jun 15th, 2008
Replies: 16
Views: 761
Posted By ProfessorPC
Re: passing of values through image link

you can send it through the address

<a href="yourpage.php?info=imageinfo">


then on your other page you can grab the info using

$info = $_GET['info'];

this will grab whatever info your sending...
Forum: Windows Vista Jun 15th, 2008
Replies: 9
Views: 3,046
Posted By ProfessorPC
Re: office 2007 product key

not sure if i would run with that one. i believe they have upped their key logging. plus if caught they can come after you since its not a registered copy and illegal. however openoffice has most of...
Forum: Windows Vista Jun 10th, 2008
Replies: 9
Views: 3,046
Posted By ProfessorPC
Re: office 2007 product key

no it didnt. depending on the manufacturer you received 30-90 day trials. just advertising. but if you like the office there is an alternative. Open Office http://download.openoffice.org/index.html
Forum: PHP Jun 8th, 2008
Replies: 4
Views: 346
Posted By ProfessorPC
Re: Php web programmer

instead of paying him to do your sites you can just come here and get all the help you need for FREE!!!
Forum: Windows NT / 2000 / XP / 2003 Jun 7th, 2008
Replies: 1
Views: 132
Posted By ProfessorPC
Re: picture folder does not respond

have you restarted your computer?
Forum: PHP Jun 7th, 2008
Replies: 4
Views: 312
Posted By ProfessorPC
Re: php syntax error

or you can use a single quote inside the double quotes

print "<meta http-equiv='refresh' content='0;URL=messagesent.html'>";
Forum: PHP Jun 7th, 2008
Replies: 1
Views: 173
Posted By ProfessorPC
Re: A php mysql newbie question

Are you displaying the same results in the same order on your page? Is it one result or a list? If the display is different you can create another query, if its the same just set it to a...
Forum: Windows Vista Jun 6th, 2008
Replies: 9
Views: 3,046
Posted By ProfessorPC
Re: office 2007 product key

I would contact your manufacturer
Forum: PHP Jun 6th, 2008
Replies: 1
Views: 188
Posted By ProfessorPC
Re: Help retrieving images

i would talk to the host about that.
Forum: PHP Jun 6th, 2008
Replies: 10
Views: 407
Posted By ProfessorPC
Re: Echo only if two variables are true

cant do

if ($Series=='D'){
switch ($ModelYear){
cases
}
}


?
Forum: PHP Jun 6th, 2008
Replies: 10
Views: 407
Posted By ProfessorPC
Re: Echo only if two variables are true

just looking but dont you want to set the model year to the value between the H's?

$ModelYear=substr($decode,5,1);
switch ($ModelYear){
Case 0:

break;
Case 1:

break;
Forum: PCI and Add-In Cards Jun 6th, 2008
Replies: 0
Views: 319
Posted By ProfessorPC
Computer not starting with 2 gc's

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...
Forum: Windows NT / 2000 / XP / 2003 Jun 6th, 2008
Replies: 4
Views: 664
Posted By ProfessorPC
Forum: MS SQL Jun 6th, 2008
Replies: 9
Views: 1,098
Posted By ProfessorPC
Re: Problem with SQL statement in Microsoft Access

looking in your db i noticed that you do not have any orders in February. This will be one reason why you cant pull anything from the first query. change the date to 6/2/2008 and BAM its full of...
Forum: Networking Hardware Configuration Jun 5th, 2008
Replies: 3
Views: 425
Posted By ProfessorPC
Re: online LAN gaming

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...
Forum: Networking Hardware Configuration Jun 5th, 2008
Replies: 1
Views: 183
Posted By ProfessorPC
Re: this one is a real challenge

they can also get your operating systems id and post it to your game account. there are many different ways to mark a computer.
Forum: Windows NT / 2000 / XP / 2003 Jun 5th, 2008
Replies: 1
Views: 156
Posted By ProfessorPC
Re: Wireless Issues

Have you made sure that this nic is enabled?
Forum: Windows NT / 2000 / XP / 2003 Jun 5th, 2008
Replies: 4
Views: 664
Posted By ProfessorPC
Re: how to access private folders - D: win xp pro? HELP

crazy question but have you taken ownership of the files?
Forum: Windows NT / 2000 / XP / 2003 Jun 5th, 2008
Replies: 3
Views: 377
Posted By ProfessorPC
Re: XP Won't login

here is a long and hectic procedure available to restore the registry so that we can use System restore to roll back out system to the time when it was working fine !!
How to recover from a corrupted...
Forum: VB.NET Jun 5th, 2008
Replies: 1
Views: 160
Posted By ProfessorPC
Re: manish1

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...
Forum: MS SQL Jun 5th, 2008
Replies: 1
Views: 519
Posted By ProfessorPC
Re: populating listview from databases

try this link and page out. great for referencing...
http://www.java2s.com/Code/VB/Database-ADO.net/Database-ListView.htm
Forum: MS SQL Jun 5th, 2008
Replies: 1
Views: 417
Posted By ProfessorPC
Re: Query Help - Is this Possible?

You are looking for Joins. This link is a good starting point.
http://www.w3schools.com/Sql/sql_join.asp
Forum: PHP Jun 5th, 2008
Replies: 32
Views: 1,011
Posted By ProfessorPC
Re: Chat Application

My pleasure. Ill keep trying to break it for ya lol :)
Showing results 1 to 40 of 161

 
All times are GMT -4. The time now is 4:51 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC