Click here to Skip to main content
15,908,115 members
Everything / Transform

Transform

transform

Great Reads

by ASP.NET Community
Use the Xml control to display the contents of an XML document or the results of an XSL Transform.The XML document to display is specified by
by Peter Occil
Describes projection and view transforms commonly used in 3D graphics, such as perspective and orthographic transforms
by jansok
A tip on converting multiple image files (BMP, PNG, GIF, JPEG, TIFF) to single or multiple PDF
by The Tigerman
Work in progress, but a simple HTML to RTF converter

Latest Articles

by charles henington
Simple user defined Cipher Transform that I got the idea from https://www.codeproject.com/Articles/5319044/ARC4-Encryption-Library
by Peter Occil
Describes projection and view transforms commonly used in 3D graphics, such as perspective and orthographic transforms
by jansok
A tip on converting multiple image files (BMP, PNG, GIF, JPEG, TIFF) to single or multiple PDF
by The Tigerman
Work in progress, but a simple HTML to RTF converter

All Articles

Sort by Score

Transform 

30 Jul 2013 by Adarsh chauhan
Hi,visit the following linkhow to transfer the data from my sql to sql server[^]
29 Jul 2015 by Graham Coulby
I am having a problem with this code. When I start the program the rectangle (Ruler) is in the center of the page. When I mousemove when MouseDown is true, the Rectangle (Ruler) is dragable as I want. However, this only works on the first drag. The next time I go to drag it the Ruler jumps back...
29 Jul 2015 by Shmuel Zang
In your Rectangle_MouseMove method you calculate the TranslateTransform according to the mouse position in the MouseDown event. In the first time the MouseMove difference is equal to the wanted TranslateTransform but, after that, the MouseMove difference is according to the last...
13 Apr 2018 by RickZeeland
I reformatted the xml to this: 2012-08-08T09:40:00 true ...
30 Jul 2013 by ♥…ЯҠ…♥
Hi Friends,I want to import table data from MySQL server to SQL Server DB in my local machine.Here column fields are different.So should be able to map the column1 of MySQL to column2 of SQLServer.I planned to use Pentaho open source tool. Is there any other tool to do this?Any...
xml
11 Oct 2013 by ASP.NET Community
Use the Xml control to display the contents of an XML document or the results of an XSL Transform.The XML document to display is specified by
1 Dec 2013 by Uknownymous
Need some help converting from access TRANSFORM COUNT/PIVOT to SQL SERVER and here's the sql from access :TRANSFORM Count(tmpTbl.TC) AS CountOfTCSELECT tmpTbl.SID, tmpTbl.CSID, tmpTbl.M,WoOr.QCLFROM tmpTbl INNER JOIN WoOr ON tmpTbl.WO = WoOr.WOWHERE (((tmpTbl.IsSelected)=True))GROUP...
22 Dec 2013 by Christian Graus
SELECT tmpTbl.SID, tmpTbl.CSID, tmpTbl.M,WoOr.QCL, COUNT(epa1), COUNT(epa2)FROM tmpTbl INNER JOIN WoOr ON tmpTbl.WO = WoOr.WOWHERE (((tmpTbl.IsSelected)=True))GROUP BY tmpTbl.SID, tmpTbl.CSID, tmpTbl.M,WoOr.QCLis what you want to do. It's not a pivot at all, you're already selecting...
23 Jan 2014 by Member 10512547
hi ive been given a set of about 20k data points. i managed to import the data into matlab and did the following,importdata;fft(importdata);and it says Undefined function 'fft' for input arguments of type 'cell'.now i understand i need more than this to get it working, can someone...
24 Jan 2014 by Matt T Heffron
I'm guessing the file is binary data so the importdata has created a cell array.Try the cell2mat function[^] to convert to a matrix that fft can use.
27 Jan 2014 by Albert Holguin
The fft()[^] routine functions on vectors and/or arrays (preferably on vectors of data type double, since we're talking about time a vector makes more sense). If your data is not in that format, then you have to get it in that format.
9 Apr 2014 by Paul Hildebrandt
I'm writing a program to create isometric line drawings and I need to figure out how to convert 2D circles to ellipses using a shear matrix transform. I've searched Google for a few days now but can't seem to come up with any code examples. Data I use is centrepoint and radius.Can someone...
9 Apr 2014 by lukeer
You can leave the circle (and everything else) unmodified and let the Graphics object deal with shearing via its Transform property. It's of type Matrix, which supports Shaer out of the box.
30 Jul 2014 by nixonanand
Dear Friends,, i'm using raphael js and raphael free transform...i'm creating like paint application.. In papaer i have to select multiple elements drag....How can i do that..please provide the solution..i'm in trouble...
19 Aug 2015 by KingSora
I would like to know how to change RenderTransformOrigin of an element without changing its location? I've noticed that changing the RenderTransformOrigin will affect the element location.How can I calculate the delta X, delta Y between the element location before and after changing the...
12 Sep 2015 by rezaasaadi
I use GDI functions to render vector data for many years,even after migration to C# and dotNet,I still use GDI libraries because I found GDI much faster than GDI+ in vector rendering.Now I have stuck in a problem where I have to use GDI+ and face a problem.My vector coordinates are in real...
12 May 2016 by Member 12387639
I need to transform between two different database schemas the same data. For example i have one table in old schema looking like this:OLD EMPLOYEE TABLEUSER_ID - NUMBER (PRIMARY KEY)FIRST_NAME - VARCHAR(50), (NOT NULL)LAST_NAME - VARCHAR(50), (NOT NULL)CITY - VARCHAR(50), (NOT...
12 Mar 2016 by RickZeeland
A trick you could use is something like:SELECT * INTO Schema2.NewTable FROM Schema1.OldTableBut I think you already have the tools to migrate data between two schema's, take a look at the Bulk Copy utility (BCP) that's included with SQL Server.With BCP you can export and import the...
12 May 2016 by SMerrill88
Start the SQL Server Import and Export WizardIn your start menu SQL Server section you have a program which makes connections to both schemas and transfers the data between them with a wizard. Easy!
19 Feb 2017 by Member 13006389
I am trying to have an object shoot shoot straight at a target where the target is a Transform. The bullet is set to look at and seek the transform, but the target transform is at the feet of the other object that its shooting at so that it can spawn in the correct orientation.So the bullet...
13 Apr 2018 by MKM_Matt
Hi. No doubt an easy one to you experts. I have an XML that I need to transform into another XML, taking some of the elements and writing to new elements etc... I have cut the file down considerably, hopefully enough for you to point me in the right direction.
18 Apr 2020 by OriginalGriff
Quote: I have tried a crash code in c# but i really cant, because right now i dont have the means or the time for learn c# Well, you are going to have to make time - we do not provide a code conversion service, even if one did produce good...
17 Jan 2019 by Peter Occil
Describes projection and view transforms commonly used in 3D graphics, such as perspective and orthographic transforms
30 Aug 2015 by jansok
A tip on converting multiple image files (BMP, PNG, GIF, JPEG, TIFF) to single or multiple PDF
22 Jul 2015 by The Tigerman
Work in progress, but a simple HTML to RTF converter
2 May 2013 by Zain ul abdeen
I have created a project in c# Visual studio but I dont like the looks of my app in Visual studio so I want to transform my project to Expression blen how can i do that?
14 Aug 2015 by Dhamodharan A
Talent and Pentaho are the best open source tool which help us to solve this kind of data transfer between RDBMS.Thanks
16 Feb 2022 by charles henington
Simple user defined Cipher Transform that I got the idea from https://www.codeproject.com/Articles/5319044/ARC4-Encryption-Library