473,509 Members | 3,039 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to stop execution when will get the ERROR in a perticular block?

13 New Member
Hi,

I have to execute below Anonymous Blocks script which inclide update script,but if suppose I will get error on block 5 then another block will not be execute i.e 6,7,8,9......last block ,so please request to you that please provide me the solution ASAP how i will do this.

Expand|Select|Wrap|Line Numbers
  1. BEGIN
  2.    UPDATE webuser
  3.       SET registration_type = 2
  4.     WHERE registration_type IS NULL
  5.       AND ID IN (3128, 6057, 6779, 7057, 7084, 7328);
  6.  
  7.    COMMIT;
  8.    DBMS_OUTPUT.put_line ('Block 2 executed successfully');
  9. EXCEPTION
  10.    WHEN OTHERS
  11.    THEN
  12.       BEGIN
  13.          DBMS_OUTPUT.put_line ('Error occurs at block 2');
  14.          ROLLBACK;
  15.          RAISE;
  16.       END;
  17. END;
  18. /
  19.  
  20. BEGIN
  21.    UPDATE webuser
  22.       SET registration_type = 2
  23.     WHERE registration_type IS NULL
  24.       AND ID IN (1102147, 1102367, 1102424, 1103296);
  25.  
  26.    COMMIT;
  27.    DBMS_OUTPUT.put_line ('Block 3 executed successfully');
  28. EXCEPTION
  29.    WHEN OTHERS
  30.    THEN
  31.       BEGIN
  32.          DBMS_OUTPUT.put_line ('Error occurs at block 3');
  33.          ROLLBACK;
  34.          RAISE;
  35.       END;
  36. END;
  37. /
  38.  
  39. BEGIN
  40.    UPDATE webuser
  41.       SET registration_type = 2
  42.     WHERE registration_type IS NULL
  43.       AND ID IN (1493634, 1493731, 1493925);
  44.  
  45.    COMMIT;
  46.    DBMS_OUTPUT.put_line ('Block 4 executed successfully');
  47. EXCEPTION
  48.    WHEN OTHERS
  49.    THEN
  50.       BEGIN
  51.          DBMS_OUTPUT.put_line ('Error occurs at block 4');
  52.          ROLLBACK;
  53.          RAISE;
  54.       END;
  55. END;
  56. /
  57.  
  58. BEGIN
  59.    UPDATE webuser
  60.       SET registration_type = 2
  61.     WHERE registration_type IS NULL
  62.       AND ID IN (1773803, 1773910, 1774804, 1774962, 1775215);
  63.  
  64.    COMMIT;
  65.    DBMS_OUTPUT.put_line ('Block 5 executed successfully');
  66. EXCEPTION
  67.    WHEN OTHERS
  68.    THEN
  69.       BEGIN
  70.          DBMS_OUTPUT.put_line ('Error occurs at block 5');
  71.          ROLLBACK;
  72.          RAISE;
  73.       END;
  74. END;
  75. /
  76.  
  77. BEGIN
  78.    UPDATE webuser
  79.       SET registration_type = 2
  80.     WHERE registration_type IS NULL
  81.       AND ID IN (2030398, 2030723, 2030756, 2030857);
  82.  
  83.    COMMIT;
  84.    DBMS_OUTPUT.put_line ('Block 6 executed successfully');
  85. EXCEPTION
  86.    WHEN OTHERS
  87.    THEN
  88.       BEGIN
  89.          DBMS_OUTPUT.put_line ('Error occurs at block 6');
  90.          ROLLBACK;
  91.          RAISE;
  92.       END;
  93. END;
  94. /
  95.  
  96. BEGIN
  97.    UPDATE webuser
  98.       SET registration_type = 2
  99.     WHERE registration_type IS NULL
  100.       AND ID IN (2238623, 2238629, 2238669, 2238957);
  101.  
  102.    COMMIT;
  103.    DBMS_OUTPUT.put_line ('Block 7 executed successfully');
  104. EXCEPTION
  105.    WHEN OTHERS
  106.    THEN
  107.       BEGIN
  108.          DBMS_OUTPUT.put_line ('Error occurs at block 7');
  109.          ROLLBACK;
  110.          RAISE;
  111.       END;
  112. END;
  113. /
  114.  
  115. BEGIN
  116.    UPDATE webuser
  117.       SET registration_type = 2
  118.     WHERE registration_type IS NULL
  119.       AND ID IN (2434597, 2434630, 2434797, 2435370);
  120.  
  121.    COMMIT;
  122.    DBMS_OUTPUT.put_line ('Block 8 executed successfully');
  123. EXCEPTION
  124.    WHEN OTHERS
  125.    THEN
  126.       BEGIN
  127.          DBMS_OUTPUT.put_line ('Error occurs at block 8');
  128.          ROLLBACK;
  129.          RAISE;
  130.       END;
  131. END;
  132. /
  133.  
  134. BEGIN
  135.    UPDATE webuser
  136.       SET registration_type = 2
  137.     WHERE registration_type IS NULL
  138.       AND ID IN (3107735, 3108103, 3108465, 3109176);
  139.  
  140.    COMMIT;
  141.    DBMS_OUTPUT.put_line ('Block 9 executed successfully');
  142. EXCEPTION
  143.    WHEN OTHERS
  144.    THEN
  145.       BEGIN
  146.          DBMS_OUTPUT.put_line ('Error occurs at block 9');
  147.          ROLLBACK;
  148.          RAISE;
  149.       END;
  150. END;
  151. /
  152.  
  153. BEGIN
  154.    UPDATE webuser
  155.       SET registration_type = 2
  156.     WHERE registration_type IS NULL
  157.       AND ID IN (3333340, 3333470, 3333722);
  158.  
  159.    COMMIT;
  160.    DBMS_OUTPUT.put_line ('Block 10 executed successfully');
  161. EXCEPTION
  162.    WHEN OTHERS
  163.    THEN
  164.       BEGIN
  165.          DBMS_OUTPUT.put_line ('Error occurs at block 10');
  166.          ROLLBACK;
  167.          RAISE;
  168.       END;
  169. END;
  170. /
  171.  
  172. BEGIN
  173.    UPDATE webuser
  174.       SET registration_type = 2
  175.     WHERE registration_type IS NULL
  176.       AND ID IN (3466145, 3466170, 3466257);
  177.  
  178.    COMMIT;
  179.    DBMS_OUTPUT.put_line ('Block 11 executed successfully');
  180. EXCEPTION
  181.    WHEN OTHERS
  182.    THEN
  183.       BEGIN
  184.          DBMS_OUTPUT.put_line ('Error occurs at block 11');
  185.          ROLLBACK;
  186.          RAISE;
  187.       END;
  188. END;
  189. /
  190.  
  191. BEGIN
  192.    UPDATE webuser
  193.       SET registration_type = 2
  194.     WHERE registration_type IS NULL
  195.       AND ID IN (5186888, 5186971, 5187025);
  196.  
  197.    COMMIT;
  198.    DBMS_OUTPUT.put_line ('Block 12 executed successfully');
  199. EXCEPTION
  200.    WHEN OTHERS
  201.    THEN
  202.       BEGIN
  203.          DBMS_OUTPUT.put_line ('Error occurs at block 12');
  204.          ROLLBACK;
  205.          RAISE;
  206.       END;
  207. END;
  208. /
  209.  
  210. BEGIN
  211.    UPDATE webuser
  212.       SET registration_type = 2
  213.     WHERE registration_type IS NULL
  214.       AND ID IN (5326971, 5327008, 5327036);
  215.  
  216.    COMMIT;
  217.    DBMS_OUTPUT.put_line ('Block 13 executed successfully');
  218. EXCEPTION
  219.    WHEN OTHERS
  220.    THEN
  221.       BEGIN
  222.          DBMS_OUTPUT.put_line ('Error occurs at block 13');
  223.          ROLLBACK;
  224.          RAISE;
  225.       END;
  226. END;
  227. /
  228.  
  229. BEGIN
  230.    UPDATE webuser
  231.       SET registration_type = 2
  232.     WHERE registration_type IS NULL
  233.       AND ID IN (5459438, 5459580);
  234.  
  235.    COMMIT;
  236.    DBMS_OUTPUT.put_line ('Block 14 executed successfully');
  237. EXCEPTION
  238.    WHEN OTHERS
  239.    THEN
  240.       BEGIN
  241.          DBMS_OUTPUT.put_line ('Error occurs at block 14');
  242.          ROLLBACK;
  243.          RAISE;
  244.       END;
  245. END;
  246. /
  247.  
  248. BEGIN
  249.    UPDATE webuser
  250.       SET registration_type = 2
  251.     WHERE registration_type IS NULL
  252.       AND ID IN (5608661, 5608838, 5608925);
  253.  
  254.    COMMIT;
  255.    DBMS_OUTPUT.put_line ('Block 15 executed successfully');
  256. EXCEPTION
  257.    WHEN OTHERS
  258.    THEN
  259.       BEGIN
  260.          DBMS_OUTPUT.put_line ('Error occurs at block 15');
  261.          ROLLBACK;
  262.          RAISE;
  263.       END;
  264. END;
  265. /
  266.  
  267. BEGIN
  268.    UPDATE webuser
  269.       SET registration_type = 2
  270.     WHERE registration_type IS NULL
  271.       AND ID IN (5719250, 5719492, 5719533);
  272.  
  273.    COMMIT;
  274.    DBMS_OUTPUT.put_line ('Block 16 executed successfully');
  275. EXCEPTION
  276.    WHEN OTHERS
  277.    THEN
  278.       BEGIN
  279.          DBMS_OUTPUT.put_line ('Error occurs at block 16');
  280.          ROLLBACK;
  281.          RAISE;
  282.       END;
  283. END;
  284. /
  285.  
  286. BEGIN
  287.    UPDATE webuser
  288.       SET registration_type = 2
  289.     WHERE registration_type IS NULL
  290.       AND ID IN (5837101, 5837142, 5837217);
  291.  
  292.    COMMIT;
  293.    DBMS_OUTPUT.put_line ('Block 17 executed successfully');
  294. EXCEPTION
  295.    WHEN OTHERS
  296.    THEN
  297.       BEGIN
  298.          DBMS_OUTPUT.put_line ('Error occurs at block 17');
  299.          ROLLBACK;
  300.          RAISE;
  301.       END;
  302. END;
  303. /
  304.  
  305. BEGIN
  306.    UPDATE webuser
  307.       SET registration_type = 2
  308.     WHERE registration_type IS NULL
  309.       AND ID IN (5944554, 5944623, 5944677);
  310.  
  311.    COMMIT;
  312.    DBMS_OUTPUT.put_line ('Block 18 executed successfully');
  313. EXCEPTION
  314.    WHEN OTHERS
  315.    THEN
  316.       BEGIN
  317.          DBMS_OUTPUT.put_line ('Error occurs at block 18');
  318.          ROLLBACK;
  319.          RAISE;
  320.       END;
  321. END;
  322. /
  323.  
  324. BEGIN
  325.    UPDATE webuser
  326.       SET registration_type = 2
  327.     WHERE registration_type IS NULL
  328.       AND ID IN (6052153, 6052254, 6052355);
  329.  
  330.    COMMIT;
  331.    DBMS_OUTPUT.put_line ('Block 19 executed successfully');
  332. EXCEPTION
  333.    WHEN OTHERS
  334.    THEN
  335.       BEGIN
  336.          DBMS_OUTPUT.put_line ('Error occurs at block 19');
  337.          ROLLBACK;
  338.          RAISE;
  339.       END;
  340. END;
  341. /
  342.  
  343. BEGIN
  344.    UPDATE webuser
  345.       SET registration_type = 2
  346.     WHERE registration_type IS NULL
  347.       AND ID IN (6154086, 6154189, 6154206);
  348.  
  349.    COMMIT;
  350.    DBMS_OUTPUT.put_line ('Block 20 executed successfully');
  351. EXCEPTION
  352.    WHEN OTHERS
  353.    THEN
  354.       BEGIN
  355.          DBMS_OUTPUT.put_line ('Error occurs at block 20');
  356.          ROLLBACK;
  357.          RAISE;
  358.       END;
  359. END;
  360. /
  361.  
  362. BEGIN
  363.    UPDATE webuser
  364.       SET registration_type = 2
  365.     WHERE registration_type IS NULL
  366.       AND ID IN (6239782, 6239909);
  367.  
  368.    COMMIT;
  369.    DBMS_OUTPUT.put_line ('Block 21 executed successfully');
  370. EXCEPTION
  371.    WHEN OTHERS
  372.    THEN
  373.       BEGIN
  374.          DBMS_OUTPUT.put_line ('Error occurs at block 21');
  375.          ROLLBACK;
  376.          RAISE;
  377.       END;
  378. END;
  379. /
  380.  
  381. BEGIN
  382.    UPDATE webuser
  383.       SET registration_type = 2
  384.     WHERE registration_type IS NULL
  385.       AND ID IN (6330597, 6330929, 6330986);
  386.  
  387.    COMMIT;
  388.    DBMS_OUTPUT.put_line ('Block 22 executed successfully');
  389. EXCEPTION
  390.    WHEN OTHERS
  391.    THEN
  392.       BEGIN
  393.          DBMS_OUTPUT.put_line ('Error occurs at block 22');
  394.          ROLLBACK;
  395.          RAISE;
  396.       END;
  397. END;
  398. /
  399.  
  400. BEGIN
  401.    UPDATE webuser
  402.       SET registration_type = 2
  403.     WHERE registration_type IS NULL
  404.       AND ID IN (6407050, 6407239, 6407264);
  405.  
  406.    COMMIT;
  407.    DBMS_OUTPUT.put_line ('Block 23 executed successfully');
  408. EXCEPTION
  409.    WHEN OTHERS
  410.    THEN
  411.       BEGIN
  412.          DBMS_OUTPUT.put_line ('Error occurs at block 23');
  413.          ROLLBACK;
  414.          RAISE;
  415.       END;
  416. END;
  417. /
  418.  
  419. BEGIN
  420.    UPDATE webuser
  421.       SET registration_type = 2
  422.     WHERE registration_type IS NULL
  423.       AND ID IN (6480726, 6480732, 6480733);
  424.  
  425.    COMMIT;
  426.    DBMS_OUTPUT.put_line ('Block 24 executed successfully');
  427. EXCEPTION
  428.    WHEN OTHERS
  429.    THEN
  430.       BEGIN
  431.          DBMS_OUTPUT.put_line ('Error occurs at block 24');
  432.          ROLLBACK;
  433.          RAISE;
  434.       END;
  435. END;
  436. /
  437.  
  438. BEGIN
  439.    UPDATE webuser
  440.       SET registration_type = 2
  441.     WHERE registration_type IS NULL
  442.       AND ID IN (6542096, 6542114, 6542147);
  443.  
  444.    COMMIT;
  445.    DBMS_OUTPUT.put_line ('Block 25 executed successfully');
  446. EXCEPTION
  447.    WHEN OTHERS
  448.    THEN
  449.       BEGIN
  450.          DBMS_OUTPUT.put_line ('Error occurs at block 25');
  451.          ROLLBACK;
  452.          RAISE;
  453.       END;
  454. END;
  455. /
  456.  
  457. BEGIN
  458.    UPDATE webuser
  459.       SET registration_type = 2
  460.     WHERE registration_type IS NULL
  461.       AND ID IN (6599366, 6599425, 6599437);
  462.  
  463.    COMMIT;
  464.    DBMS_OUTPUT.put_line ('Block 26 executed successfully');
  465. EXCEPTION
  466.    WHEN OTHERS
  467.    THEN
  468.       BEGIN
  469.          DBMS_OUTPUT.put_line ('Error occurs at block 26');
  470.          ROLLBACK;
  471.          RAISE;
  472.       END;
  473. END;
  474. /
  475.  
  476. BEGIN
  477.    UPDATE webuser
  478.       SET registration_type = 2
  479.     WHERE registration_type IS NULL
  480.       AND ID IN (6657973, 6658073, 6658077);
  481.  
  482.    COMMIT;
  483.    DBMS_OUTPUT.put_line ('Block 27 executed successfully');
  484. EXCEPTION
  485.    WHEN OTHERS
  486.    THEN
  487.       BEGIN
  488.          DBMS_OUTPUT.put_line ('Error occurs at block 27');
  489.          ROLLBACK;
  490.          RAISE;
  491.       END;
  492. END;
  493. /
  494.  
  495. BEGIN
  496.    UPDATE webuser
  497.       SET registration_type = 2
  498.     WHERE registration_type IS NULL
  499.       AND ID IN (6715103, 6715104, 6715131);
  500.  
  501.    COMMIT;
  502.    DBMS_OUTPUT.put_line ('Block 28 executed successfully');
  503. EXCEPTION
  504.    WHEN OTHERS
  505.    THEN
  506.       BEGIN
  507.          DBMS_OUTPUT.put_line ('Error occurs at block 28');
  508.          ROLLBACK;
  509.          RAISE;
  510.       END;
  511. END;
  512. /
  513.  
  514. BEGIN
  515.    UPDATE webuser
  516.       SET registration_type = 2
  517.     WHERE registration_type IS NULL
  518.       AND ID IN (6763225, 6763343, 6763360);
  519.  
  520.    COMMIT;
  521.    DBMS_OUTPUT.put_line ('Block 29 executed successfully');
  522. EXCEPTION
  523.    WHEN OTHERS
  524.    THEN
  525.       BEGIN
  526.          DBMS_OUTPUT.put_line ('Error occurs at block 29');
  527.          ROLLBACK;
  528.          RAISE;
  529.       END;
  530. END;
  531. /
  532.  
  533. BEGIN
  534.    UPDATE webuser
  535.       SET registration_type = 2
  536.     WHERE registration_type IS NULL
  537.       AND ID IN (6807787, 6807867, 6807988);
  538.  
  539.    COMMIT;
  540.    DBMS_OUTPUT.put_line ('Block 30 executed successfully');
  541. EXCEPTION
  542.    WHEN OTHERS
  543.    THEN
  544.       BEGIN
  545.          DBMS_OUTPUT.put_line ('Error occurs at block 30');
  546.          ROLLBACK;
  547.          RAISE;
  548.       END;
  549. END;
  550. /
  551.  
  552. BEGIN
  553.    UPDATE webuser
  554.       SET registration_type = 2
  555.     WHERE registration_type IS NULL
  556.       AND ID IN (6852737, 6852747, 6852754);
  557.  
  558.    COMMIT;
  559.    DBMS_OUTPUT.put_line ('Block 31 executed successfully');
  560. EXCEPTION
  561.    WHEN OTHERS
  562.    THEN
  563.       BEGIN
  564.          DBMS_OUTPUT.put_line ('Error occurs at block 31');
  565.          ROLLBACK;
  566.          RAISE;
  567.       END;
  568. END;
  569. /
  570.  
  571. BEGIN
  572.    UPDATE webuser
  573.       SET registration_type = 2
  574.     WHERE registration_type IS NULL
  575.       AND ID IN (6889328, 6889375, 6889381);
  576.  
  577.    COMMIT;
  578.    DBMS_OUTPUT.put_line ('Block 32 executed successfully');
  579. EXCEPTION
  580.    WHEN OTHERS
  581.    THEN
  582.       BEGIN
  583.          DBMS_OUTPUT.put_line ('Error occurs at block 32');
  584.          ROLLBACK;
  585.          RAISE;
  586.       END;
  587. END;
  588. /
  589.  
  590. BEGIN
  591.    UPDATE webuser
  592.       SET registration_type = 2
  593.     WHERE registration_type IS NULL
  594.       AND ID IN (6927937, 6927983, 6928014);
  595.  
  596.    COMMIT;
  597.    DBMS_OUTPUT.put_line ('Block 33 executed successfully');
  598. EXCEPTION
  599.    WHEN OTHERS
  600.    THEN
  601.       BEGIN
  602.          DBMS_OUTPUT.put_line ('Error occurs at block 33');
  603.          ROLLBACK;
  604.          RAISE;
  605.       END;
  606. END;
  607. /
  608.  
  609. BEGIN
  610.    UPDATE webuser
  611.       SET registration_type = 2
  612.     WHERE registration_type IS NULL
  613.       AND ID IN (6962713, 6962729, 6962970);
  614.  
  615.    COMMIT;
  616.    DBMS_OUTPUT.put_line ('Block 34 executed successfully');
  617. EXCEPTION
  618.    WHEN OTHERS
  619.    THEN
  620.       BEGIN
  621.          DBMS_OUTPUT.put_line ('Error occurs at block 34');
  622.          ROLLBACK;
  623.          RAISE;
  624.       END;
  625. END;
  626. /
  627.  
  628. BEGIN
  629.    UPDATE webuser
  630.       SET registration_type = 2
  631.     WHERE registration_type IS NULL
  632.       AND ID IN (7013628, 7013629, 7013672);
  633.  
  634.    COMMIT;
  635.    DBMS_OUTPUT.put_line ('Block 35 executed successfully');
  636. EXCEPTION
  637.    WHEN OTHERS
  638.    THEN
  639.       BEGIN
  640.          DBMS_OUTPUT.put_line ('Error occurs at block 35');
  641.          ROLLBACK;
  642.          RAISE;
  643.       END;
  644. END;
  645. /
  646.  
  647. BEGIN
  648.    UPDATE webuser
  649.       SET registration_type = 1
  650.     WHERE registration_type IS NULL;
  651.  
  652.    COMMIT;
  653.    DBMS_OUTPUT.put_line ('Block 36 executed successfully');
  654. EXCEPTION
  655.    WHEN OTHERS
  656.    THEN
  657.       BEGIN
  658.          DBMS_OUTPUT.put_line ('Error occurs at block 36');
  659.          ROLLBACK;
  660.          RAISE;
  661.       END;
  662. END;
  663. /
Mar 24 '10 #1
1 1613
magicwand
41 New Member
I won't comment on your application - design, but the thing you are looking for is (in SQL*Plus):

WHENEVER SQLERROR EXIT FAILURE

and/or

WHENEVER OSERROR EXIT FAILURE

(SQL*Plus User’s Guide and Reference p.12-192 ff)
Mar 29 '10 #2

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

Similar topics

6
3535
by: JT | last post by:
is it possible to somehow "jump out of" an ASP page that is executed from another page via the Server.Execute method? on the page being executed i have several instances where i need to stop the...
9
2330
by: Joe Rigley | last post by:
Hello, As a .NET newbie I'd appreciate some advice... I've been tasked with writing a small app (in VB .NET) that takes some data from our HR system, does some format modifications, and loads...
6
3736
by: cournape | last post by:
Hi there, I have some scientific application written in python. There is a good deal of list processing, but also some "simple" computation such as basic linear algebra involved. I would like to...
2
2829
by: Prasad | last post by:
Hi, I am writing a service which takes a long time to stop after the OnStop call is given by the Services Snap-in. The problem is I cannot cut down on the time that it takes to Stop. The Service...
2
8573
by: Gopal Krish | last post by:
Folks, My ASPX page uses a custom user control. What happens here is that when a runtime error occurs in the ASPX page, the error is caught in the error handler and then strangely, the execution...
4
14883
by: James Radke | last post by:
Hello, I am attempting to use the proper Try/Catch technique when accessing my Microsoft SQL server database and have a question... If I use something similar to the following: Try set up...
56
5668
by: valentin tihomirov | last post by:
{ int i = 2; } int i = 1; There is no 'i' defined in the 'parent' context from the moment of declaration on. So what is the problem? They tell us they pursue language simplicity. The rule "do...
4
28726
by: Ralphz | last post by:
Hi How do I stop JavaScript execution when I encounter an error? Is there something similar to PHP's exit or die function? Thanks Ralph
3
3223
by: =?Utf-8?B?UmludSBHb3BhbGFrcmlzaG5hIFBpbGxhaQ==?= | last post by:
Hi All, I have a ASP/C# application that connect to Oracle database . After issuing my SQL query if I close the browser or move into another page ( ie whle executing in the databse serevr) will...
4
27946
by: sphinney | last post by:
Hi everyone. I'm creating an application inside Access 2007. The application will retrieve data from various locations on my company's network servers. Depending on the time of day, alignment of...
0
7136
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7344
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7412
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7069
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7505
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
5060
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...
0
3203
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
775
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
441
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.