473,671 Members | 2,430 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Help me please .. i got this error "case bypasses initialization of a local variable"

2 New Member
hi my frnds
i wish someone can help me with this error
i have highlighted the errors in block letters
i want urgent help plz .. i must give project tomorrow

Expand|Select|Wrap|Line Numbers
  1. #include<fstream.h>
  2. #include<conio.h>
  3. #include<string.h>
  4. #include<stdio.h>
  5. #include<stdlib.h>
  6. void login();
  7. struct date
  8. {
  9. int dd,mm,yy;
  10. };
  11. class employee
  12. {
  13. public:
  14. int empno;
  15. char firstname[15],lastname[15],address[50],designation[20];
  16. float basicsalary,deductions,itax,PF,conveyance,HRA,DA,grosspay,netpay;
  17. date dob,doj;
  18. void getdata();
  19. void showdata();
  20. void search();
  21. void displayall();
  22. void salaryslip();
  23. }emp;
  24. void main()
  25. {
  26. employee emp;
  27. login();
  28. int choice;
  29. do
  30. {
  31. main_menu:
  32. clrscr();
  33. gotoxy(5,4);
  34. cout<<"                               MAIN  MENU                             ";
  35. gotoxy(5,5);
  36. cout<<"                          _____________________                      ";
  37. gotoxy(20,8);
  38. cout<<"1. ADD RECORD "<<endl;
  39. gotoxy(20,9);
  40. cout<<"2. SEARCH EMPLOYEE"<<endl;
  41. gotoxy(20,10);
  42. cout<<"3. DISPLAY RECORD"<<endl;
  43. gotoxy(20,11);
  44. cout<<"4. CREATE SALARY SLIP"<<endl;
  45. gotoxy(20,12);
  46. cout<<"5. DISPLAY ALL RECORDS"<<endl;
  47. gotoxy(20,13);
  48. cout<<"6. EXIT"<<endl;
  49. gotoxy(5,1);
  50. cout<<"____________________________________________________________";
  51. gotoxy(5,2);
  52. gotoxy(5,15);
  53. cout<<"_____________________________________________________________";
  54. gotoxy(25,18);
  55. cout<<"Enter your choice (1-6) : ";
  56. cin>>choice;
  57. switch (choice)
  58. {
  59. case 1:
  60. ofstream outfile;
  61. outfile.open("employee.txt",ios::app|ios::binary);
  62. emp.getdata();
  63. emp.grosspay=emp.basicsalary+emp.DA+emp.HRA+emp.conveyance;
  64. emp.itax=(emp.basicsalary*5)/100;
  65. emp.deductions=emp.itax+emp.PF;
  66. emp.netpay=emp.grosspay-emp.deductions;
  67. outfile.write((char*)&emp, sizeof(emp));
  68. outfile.close();
  69. break;
  70. case 2:
  71. emp.search();
  72. break;
  73. case 3:
  74. ifstream infile1 ("employee.txt",ios::in|ios::binary);
  75. if (!infile1)
  76. {
  77. clrscr();
  78. gotoxy(25,12);
  79. cout<<"Fatal error!!File cannot be opened!";
  80. exit(1);
  81. }
  82. while ((infile1)&&(!infile1.eof()))
  83. {
  84. infile1.read((char*)&emp,sizeof(emp));
  85. if
  86. ((strlen(emp.firstname)!=0)&&(strlen(emp.designation)!=0))
  87. emp.showdata();
  88. }
  89. infile1.close();
  90. break;
  91. case 4:
  92. emp.salaryslip();
  93. break;
  94. case 5:
  95. emp.displayall();
  96. break;
  97.  
  98. case 6: clrscr();
  99. gotoxy(20,8);
  100. cout<<"                                       Thank You         ";
  101. gotoxy(20,10);
  102. cout<<"This Program has been brought to you by";
  103. gotoxy(20,12);
  104. cout<<"  **********************************************"<<endl;
  105. gotoxy(20,14);
  106. cout<<"  *                    1. King M.K.A                            *"<<endl;
  107. gotoxy(20,16);
  108. cout<<"  *                    2. Mandar Pradhan                        *"<<endl;
  109. gotoxy(20,18);
  110. cout<<"  *                    3. Ali Ismail                                   *"<<endl;
  111. gotoxy(20,22);
  112. cout<<" *                     4. Manoj Kumar                           *"<<endl;
  113. gotoxy(20,22);
  114. cout<<"  ************************************************"<<endl;
  115. break;
  116. default: gotoxy(28,33);
  117. cout<<"Invalid Choice\n";
  118. gotoxy(26,24);
  119. cout<<"Press Enter To Retry!";
  120. getch();
  121. goto main_menu;
  122. }
  123. }while (choice>=1&&choice<=5);
  124. }
  125. void employee::getdata()
  126. {
  127. clrscr();
  128. gotoxy(5,2);
  129. cout<<"_____________________________________________________________________";
  130. gotoxy(5,4);
  131. cout<<"                            Enter Employee Details                                                                   ";
  132. gotoxy(5,5);
  133. cout<<"                                 _______________________________     ";
  134. gotoxy(5,6);
  135. cout<<"  Employee No        :          ";
  136. cout<<"  First name              :                                    Last Name                   :                ";
  137. gotoxy(5,9);
  138. cout<<"  Designaition          :                                    Basic Salary                :                  ";
  139. gotoxy(5,10);
  140. cout<<"  Date of Birth        :                                     Date of Joining        :                   ";
  141. gotoxy(5,11);
  142. cout<<"D.A.                          :                                     Provident Fund          :                          ";
  143. gotoxy(5,12);
  144. cout<<" H.R.A                        :                                       Conveyance              :                            ";
  145. gotoxy(5,13);
  146. cout<<"Address                     :                                                                 ";
  147. gotoxy(5,15);
  148.  
  149. cout<<"_____________________________________________________________________";
  150. gotoxy(20,17);
  151. cout<<"Press enter for entering each value   !";
  152.  
  153. gotoxy(22,6);
  154. cout<<"                                                              ";
  155. gotoxy(22,6);
  156. cin>>empno;
  157.  
  158. gotoxy(22,8);
  159. cin>>firstname;
  160. gotoxy(55,8);
  161. cin>>lastname;
  162. gotoxy(22,9);
  163. cin>>designation;
  164. gotoxy(55,9);
  165. cin>>basicsalary;
  166.  
  167. gotoxy(22,10);
  168. cout<<"                                         ";
  169. gotoxy(24,10);
  170. cout<<"/";
  171. gotoxy(27,10);
  172. cout<<"/";
  173. gotoxy(22,10);
  174. cin>>dob.dd;
  175. gotoxy(25,10);
  176. cin>>dob.mm;
  177. gotoxy(28,10);
  178. cin>>dob.yy;
  179. gotoxy(55,10);
  180. cout<<"                                       ";
  181. gotoxy(57,10);
  182. cout<<"/";
  183. gotoxy(60,10);
  184. cout<<"/";
  185. gotoxy(55,10);
  186. cin>>doj.dd;
  187. gotoxy(58,10);
  188. cin>>doj.mm;
  189. gotoxy(61,10);
  190. cin>>doj.yy;
  191.  
  192. gotoxy(22,11);
  193. cin>>DA;
  194.  
  195. gotoxy(55,11);
  196. cout<<"                                              ";
  197. gotoxy(55,11);
  198. cin>>PF;
  199. gotoxy(22,12);
  200. cin>>HRA;
  201. gotoxy(55,12);
  202. cin>>conveyance;
  203. gotoxy(22,13);
  204. gets(address);
  205. gotoxy(20,17);
  206. cout<<"                                                                  ";
  207. gotoxy(43,17);
  208. cout<<"    Press Enter To Continue...";
  209. getch();
  210. }
  211.  
  212. void employee::showdata()
  213. {
  214. clrscr();
  215. gotoxy(5,2);
  216. cout<<"________________________________________________";
  217. gotoxy(5,4);
  218. cout<<"                                             Enter Employee Details                                                                   ";
  219. gotoxy(5,5);
  220. cout<<"                                 _______________________________     ";
  221. gotoxy(5,6);
  222. cout<<" Employee No        :          ";
  223. gotoxy(5,8);
  224. cout<<" First name              :                                    Last Name                   :                ";
  225. gotoxy(5,9);
  226. cout<<"Designaition          :                                    Basic Salary                :                  ";
  227. gotoxy(5,10);
  228. cout<<"Date of Birth        :                                     Date of Joining        :                   ";
  229. gotoxy(5,11);
  230. cout<<"D.A.                          :                                     Provident Fund          :                          ";
  231. gotoxy(5,12);
  232. cout<<" H.R.A                        :                                       Conveyance              :                            ";
  233. gotoxy(5,13);
  234. cout<<"Address:                                                           ";
  235. gotoxy(5,15);
  236. cout<<"___________________________________________________________________";
  237. gotoxy(22,6);
  238. cout<<empno;
  239. gotoxy(22,10);
  240. cout<<dob.dd<<"/"<<dob.mm<<"/"<<dob.yy;
  241. gotoxy(62,10);
  242. cout<<doj.dd<<"/"<<doj.mm<<"/"<<doj.yy;
  243. gotoxy(22,8);
  244. cout<<firstname;
  245. gotoxy(62,8);
  246. cout<<lastname;
  247. gotoxy(22,9);
  248. cout<<designation;
  249. gotoxy(62,9);
  250. cout<<basicsalary;
  251. gotoxy(22,11);
  252. cout<<DA;
  253. gotoxy(62,11);
  254. cout<<PF;
  255. gotoxy(22,12);
  256. cout<<HRA;
  257. gotoxy(62,12);
  258. cout<<conveyance;
  259. gotoxy(22,13);
  260. cout<<address;
  261. gotoxy(43,17);
  262. cout<<"    Press Any Key To Continue......................";
  263. getch();
  264. }
  265. void employee::search()
  266. {
  267. int employeenumber,flag=0;
  268. searchmenu:
  269. clrscr();
  270. gotoxy(5,1);
  271. cout<<"_________________________________________________________";
  272. gotoxy(5,4);
  273. cout<<"                                 S E A R C H     M E N U            ";
  274. gotoxy(5,5);
  275. cout<<"                           _______________________       ";
  276. gotoxy(25,8);
  277. cout<<" 1.   Search by First Name         ";
  278. gotoxy(25,9);
  279. cout<<" 2.   Search by Employee No.         ";
  280. gotoxy(5,18);
  281. cout<<"__________________________________________________________________";
  282. gotoxy(26,13);
  283. cout<<"Enter your choice (1-2)      :";
  284. int x;
  285. cin>>x;
  286. switch(x)
  287. {
  288. case 1: ifstream infile1;
  289. infile1.open("employee.txt",ios::in|ios::binary);
  290. if (!infile1)
  291. {
  292. clrscr();
  293. gotoxy(20,12);
  294. cout<<"Fatal error!!File cannot be opened";
  295. exit(1);
  296. }
  297. gotoxy(21,13);
  298. cout<<"Note:  Searches are case sensitive!     ";
  299. gotoxy(23,15);
  300. cout<<"Enter the name of the employee:        ";
  301. char secname[15];
  302. cin>>secname;
  303. while ((infile1)&&(!infile1.eof()))
  304. {
  305. infile1.read((char*)&emp,sizeof(emp));
  306. if (infile1.eof())
  307. break;
  308. if
  309. ((strcmp(emp.firstname,secname)==0)&&(strlen(emp.firstname)!=0))
  310. {
  311. flag=1;
  312. emp.showdata();
  313. }
  314. }
  315. if (flag==0)
  316. {
  317. gotoxy(27,21);
  318. cout<<"No such name exists";
  319. gotoxy(25,23);
  320. cout<<"Press a key to continue....."<<endl;
  321. getch();
  322. }
  323. infile1.close();
  324. break;
  325. case 2:gotoxy(23,13);
  326. cout<<"                                              ";
  327. gotoxy(23,13);
  328. cout<<"Enter the employee number  :                   ";
  329. cin>>employeenumber;
  330. ifstream infile2;
  331. infile2.open("employee.txt",ios::in|ios::binary);
  332. if (!infile2)
  333. {
  334. clrscr();
  335. gotoxy(20,12);
  336. cout<<"Fatal error!!File cannot be opened";
  337. exit(1);
  338. }
  339. while ((infile2)&&(!infile2.eof()))
  340. {
  341. infile2.read((char*)&emp,sizeof(emp));
  342. if(infile2.eof())
  343. break;
  344. if
  345. (emp.empno==employeenumber&&(strlen(emp.firstname)!=0))
  346. {
  347. clrscr();
  348. emp.showdata();
  349. flag=1;
  350. }
  351. }
  352. if (flag==0)
  353. {
  354. gotoxy(24,21);
  355. cout<<"Invalid Employee Number!";
  356. gotoxy(25,23);
  357. cout<<"Press a key to continue......"<<endl;
  358. getch();
  359. }
  360. infile2.close();
  361. break;
  362. default: cout<<"Wrong choice! Please try again \n";
  363. cout<<"Press any key to continue.......";
  364. getch();
  365. goto searchmenu;
  366. }
  367. }
  368. void employee::salaryslip()
  369. {
  370. ifstream infile1;
  371. infile1.open("employee.txt",ios::in|ios::binary);
  372. if (!infile1)
  373. {
  374. clrscr();
  375. gotoxy(20,12);
  376. cout<<"Fatal error! File cannot be opened!";
  377. exit(1);
  378. }
  379. while (infile1&&(!infile1.eof()))
  380. {
  381. infile1.read((char*)&emp,sizeof(emp));
  382. if(infile1.eof())
  383. break;
  384. if
  385. ((strlen(emp.firstname)!=0)&&(strlen(emp.designation)!=0))
  386. {
  387. clrscr();
  388. gotoxy(5,2);
  389. cout<<"____________________________________________________";
  390. gotoxy(5,4);
  391. cout<<"                           S  A  L  A  R  Y           S  L  I  P           ";
  392. gotoxy(5,5);
  393. cout<<"          ÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜ  ";
  394. gotoxy(5,6);
  395. cout<<"  Emp  No.    :   " <<emp.empno;
  396. gotoxy(5,7);
  397. cout<<" Employee Name        :  "<<emp.firstname;
  398. gotoxy(5,10);
  399. cout<<" Earnings ";
  400. gotoxy(5,11);
  401. cout<<"ÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜ ";
  402. gotoxy(5,12);
  403. cout<<"Basic Salary:    "<<emp.basicsalary;
  404. gotoxy(5,13);
  405. cout<<"D.A.             :    "<<emp.DA;
  406. gotoxy(5,14);
  407. cout<<"H.R.A.          :    "<<emp.HRA;
  408. gotoxy(5,15);
  409. cout<<"Conveyance :    "<<emp.conveyance;
  410. gotoxy(5,16);
  411. cout<<"____________________________________________";
  412. gotoxy(30,10);
  413. cout<<"Deductions";
  414. gotoxy(30,11);
  415. cout<<"_________________     ";
  416. gotoxy(30,12);
  417. cout<<"P.F.                    :    "<<emp.PF;
  418. gotoxy(30,13);
  419. cout<<"  Income Tax      :   "<<emp.itax;
  420. gotoxy(43,23);
  421. cout<<"Press any key to continue....";
  422. getch();
  423. }
  424. }
  425. infile1.close();
  426. }
  427.  
  428. void employee::displayall()
  429. {
  430. clrscr();
  431. gotoxy(2,2);
  432. cout<<"____________________________________________________";
  433. gotoxy(5,3);
  434. cout<<"  Employee";
  435. gotoxy(18,3);
  436. cout<<"  First Name";
  437. gotoxy(32,3);
  438. cout<<"  Last Name";
  439. gotoxy(46,3);
  440. cout<<"Designation";
  441. gotoxy(66,3);
  442. cout<<"Basic";
  443. gotoxy(8,4);
  444. cout<<"No.";
  445. gotoxy(65,4);
  446. cout<<"Salary";
  447. gotoxy(2,5);
  448. cout<<"_____________________________________________________________________";
  449. int l=6,x=6;
  450. ifstream infile1;
  451. infile1.open ("employee.txt",ios::in|ios::binary);
  452. if (!infile1)
  453. {
  454. clrscr();
  455. gotoxy(35,12);
  456. cout<<"Fatal error!  File cannot be opened";
  457. exit(1);
  458. }
  459. while  (infile1&&(!infile1.eof()))
  460. {
  461. infile1.read((char*)&emp,sizeof(emp));
  462. if(infile1.eof())
  463. break;
  464. if
  465. ((strlen(emp.firstname)!=0)&&(strlen(emp.designation)!=0))
  466. {
  467. gotoxy(9,1);
  468. cout<<emp.empno;
  469. gotoxy(18,1);
  470. cout<<emp.firstname;
  471. gotoxy(32,1);
  472. cout<<emp.lastname;
  473. gotoxy(46,1);
  474. cout<<emp.designation;
  475. gotoxy(66,1);
  476. cout<<emp.basicsalary;
  477. ++x;
  478. ++l;
  479. if (x==21)
  480. {
  481. x=x-21;
  482. gotoxy(43,1+2);
  483. cout<<"Press any key to continue..........";
  484. l=6;
  485. getch();
  486. clrscr();
  487. gotoxy(2,2);
  488. cout<<"____________________________________________________";
  489. gotoxy(5,3);
  490. cout<<"  Employee";
  491. gotoxy(18,3);
  492. cout<<"  First Name";
  493. gotoxy(32,3);
  494. cout<<"  Last Name";
  495. gotoxy(46,3);
  496. cout<<"  Designation";
  497. gotoxy(66,3);
  498. cout<<"  Basic";
  499. gotoxy(8,4);
  500. cout<<"  No.";
  501. gotoxy(65,4);
  502. cout<<"Salary";
  503. gotoxy(2,5);
  504. cout<<"_____________________________________________________________________";
  505. }
  506. }
  507. }
  508. infile1.close();
  509. getch();
  510. }
  511. void login()
  512. {
  513. clrscr();
  514. char *rpass="project";
  515. int i,b=0,d;
  516. char temp[20];
  517. do
  518. {
  519. i=0;
  520. char c;
  521. gotoxy(21,3);cout<<"-=           LOGIN TO THE PROJECT             =-";
  522. gotoxy(25,10);cout<<"Username     :   Project                                 ";
  523. gotoxy(25,13);cout<<"Password      :                                         ";
  524. gotoxy(36,10);
  525. gotoxy(36,13);
  526. do
  527. {
  528. c=getch();
  529. d=c;
  530. if(d!=9)
  531. temp[i]=c;
  532. cout<<'*';
  533. if(c!=9)
  534. i++ ;
  535. }while(d!=13);
  536. temp[i-1]='\0';
  537. if(strcmp(rpass,temp)!=0)
  538. {
  539. gotoxy(20,19);
  540. cout<<"!!!WRONG PASSWORD!!!"<<endl;
  541. b=b+1;
  542. if(b==3)
  543. {
  544. cout<<"..Sorry!! U have tried 3 times.... now exiting...";
  545. exit(1);
  546. }
  547. }
  548. else
  549. {
  550. gotoxy(20,19);
  551. cout<<"!!! PASSWORD ACCEPTED !!!"<<endl;
  552. break;
  553. }
  554. }while(b!=3);
  555. }
Nov 22 '13 #1
1 1537
xobserver
2 New Member
errors in line 70, 91 ,325 and 362
Nov 22 '13 #2

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

Similar topics

1
1491
by: george | last post by:
Hi All Tried to install PHP 4.3.5, using its own installer or whatever the latest stable version is on www.php.net. When I install it, it says: "error trying to access local web service. You need to configure IIS manually via management console". After this, it says "installation successfull"...A bit strange... Why does this error occur? How do I configure IIS using console? Further more, this stuff seems awfully complex - all you need...
1
5473
by: Aliandro | last post by:
Hi I am really stuck and need some expertise help please. I have an XML file: <XML> <USER_INFO> <USERNAME>username</USERNAME> <PASSWORD>password%</PASSWORD> </USER_INFO> <SITE_INFO> <SITE_NO>18856</SITE_NO> </SITE_INFO>
0
1705
by: David M. | last post by:
Hi, I have this error when I am connected in mysql: ERROR 2006: MySQL server has gone away. No connection. Trying to reconnect... I only did this command: show databases; and received the error. I noticed that if I don't send a command since 25 sec, I have the error.
6
2056
by: Jim H | last post by:
I have an app I working on that was working fine a few days ago. Now I get a jscript error: Microsoft JScript runtime error: Object expected in a part of the code that has not been modifed or touched. It's actually part of a separate project. I only get this error when I try to view the page on my local machine. If I connect to my webserver from another machine it works fine. What can cause this? Why does it only fail on my local...
23
3263
by: Jason | last post by:
Hi, I was wondering if any could point me to an example or give me ideas on how to dynamically create a form based on a database table? So, I would have a table designed to tell my application to create certain textboxes, labels, and combo boxes? Any ideas would be appreciated. Thanks
4
2268
by: steroche | last post by:
I would REALLY appreciate help please please please! Im sure it is probably blindingly obvious to most of you but I am totally in the dark here!I am lost - i thought i had finally figured out this dataSet updating lark when i realised that i think i am right back at square 1!!! Here's my scenario - i have a SQLDB and i retrieve all my data from that into a dataset and display this to a datagrid(WebForm). I have got this grid sorted and...
7
25136
by: gyan | last post by:
follwing code gives error: 1 #include<iostream.h> 2 int main() 3 { 4 int a=5,b; 5 switch(a){ 6 case 1: 7 {b=5; 8 break; 9 }
0
1079
by: satishwise | last post by:
HELLO EVERYONE PLEASE HELP ME ON THIS I followed the installation instructions from the oracle 9i built in documentation and started the installation with the Result of this output on my Xconsole: Error occurred during initialization of VM Unable to load native library:
1
1069
by: kaGurrapu | last post by:
hi there i m kalyan, i am working on a project , well i want to export data from vb to excel, when i add reference microsoft.excel11.0 its add in the reference but there is a symbol on it a yellow triangle and a black line , as i m new to the prgramming i dont really understand can some one please help, time is running i am lacking behind, some how i need to export data to excel from vb , please help
5
5015
by: mvmashraf | last post by:
Hi to all.... I have spent some time browsing for a solution to the following error but have unfortunatly not found any solution yet ,Please any help would be much appreciated.... ------------------------------------------------------------------------------------------------- This is the full error description... "Error Message :Invalid character in a Base-64 string." Error Source :mscorlib Error Stack Trace : ...
0
8481
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8400
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8823
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8602
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7441
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6234
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5702
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2817
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1814
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.