How to covert ppt to html using PHP Programming Web Development by Ramakrishnan.L How to covert ppt to html using PHP Covert Programming Software Development by bbman hey can anyone convert this c code into c# [CODE] #include<stdio.h> //Assume following return types while writing the code for this question. int output1; void GetBuildingCount(int marineCount,int marinePositions[][2]) { int x,y,i,j,temp; for(x=0; x<marineCount; x++) { for( y=0; y<… Re: Covert Programming Software Development by pseudorandom21 It will probably work in C# if you take out the function and put it in a C# class. You REALLY need to look up some proper formatting guidelines, or use an IDE. Re: Covert Programming Software Development by ddanbe Allthough you are not using any IO functions here, [B]#include<stdio.h>[/B] will not work in C#, use [B]using System;[/B] and other using clauses. Re: Covert Programming Software Development by zmeditation1 yes, we can do it kindly mail me Covert Cvs To Mysql Programming Web Development by akhoa168 Hi everybody! I have a trouble with my work. I have a file data CVS, and i want to cover to a table in mysql. But in my file CVS have some special character : /t, ", Please help me! Thank a lot! mysql>load data local infile 'price.csv' into table product fields terminated by '\t' enclosed by ',' lines terminated by '\n'; Re: Covert Cvs To Mysql Programming Web Development by subashvns Hi everybody! I have a trouble with my work. I have abalence binary tree for mlm project, and i want to how solved to it problem. Please help me! Thank a lot! my batabase id,dmecode, proposal name covert .doc to .pdf using Python Programming Software Development by dinilkarun I would like to convert word document .doc tp acrobat .pdf using Python. Please help. Re: covert .doc to .pdf using Python Programming Software Development by Ene Uran Converting documents to PDF: [url]http://www.devshed.com/c/a/Python/Python-for-PDF-Generation/[/url] uses The ReportLab Toolkit: [url]http://www.reportlab.org/downloads.html[/url] with images also need the Python Imaging Library (PIL): [url]http://www.pythonware.com/products/pil[/url] The problem is that you have to bring in the MS-Word … Covert data in excelsheet in bold without using spreadsheet::writesheet Programming Software Development by nickyspace Hi I have a little issue with the exchelsheet . I have converted data into excelsheet sucessfully .But now i want to make Column Heading Bold . I have searched a lot in google but i havent got any solution. Due to the module is not present, i havent used spreadsheet::writeexcel. So anyone here in this forum can provide me the solution for… covert to arraylist Programming Software Development by zahraj Hi everybody ..... i write this code to select rundom from list box(1)[have decimal number ] and but in the listbox(2) in list box 2 select the max value and but in the listbox(3) ((for examble i but 4 number in listbox(1)the function find 4 random number and find th max and do the function 4 times )) [QUOTE] Private Sub Button1_Click(ByVal… Re: covert to arraylist Programming Software Development by ddanbe Change [B]ListBoxN.Items [/B]to [B]ArrayList[/B] Re: covert to arraylist Programming Software Development by zahraj hi ddanbe...Thanks i Know..... Change ListBoxN.Items to ArrayList but how to do this in arraylist?? [ICODE]R = ListBox1.Items.Count - 1 ListBox1.SelectedIndex = Rnd() * R ListBox2.Items.Add(ListBox1.SelectedItem.ToString) [/ICODE] how to make rundom select index in array ?????? If you help me, I appreciate you Re: covert to arraylist Programming Software Development by ddanbe Dim rnd As New Random() R = ListBox1.Items.Count - 1 ---> R = ArraList1.Count ListBox1.SelectedIndex = Rnd() * R ---> int SelectedIndex =rnd.Next(0,R) ListBox2.Items.Add(ListBox1.SelectedItem.ToString) ---> ArrayList2.Add(ArrayList1.Item(SelectedIndex) Maby some type errors here but I hope you get the general idea. Succes. covert php file_get_contents to VB Script help Programming Software Development by Dio1080 Hello, I'm trying to figure out how to convert this php file_get_contents command to visual basic script. I tried googling it but no luck. This is the command down below. <? $page=file_get_contents('http://www.example.com/page?user=cwarn23&pass=820578wxz56240358'); ?> Re: covert php file_get_contents to VB Script help Programming Software Development by Dio1080 [code=php] <? $page=file_get_contents('http://www.example.com/page?user=cwarn23&pass=820578wxz56240358'); ?>[/code] Re: covert php file_get_contents to VB Script help Programming Software Development by ithelp Google for how to send http request and read response in vbscript. Covert Decimal to Octal Programming Software Development by GreenDay2001 This snippet has a will convert Decimal number to Octal number. Covert Doc to Database - which PHP framework ? Programming Web Development by danielkull Hi, I am in a process of selecting a PHP framework which we will use for development of websites. we are almost ready to go with CodeIgniter an/or Zend. However, in our newest project we need a functionality which allows to upload text (with styles) from Word Document to database, so the framework which will allow us to do it in the easiest way… Re: Covert Doc to Database - which PHP framework ? Programming Web Development by martin5211 I think Zend Framework wins using LiveDocx component: [URL="http://www.phplivedocx.org/downloads/"]http://www.phplivedocx.org/downloads/[/URL] Antiword would be an alternative, it's a UNIX app, can be executed from PHP using exec() [CODE] <?php exec('/usr/local/bin/antiword /opt/lampp/htdocs/example.doc', $output); ?> [/… covert access database for web Programming Databases by michelhut I have a access database booking form and would like to put it onto the web any advise would be great Thank you Re: covert access database for web Programming Databases by buddylee17 Access based forms only work on the desktop. You need to make a web based form with a web development language (asp.net, asp, coldfusion, php, jsp, ror,...) Covert input from command line args Programming Software Development by ari$av3s The task at hand is to write a program that accepts arguments from the command line and convert them into USD. For example, take command line argument Currency EU 350, and convert in into USD. Now, please bear with me -- I may be phrasing this incorrectly, but how do I give arguments to the command line to begin with? Re: Covert input from command line args Programming Software Development by sfuo If you want to use arguments then you need to use main() with argc and **argv. argc is the counter of how many arguments that are passed in to the program (it is 1 with no additional arguments passed because it passes it's own path by default). argv is the "vector" that holds all the arguments passed. In Windows to pass arguments… Re: Covert input from command line args Programming Software Development by Narue [QUOTE]argc is the counter of how many arguments that are passed in to the program (it is 1 with no additional arguments passed because it passes it's own path by default)[/QUOTE] argc is allowed to be zero. Further, even if argc is greater than zero, [ICODE]argv[0][/ICODE] is not required to be more than an empty string. If it's not an empty … Re: Covert input from command line args Programming Software Development by ari$av3s Out of curiousity, are there any situations in which one should still include conio.h? I haven't had to use it yet, but want to know what it is for. Re: Covert input from command line args Programming Software Development by Narue [QUOTE]are there any situations in which one should still include conio.h?[/QUOTE] If you use a compiler that supports conio.h, it can often be the simplest solution. For example, reading a key press with getch() or kbhit() is simpler than implementing the same behavior with Win32 or POSIX libraries. Since those operations are inherently non-… Covert Kruti font into Unicode Programming Web Development by jacob21 Hi, I am using below linked converter to convert kruti hindi font in to unicode font. But i am not exactly getting same data(in unicode) as in my document(in kruti font). [Click Here](null) http://svnnews.in/convertor.htm Below is attached document of kruti font which i want to convert & above link is converter link. Re: Covert Kruti font into Unicode Programming Web Development by cereal Hi, I can't help you much on this, so while waiting for better assistance, check the source of that page, you will see that they use few javascript functions to do the converting process. Maybe from there you can find what is going wrong. Covert TSL code to PLSQL code Programming Databases by murthykk /*I have a situation where in I have to convert the TSQL code to PLSQL procedure. For the purpose of better understanding, I have created temp tables in place of source tables. Can I get hep on this please. The code is as follows: */ ---create temp tables CREATE TABLE #ticket ( TicketID int, …