Forum: Troubleshooting Dead Machines Aug 19th, 2009 |
| Replies: 6 Views: 540 This could be caused by many different things. Did you receive any error messages? Has the problem repeated? What were you doing when this occurred? There are many questions to be answered. My... |
Forum: VB.NET Feb 5th, 2009 |
| Replies: 7 Views: 1,302 only one field is displaying? if this is the case you need to add another listbox add to the loop
While dr.Read()
ListBox1.Items.Add(dr(2))
ListBox1.Items.Add(dr(3))
End While |
Forum: VB.NET Feb 5th, 2009 |
| Replies: 16 Views: 1,989 took a quick, very quick look. to add the condition you need to finish the WHERE
cmd = New OleDbCommand("SELECT * from UMP WHERE ", cn)
'to
cmd = New OleDbCommand("SELECT * from UMP WHERE field... |
Forum: PHP Feb 4th, 2009 |
| Replies: 24 Views: 955 |
Forum: MS SQL Feb 4th, 2009 |
| Replies: 6 Views: 2,926 so you can change the table name in vs? i didnt think you could thats why i recommended sql management studio |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 you should see a button that says solved |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 did this problem get solved? if so mark it as solved so if others run into a problem then can see the solution and create another thread for a different problem |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 sorry about that take out the first order by srno and that should fix it
rs.Open "select srno, productname, qty, unit from mrtemp where req_no = " & strlistrequest & " order by srno", con,... |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 try changing the query to
rs.Open "select srno, productname, qty, unit from mrtemp order by srno where req_no=" & strlistrequest & " order by srno", con, adOpenDynamic, adLockOptimistic |
Forum: VB.NET Feb 4th, 2009 |
| Replies: 16 Views: 1,989 |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 is there an error number with that? |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 11 Views: 716 need to add & " after strlistrequest |
Forum: VB.NET Feb 4th, 2009 |
| Replies: 16 Views: 1,989 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... |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 8 Views: 1,452 go here. http://www.vb6.us/tutorials/formating-dates-and-times-vb6
it gives different date formats and examples |
Forum: MS SQL Feb 4th, 2009 |
| Replies: 6 Views: 2,926 Not sure if that is possible. Can you not install management studio express to make any changes to your DB? |
Forum: MS SQL Feb 4th, 2009 |
| Replies: 2 Views: 892 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. |
Forum: Windows Vista and Windows 7 Jan 28th, 2009 |
| Replies: 5 Views: 739 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... |
Forum: VB.NET Dec 3rd, 2008 |
| Replies: 7 Views: 4,230 and this is how you reply to somebody trying to help. obviously other people have been able to figure it out. figure it out yourself. |
Forum: VB.NET Dec 3rd, 2008 |
| Replies: 7 Views: 4,230 not sure if this will help you much
http://bytes.com/groups/net-vb/356895-openfiledialog-problem |
Forum: MS SQL Oct 17th, 2008 |
| Replies: 2 Views: 1,706 just to get an idea can you show your connection strings to both instances? |
Forum: MS SQL Jul 4th, 2008 |
| Replies: 1 Views: 1,943 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... |
Forum: PHP Jun 15th, 2008 |
| Replies: 16 Views: 2,259 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... |
Forum: MS SQL Jun 6th, 2008 |
| Replies: 9 Views: 2,333 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 data... |
Forum: Windows NT / 2000 / XP Jun 5th, 2008 |
| Replies: 3 Views: 2,113 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... |
Forum: PHP Jun 1st, 2008 |
| Replies: 4 Views: 737 Do you have an example?
Not sure what type of situation you are referring to. |
Forum: PHP Jun 1st, 2008 |
| Replies: 4 Views: 775 Missed your email question. I have used this in the past.
$emailcheck = $_POST['email'];
$check = mysql_query("SELECT email FROM users WHERE email = '$emailcheck'")
or die(mysql_error());... |
Forum: PHP Jun 1st, 2008 |
| Replies: 4 Views: 775 Sounds like you got it right. I had ran into the same problem. I had created the random password and inserted that into the db as their password. Sent them a link including and identifier... |
Forum: PHP May 31st, 2008 |
| Replies: 3 Views: 568 your welcome. would you mind marking this as solved so others will know the solution is displayed. |
Forum: PHP May 31st, 2008 |
| Replies: 3 Views: 568 the reason you are getting this error is because all headers must be sent before anything is displayed. moving the php code to the top of the script may take care of your problem. |
Forum: MySQL May 30th, 2008 |
| Replies: 3 Views: 892 you are pulling from all rows in the db. your variable will only display the last rows info. but yes that should work for using that var later in the page. |
Forum: VB.NET May 30th, 2008 |
| Replies: 5 Views: 1,642 would it be easier to only let the user select a date instead of insert? maybe change the textboxes to comboboxes and in the form load event do something like this:
Dim y As Date
y = Date.Today... |
Forum: PHP May 30th, 2008 |
| Replies: 5 Views: 885 |
Forum: PHP May 29th, 2008 |
| Replies: 16 Views: 2,507 i will agree with that. more secure the better if its being stored. didnt really think having a SSL setup was needed since it is a class project but if its live it is a must have. |
Forum: PHP May 29th, 2008 |
| Replies: 16 Views: 2,507 you can store the data in the db but you definatly need to encrypt. i would suggest not even storing it personally. But that is just me. |
Forum: PHP May 29th, 2008 |
| Replies: 25 Views: 1,616 ok i thought the pilotid was an int. so change the second query to:
[code=php]
$arrival = mysql_query("Select arr_airport from flight2 where pilotid2 = '".$row['pilotid1']."' order by... |
Forum: PHP May 29th, 2008 |
| Replies: 25 Views: 1,616 The CPC912 is an aircraft type correct?
sorry its the other query i was needing. the second query and while loop. |
Forum: PHP May 29th, 2008 |
| Replies: 25 Views: 1,616 can you post what you have for line 44? (the query) |
Forum: PHP May 29th, 2008 |
| Replies: 25 Views: 1,616 give this a try. i added another query to pull the arr_airport by date below. its pretty straight forward.
$query = "SELECT firstname, lastname, pilotid1, pilotid2, COUNT(flight_time) AS flights,... |
Forum: PHP May 29th, 2008 |
| Replies: 25 Views: 1,616 ok your grouping this by pilotid. this is taking the info from the tables and displaying the information in one row per pilotid. and you want this to display with more then one row per pilotid? |
Forum: PHP May 29th, 2008 |
| Replies: 25 Views: 1,616 would it be possible to get a couple examples so i can insert into my mock db and test?
ok i got the data in. give me a few minutes to use this query |