Search Result

Collapse
39 results in 0.0028 seconds.
Keywords
Members
Tags
convert
  •  

  • SharonH
    started a topic Convert part of text string to Time

    Convert part of text string to Time

    I have data that I import from an Excel sheet into Access. the field I have problems with is called [SaleTime]. It contains the date and time of the article being weighed. The string comes in like this:
    20120314080253
    I have two fields in my query. One converts the first part to a date and the other converts the second part to Time. It works great in Access.

    Weigh_Date: DateSerial(Left ([SaleTime],4),Mid([SaleTime],5,2),Mid([SaleTime],7,2))...
    See more | Go to post

  • sandyago
    started a topic useful software to convert PDF to HTML?
    in APIs

    useful software to convert PDF to HTML?

    Hello everyone, I'm actually seeking help here. Can anybody tell me if there's any useful software to convert PDF to HTML? Better recommend one that you have used befoore! Is the operation complicated?
    See more | Go to post

  • Filter and convert hex characters received through a serial port into keystrokes

    I am developing an RFID-based timing system for timing cycling races. Currently have an application which was written for manual entry of race numbers using the keyboard. The RFID reader passes hex data to the PC through a serial or TCP port. I need to convert the received data into meaningful race numbers and then transmit these numbers to the app as keystrokes. i.e 0004, or 0005, etc. followed by a comma and "ENTER"
    The problem...
    See more | Go to post

  • nicstel
    started a topic Xls to Pdf

    Xls to Pdf

    I wrote a Piece of code to generate an Excel file. I would like to create a Pdf from this file thru my code. How to handle this? I saw the PHPExcel, but I don`t know how it`s work!

    Thank You

    Nicolas
    See more | Go to post

  • Altair
    started a topic How to convert CString to float in mfc
    in C

    How to convert CString to float in mfc

    I'm trying to create a dialog-base mfc application that require user to input data in edit box, then the application take it. However, it only work when I convert the data into Integer data and do not work when I try to convert to float data. Can anyone help me please ?
    Here is my code
    Code:
    #include "cstdlib"
    #include "tchar.h"
    void CProjectDlg::OnBnClickedOk()
    {
    CString c_str;
    ...
    See more | Go to post

  • Field with Text format needs to be converted to Short Date Format

    I have a database with one Table called marriages.

    marriages Table Contains the following Field:

    Field Name = Date of Marriage

    Data Type = Text

    --------------------------------------------------

    The table contains over 9000 records. With records such as the following in the Date of Marriage Column:

    1847/11/28

    1917/02/04

    1920/08/02...
    See more | Go to post

  • Josh Argent
    started a topic Converting videos
    in .NET

    Converting videos

    Hi,
    I want to write a program that will convert videos to other video formats (eg avi to mp4). I've searched everywere and can not find and free dll librarys that will do this. :(
    I have tried something with ffmpeg and it will not work so if possible could we avoid that.

    So basically does anyone know of a good dll library that will help me convert videos? (My prefered language is VB.net BTW)

    Thanks in...
    See more | Go to post

  • VB6.0 MSflexgrid to Notepad and Notepad to VB6.0

    Dear ALL,

    I need convert my data from msflexgrid to Notepad and same way from Notepad to Msflexgrid list.
    And also i need to convert my data from msflexgrid to MSword file.

    i stored in products names in tamil (MSflexgrid). I unable to allign at the time of printing. but engligh font properly worked in correct allingment at the time of printing.

    Please help me write this code.

    Thanking...
    See more | Go to post

  • Gregosky
    started a topic convert double* to float*
    in C

    convert double* to float*

    Hi guys,

    I have written a library that manipulates data stored in double arrays. It took months to fine tune it and here it is, working fine. Everything was great until I started integrating my project with another open source project that uses float arrays. I need to pass my double arrays to the function that requires float arrays.. I am out of ideas how to do that.. I would like to avoid re-writing my project to use float instead...
    See more | Go to post

  • in Embedded C, how to convert a Returned Hex value in the form of “Unsigned Char”

    We are writing a code for I2C interface,
    where we are reading a 16 bit Hex number as two 8 bit Hex MSB and LSB, and we are returning these values as "Unsigned Char".

    we want to concatenate these MSB and LSB "char" values, and finally we need one "Integer" value for our further processing.

    for example: the following 2 methods are returning one "Unsigned Char" value, each...
    See more | Go to post

  • How to convert database from ms sql server to mysql?

    Due to some changes in technology we are shifting to MySQL. We already have the database in MsSQL. How to import all the data into MySQL? Any procedure available to do this?

    kindly help. thanks in advance.
    regards mandrekar salim
    See more | Go to post
    Last edited by Niheel; Feb 26 '11, 08:15 AM.

  • What is the difference between string and String ? when is each one used ?

    HI ! I am expirienced C++ programmer , but new to C#

    1. What is the difference between string and String ? when is each one used ?

    2. I tried to use "ToCharArra y" , because I need the text in simple characters array.
    Code:
    	private System.Windows.Forms.TextBox UserName ;
            char [] name1;
            name1 = new char [64];
            name1 = this.UserName.Text.ToCharArray();
    ...
    See more | Go to post
    Last edited by Niheel; Feb 7 '11, 11:33 PM.

  • How to convert from dollars to cents (for example 22.00) to 2000 with no decimal?

    Amount text box...
    the number is positive and this field should be sent as cents ( $22.00 should be sent as 2200 with no decimal).

    How can I ?

    in my first form page (where there is a textbox/ field )

    I use
    Code:
     
    private void SetPageState()
    		{
    		 int amountInt = int.Parse(mamountTextBox.Text);
    		 mFormPageState.AmountContribution = amountInt.ToString("0.00");
    ...
    See more | Go to post

  • How to convert this MsSQL statement into Oracle?

    I have a SQL statement that performs correctly using MS Sql (all versions), but as I'm attempting to convert it Oracle 11g, I'm having some issue where the return result says that the command is not properly ended. Yet, the subquery seems to operate correctly if I remove the update parameters.

    What this sql is supposed to do is select the first 50 rows, then update each of the selected rows with specific values.

    Original...
    See more | Go to post

  • Gordon Haag
    started a topic How to convert string with letters to float?

    How to convert string with letters to float?

    I am trying to do a little bit of numeric computing. I wrote a program that writes the result of each iteration of a function to a file. I want to graph these results as dots using vpython, but I am unable to do so.

    I need each value to be on its own line in the text file, so I am using this to write the value to the text file:
    Code:
    written=str(currenttotal)
    squarerootfile.write(written)
    squarerootfile.write("\n")
    ...
    See more | Go to post
Working...