473,327 Members | 1,979 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,327 software developers and data experts.

Problem in PHP Calendar Event

Good day!

I created a webpages and i have a login page consist of Username and Department. And i encountered problem in adding event in my calendar.

This is the flow of my webpage:
First I have a separate table for the user and calendar. In my user table it has a Username, Department, and Permission. In the permission I put True or False, only one user i put True because i want that user is the one who permitted to add event or if she is login the add event link appear, but if other login the add even0t did not appear.

This is my code in login:

Expand|Select|Wrap|Line Numbers
  1. <?php  
  2. session_start();  
  3. session_regenerate_id();  
  4.  
  5. if($_SESSION['loggedin']){  
  6. //the user is already logged in, lets redirect them to the other page  
  7.     header("Location:company.php");  
  8. }  
  9.  
  10. //require_once 'conn.php';    
  11. $db_name="dspi";  
  12.  
  13. mysql_connect("localhost", "root", "") or die("Cannot connect to server");  
  14. mysql_select_db("$db_name")or die("Cannot select DB");     
  15.  
  16.  
  17.         $department = mysql_real_escape_string($_POST['department']);     
  18.         $username = mysql_real_escape_string($_POST['username']);  
  19.  
  20.         $sql=mysql_query("SELECT `Department`, `Username` FROM `tbllogin` WHERE `Department` = '{$department}' AND Username = '{$username}'") or die(mysql_error());  
  21.         $ct = mysql_num_rows($sql);  
  22.  
  23.         if($ct == 1) {  
  24. // im guessing this means that the user is valid.  
  25. $_SESSION['loggedin'] = true; // now that the user is valid we change the session value.  
  26.             $row = mysql_fetch_assoc($sql);    
  27.  
  28.             $_SESSION['username'] = $row['Username'] ; 
  29.             $_SESSION['department'] = $row['Department']; 
  30.  
  31.             $Departments=array('Accounting', 'Engineering', 'Finishing_Goods', 'HRAD', 'MIS', 'Packaging_and_Design', 'Production', 'Purchasing_Logistic', 'QA_and_Technical', 'Supply_Chain'); 
  32.  
  33.             if (in_array($row['Department'], $Departments)){ 
  34.                     header ('Location:company.php'); 
  35.             }else{ 
  36.                     echo "Incorrect Username or Department"; 
  37.                     header ('Location:index.php'); 
  38.             } 
  39.         } 
  40. ?> 
  41.  
and this is my code in calendar page:
Expand|Select|Wrap|Line Numbers
  1. <?php 
  2.  
  3. session_start(); 
  4. $host = "localhost"; 
  5.  
  6.     $username = ""; 
  7.  
  8.     $password = ""; 
  9.  
  10.     $dbCnx = @mysql_connect($host, $username, $password) or die('Could not Connect to the database'); 
  11.  
  12.     $dbName = 'dspi'; 
  13.  
  14.     mysql_select_db($dbName);     
  15. ?> 
  16. <html> 
  17. <body> 
  18. <script> 
  19. function goLastMonth(month, year){ 
  20. // If the month is January, decrement the year 
  21. if(month == 1){ 
  22. --year; 
  23. month = 13; 
  24. document.location.href = '<?=$_SERVER['PHP_SELF'];?>?month='+(month-1)+'&year='+year; 
  25. //next function 
  26. function goNextMonth(month, year){ 
  27. // If the month is December, increment the year 
  28. if(month == 12){ 
  29. ++year; 
  30. month = 0; 
  31. document.location.href = '<?=$_SERVER['PHP_SELF'];?>?month='+(month+1)+'&year='+year; 
  32. }  
  33.  
  34. function remChars(txtControl, txtCount, intMaxLength) 
  35. if(txtControl.value.length > intMaxLength) 
  36. txtControl.value = txtControl.value.substring(0, (intMaxLength-1)); 
  37. else 
  38. txtCount.value = intMaxLength - txtControl.value.length; 
  39.  
  40. function checkFilled() { 
  41. var filled = 0 
  42. var x = document.form1.calName.value; 
  43. //x = x.replace(/^\s+/,""); // strip leading spaces 
  44. if (x.length > 0) {filled ++} 
  45.  
  46. var y = document.form1.calDesc.value; 
  47. //y = y.replace(/^s+/,""); // strip leading spaces 
  48. if (y.length > 0) {filled ++} 
  49.  
  50. if (filled == 2) { 
  51. document.getElementById("Submit").disabled = false; 
  52. else {document.getElementById("Submit").disabled = true} // in case a field is filled then erased 
  53.  
  54.  
  55. </script> 
  56.  
  57. <?php 
  58. //$todaysDate = date("n/j/Y"); 
  59. //echo $todaysDate; 
  60. // Get values from query string 
  61. $day = (isset($_GET["day"])) ? $_GET['day'] : ""; 
  62. $month = (isset($_GET["month"])) ? $_GET['month'] : ""; 
  63. $year = (isset($_GET["year"])) ? $_GET['year'] : ""; 
  64. //comparaters for today's date 
  65. //$todaysDate = date("n/j/Y"); 
  66. //$sel = (isset($_GET["sel"])) ? $_GET['sel'] : ""; 
  67. //$what = (isset($_GET["what"])) ? $_GET['what'] : ""; 
  68.  
  69. //$day = (!isset($day)) ? $day = date("j") : $day = ""; 
  70. if(empty($day)){ $day = date("j"); } 
  71.  
  72. if(empty($month)){ $month = date("n"); } 
  73.  
  74. if(empty($year)){ $year = date("Y"); }  
  75. //set up vars for calendar etc 
  76. $currentTimeStamp = strtotime("$year-$month-$day"); 
  77. $monthName = date("F", $currentTimeStamp); 
  78. $numDays = date("t", $currentTimeStamp); 
  79. $counter = 0; 
  80. //$numEventsThisMonth = 0; 
  81. //$hasEvent = false; 
  82. //$todaysEvents = "";  
  83. //run a selec statement to hi-light the days 
  84. function hiLightEvt($eMonth,$eDay,$eYear){ 
  85. //$tDayName = date("l"); 
  86. $todaysDate = date("n/j/Y"); 
  87. $dateToCompare = $eMonth . '/' . $eDay . '/' . $eYear; 
  88. if($todaysDate == $dateToCompare){ 
  89. //$aClass = '<span>' . $tDayName . '</span>'; 
  90. $aClass='class="today"'; 
  91. }else{ 
  92. //$dateToCompare = $eMonth . '/' . $eDay . '/' . $eYear; 
  93. //echo $todaysDate; 
  94. //return; 
  95. $sql="select count(calDate) as eCount from calTbl where calDate = '" . $eMonth . '/' . $eDay . '/' . $eYear . "'"; 
  96. //echo $sql; 
  97. //return; 
  98. $result = mysql_query($sql); 
  99. while($row= mysql_fetch_array($result)){ 
  100. if($row['eCount'] >=1){ 
  101. $aClass = 'class="event"'; 
  102. }elseif($row['eCount'] ==0){ 
  103. $aClass ='class="normal"'; 
  104. return $aClass; 
  105. ?> 
  106. <div id="Calendar_Event"> 
  107. <table width="350" cellpadding="0" cellspacing="0"> 
  108. <tr> 
  109. <td width="50" colspan="1"> 
  110. <input type="button" value=" < " onClick="goLastMonth(<?php echo $month . ", " . $year; ?>);"> 
  111. </td> 
  112. <td width="250" colspan="5"> 
  113. <span class="title" style="color:#FFFFFF"><?php echo $monthName . " " . $year; ?></span><br> 
  114. </td> 
  115. <td width="50" colspan="1" align="right"> 
  116. <input type="button" value=" > " onClick="goNextMonth(<?php echo $month . ", " . $year; ?>);"> 
  117. </td> 
  118. </tr>  
  119. <tr> 
  120. <th>M</td> 
  121. <th>T</td> 
  122. <th>W</td> 
  123. <th>T</td> 
  124. <th>F</td> 
  125. <th>S</td> 
  126. <th>S</td> 
  127. </tr> 
  128. <tr> 
  129. <?php 
  130. for($i = 1; $i < $numDays+1; $i++, $counter++){ 
  131. $dateToCompare = $month . '/' . $i . '/' . $year; 
  132. $timeStamp = strtotime("$year-$month-$i"); 
  133. //echo $timeStamp . '<br/>'; 
  134. if($i == 1){ 
  135. // Workout when the first day of the month is 
  136. $firstDay = date("N", $timeStamp); 
  137. for($j = 1; $j < $firstDay; $j++, $counter++){ 
  138. echo "<td>&nbsp;</td>"; 
  139. }  
  140. if($counter % 7 == 0 ){ 
  141. ?> 
  142. </tr><tr> 
  143. <?php 
  144. ?> 
  145. <!--right here--><td width="50" <?=hiLightEvt($month,$i,$year);?>><a href="<?=$_SERVER['PHP_SELF'] . '?month='. $month . '&day=' . $i . '&year=' . $year;?>&v=1"><?=$i;?></a></td>  
  146. <?php 
  147. ?> 
  148. </table> 
  149. </div> 
  150. <div id="New_Event"> 
  151. <?php 
  152. if(isset($_GET['v'])){ 
  153. if(isset($_POST['Submit'])){ 
  154. $sql="insert into calTbl(calName,calDesc,calDate,calStamp) values('" . $_POST['calName'] ."','" . $_POST['calDesc'] . "','" . $_POST['calDate'] . "',now())"; 
  155. mysql_query($sql); 
  156. $sql="select calName,calDesc, DATE_FORMAT(calStamp, '%a %b %e %Y') as calStamp from calTbl where calDate = '" . $month . '/' . $day . '/' . $year . "'"; 
  157. //echo $sql; 
  158. //return; 
  159. $result = mysql_query($sql); 
  160. $numRows = mysql_num_rows($result); 
  161.  
  162. $check=mysql_query("SELECT * FROM tbllogin WHERE Username='xxx' AND Department='HRAD' AND Permission='True'"); 
  163. mysql_fetch_array($check); 
  164. if($check['Username']=='xxx' && $check['Department']=='HRAD'){ 
  165. $_SESSION['isallowed'] = $check['Permission']; 
  166.  
  167.  
  168.  
  169. //if (mysql_num_rows($check)>0){  
  170. ?> 
  171. <a href="<?=$_SERVER['PHP_SELF'];?>?month=<?=$_GET['month'] . '&day=' . $_GET['day'] . '&year=' . $_GET['year'];?>&v=1&f=true">Add Even</a><a href="<?=$_SERVER['PHP_SELF'];?>?month=<?=$_GET['month'] . '&day=' . $_GET['day'] . '&year=' . $_GET['year'];?>&v=1&f=true">t</a><?php 
  172. }else{ 
  173. echo 'You cannot Add New Event'; 
  174. }?> 
  175. </div> 
  176. <div id="Cal_Event"> 
  177. <?php 
  178. if(isset($_GET['f'])){ 
  179. include 'calform.php'; 
  180. if($numRows == 0 ){ 
  181. echo ''; 
  182. }else{ 
  183. //echo '<ul>'; 
  184. echo '<h3>Event Listed</h3>'; 
  185. while($row = mysql_fetch_array($result)){ 
  186. ?> 
  187.  
  188. <h5><?=$row['calName'];?></h5> 
  189. <?=$row['calDesc'];?><br/> 
  190. Listed On: <?=$row['calStamp'];?> 
  191. <?php 
  192. ?> 
  193. </div> 
  194. </body> 
  195. </html> 
  196.  
In that code when the user log is xxx and when she click a date she want to add event the appear is "You cannot Add Event".

I hope somebody can help me..


Thank you in advance...
Sep 21 '10 #1

✓ answered by dlite922

I can't go through your code and debug it.

Point out where this add event link is and what variables allow it to display.

What have you done to make it now appear?
What's the logic?
Have you troubleshooted that logic and make sure it works? contains the right values?


Dan

5 1954
dlite922
1,584 Expert 1GB
Welcome back rhodarose,

What have you done to debug this? are there any errors? have you traced your code?

"You cannot add event" is a custom error which I don't even see in your code to tell you where to start debugging.

I suggest you find that Error message in your code and start working backwards.

Use debug functions like var_dump() and simply print_r() to print variables and die()function to halt execution.

Once you find the problem and don't understand it, post a new thread about it.

I like to help fix the programmer, not the program.

Dan
Sep 22 '10 #2
I have a new code in my calendar and the problem is in all user the add event link was appear

this is my new code:

Expand|Select|Wrap|Line Numbers
  1. <?php
  2.  
  3. session_start();
  4. $host = "localhost";
  5.  
  6.     $username = "";
  7.  
  8.     $password = "";
  9.  
  10.     $dbCnx = @mysql_connect($host, $username, $password) or die('Could not Connect to the database');
  11.  
  12.     $dbName = 'dspi';
  13.  
  14.     mysql_select_db($dbName);    
  15. ?>
  16. <html>
  17. <body>
  18. <script>
  19. function goLastMonth(month, year){
  20. // If the month is January, decrement the year
  21. if(month == 1){
  22. --year;
  23. month = 13;
  24. }
  25. document.location.href = '<?=$_SERVER['PHP_SELF'];?>?month='+(month-1)+'&year='+year;
  26. }
  27. //next function
  28. function goNextMonth(month, year){
  29. // If the month is December, increment the year
  30. if(month == 12){
  31. ++year;
  32. month = 0;
  33. }
  34. document.location.href = '<?=$_SERVER['PHP_SELF'];?>?month='+(month+1)+'&year='+year;
  35.  
  36. function remChars(txtControl, txtCount, intMaxLength)
  37. {
  38. if(txtControl.value.length > intMaxLength)
  39. txtControl.value = txtControl.value.substring(0, (intMaxLength-1));
  40. else
  41. txtCount.value = intMaxLength - txtControl.value.length;
  42. }
  43.  
  44. function checkFilled() {
  45. var filled = 0
  46. var x = document.form1.calName.value;
  47. //x = x.replace(/^\s+/,""); // strip leading spaces
  48. if (x.length > 0) {filled ++}
  49.  
  50. var y = document.form1.calDesc.value;
  51. //y = y.replace(/^s+/,""); // strip leading spaces
  52. if (y.length > 0) {filled ++}
  53.  
  54. if (filled == 2) {
  55. document.getElementById("Submit").disabled = false;
  56. }
  57. else {document.getElementById("Submit").disabled = true} // in case a field is filled then erased
  58.  
  59. }
  60.  
  61. </script>
  62.  
  63. <?php
  64. //$todaysDate = date("n/j/Y");
  65. //echo $todaysDate;
  66. // Get values from query string
  67. $day = (isset($_GET["day"])) ? $_GET['day'] : "";
  68. $month = (isset($_GET["month"])) ? $_GET['month'] : "";
  69. $year = (isset($_GET["year"])) ? $_GET['year'] : "";
  70. //comparaters for today's date
  71. //$todaysDate = date("n/j/Y");
  72. //$sel = (isset($_GET["sel"])) ? $_GET['sel'] : "";
  73. //$what = (isset($_GET["what"])) ? $_GET['what'] : "";
  74.  
  75. //$day = (!isset($day)) ? $day = date("j") : $day = "";
  76. if(empty($day)){ $day = date("j"); }
  77.  
  78. if(empty($month)){ $month = date("n"); }
  79.  
  80. if(empty($year)){ $year = date("Y"); } 
  81. //set up vars for calendar etc
  82. $currentTimeStamp = strtotime("$year-$month-$day");
  83. $monthName = date("F", $currentTimeStamp);
  84. $numDays = date("t", $currentTimeStamp);
  85. $counter = 0;
  86. //$numEventsThisMonth = 0;
  87. //$hasEvent = false;
  88. //$todaysEvents = ""; 
  89. //run a selec statement to hi-light the days
  90. function hiLightEvt($eMonth,$eDay,$eYear){
  91. //$tDayName = date("l");
  92. $todaysDate = date("n/j/Y");
  93. $dateToCompare = $eMonth . '/' . $eDay . '/' . $eYear;
  94. if($todaysDate == $dateToCompare){
  95. //$aClass = '<span>' . $tDayName . '</span>';
  96. $aClass='class="today"';
  97. }else{
  98. //$dateToCompare = $eMonth . '/' . $eDay . '/' . $eYear;
  99. //echo $todaysDate;
  100. //return;
  101. $sql="select count(calDate) as eCount from calTbl where calDate = '" . $eMonth . '/' . $eDay . '/' . $eYear . "'";
  102. //echo $sql;
  103. //return;
  104. $result = mysql_query($sql);
  105. while($row= mysql_fetch_array($result)){
  106. if($row['eCount'] >=1){
  107. $aClass = 'class="event"';
  108. }elseif($row['eCount'] ==0){
  109. $aClass ='class="normal"';
  110. }
  111. }
  112. }
  113. return $aClass;
  114. }
  115. ?>
  116. <div id="Calendar_Event">
  117. <table width="350" cellpadding="0" cellspacing="0">
  118. <tr>
  119. <td width="50" colspan="1">
  120. <input type="button" value=" < " onClick="goLastMonth(<?php echo $month . ", " . $year; ?>);">
  121. </td>
  122. <td width="250" colspan="5">
  123. <span class="title" style="color:#FFFFFF"><?php echo $monthName . " " . $year; ?></span><br>
  124. </td>
  125. <td width="50" colspan="1" align="right">
  126. <input type="button" value=" > " onClick="goNextMonth(<?php echo $month . ", " . $year; ?>);">
  127. </td>
  128. </tr> 
  129. <tr>
  130. <th>M</td>
  131. <th>T</td>
  132. <th>W</td>
  133. <th>T</td>
  134. <th>F</td>
  135. <th>S</td>
  136. <th>S</td>
  137. </tr>
  138. <tr>
  139. <?php
  140. for($i = 1; $i < $numDays+1; $i++, $counter++){
  141. $dateToCompare = $month . '/' . $i . '/' . $year;
  142. $timeStamp = strtotime("$year-$month-$i");
  143. //echo $timeStamp . '<br/>';
  144. if($i == 1){
  145. // Workout when the first day of the month is
  146. $firstDay = date("N", $timeStamp);
  147. for($j = 1; $j < $firstDay; $j++, $counter++){
  148. echo "<td>&nbsp;</td>";
  149. }
  150. if($counter % 7 == 0 ){
  151. ?>
  152. </tr><tr>
  153. <?php
  154. }
  155. ?>
  156. <!--right here--><td width="50" <?=hiLightEvt($month,$i,$year);?>><a href="<?=$_SERVER['PHP_SELF'] . '?month='. $month . '&day=' . $i . '&year=' . $year;?>&v=1"><?=$i;?></a></td> 
  157. <?php
  158. }
  159. ?>
  160. </table>
  161. </div>
  162. <div id="New_Event">
  163. <?php
  164. if(isset($_GET['v'])){
  165. if(isset($_POST['Submit'])){
  166. $sql="insert into calTbl(calName,calDesc,calDate,calStamp) values('" . $_POST['calName'] ."','" . $_POST['calDesc'] . "','" . $_POST['calDate'] . "',now())";
  167. mysql_query($sql);
  168. }
  169. $sql="select calName,calDesc, DATE_FORMAT(calStamp, '%a %b %e %Y') as calStamp from calTbl where calDate = '" . $month . '/' . $day . '/' . $year . "'";
  170. //echo $sql;
  171. //return;
  172. $result = mysql_query($sql);
  173. $numRows = mysql_num_rows($result);
  174.  
  175. $check1=mysql_query("SELECT * FROM tbllogin WHERE Username='xxx' AND Department='HRAD' AND Permission='True'");
  176. $check2 = mysql_fetch_array($check1);
  177. if($check2['Username']=='xxx' && $check2['Department']=='HRAD'){
  178. $_SESSION['isallowed'] = $check2['Permission']; 
  179.  
  180.  
  181. //if (mysql_num_rows($check)>0){ 
  182. ?>
  183. <a href="<?=$_SERVER['PHP_SELF'];?>?month=<?=$_GET['month'] . '&day=' . $_GET['day'] . '&year=' . $_GET['year'];?>&v=1&f=true">Add Even</a><a href="<?=$_SERVER['PHP_SELF'];?>?month=<?=$_GET['month'] . '&day=' . $_GET['day'] . '&year=' . $_GET['year'];?>&v=1&f=true">t</a><?php
  184. }else{
  185. echo 'You cannot Add New Event';
  186. }?>
  187. </div>
  188. <div id="Cal_Event">
  189. <?php
  190. if(isset($_GET['f'])){
  191. include 'calform.php';
  192. }
  193. if($numRows == 0 ){
  194. echo '';
  195. }else{
  196. //echo '<ul>';
  197. echo '<h3>Event Listed</h3>';
  198. while($row = mysql_fetch_array($result)){
  199. ?>
  200.  
  201. <h5><?=$row['calName'];?></h5>
  202. <?=$row['calDesc'];?><br/>
  203. Listed On: <?=$row['calStamp'];?>
  204. <?php
  205. }
  206. }
  207. }
  208. ?>
  209. </div>
  210. </body>
  211. </html>
  212.  
Sep 23 '10 #3
dlite922
1,584 Expert 1GB
I can't go through your code and debug it.

Point out where this add event link is and what variables allow it to display.

What have you done to make it now appear?
What's the logic?
Have you troubleshooted that logic and make sure it works? contains the right values?


Dan
Sep 23 '10 #4
Add Event link is a form of event. To choose who is the user who are permitted to add event i put in my database a permission field, where i add data tru or false all the user i put false except one who i chooose who can add event.

My problem is in all user the add event was appear. i want that only in a user who is true in permission that add event would appear and the rest the message "You cannot Add new Event" appear because they are not permitted to add event.


Thank you...
Sep 24 '10 #5
dlite922
1,584 Expert 1GB
I know what you're trying to do. I didn't ask for an explanation in English.

I wanted you to follow and trace this in CODE.

Find out where your logic of true or false has gone wrong.

Look at that section of the code. use debug print function like var_dump(), print_r() and die() to troubleshoot the values.

Where do you add data to be true or false. <-- FIND THIS CODE FOR ME IN YOUR CODE.

Do not paste your entire code. I'm here to troubleshoot a specific problem and not go through your entire program.

Dan
Sep 24 '10 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Brent | last post by:
Hi, Before I start to build this from scratch, wanted to check if there are any good free ones out there that I can add to my site. I want a calendar that displays a large format events calendar,...
2
by: Tim Gallivan | last post by:
Hi group, I'm having a strange problem with event handling. My project has a form with a textbox that creates 25 instances of class A when a button is clicked. Class A raises the event without...
1
by: Paul D. Fox | last post by:
I've seen how you can send e-mail through ASP.NET, but how about sending an Outlook Calendar event after the "Submit" button is pressed? Does anyone have a small sample of this? Paul
0
by: sangmin.park | last post by:
Hello. I made a page using .net calendar. At first, I build this page with 3 frames. "top", "menu", "main" "menu" frame has page links and .net calendar. Now, the page was revised to use...
3
by: someone | last post by:
I don't know if this is the correct group to post to, but if I am in the wrong group please redirect me. I am not a programmer but a web master. I am looking for a java applette/javascript that...
1
by: Dabbler | last post by:
I'm trying to customize calendar days using data in a table. Some days may have corresponding rows in the table giving counts for that day. I'm not clear on when I should get the data from the...
0
by: rtwPhoenix | last post by:
To install a button on-click event that automatically installs a .vcs event for a personal calendar. This is written in .net vb. From this you should be able to get a good idea of how this works...
2
by: sorobor | last post by:
dear sir .. i am using cakephp freamwork ..By the way i m begener in php and javascript .. My probs r bellow I made a javascript calender ..there is a close button ..when i press close button...
1
ddtpmyra
by: ddtpmyra | last post by:
I keep on looking on open source code of calendar event out of PHP but most of them are for commercial use. Anybody, who has good resource of calendar scripts with a tutorial from a scratch you...
6
by: najmi | last post by:
hai.. i have used jquery fullcalendar for my application and i have one problem that is how to display the event from the database.i have found the sample given in php but i want it in jsp.can...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.