In a way that is what SQL does.
DidiKunz
Posts
-
An idea I just had to get out there before it dies -
What's new after 20 years?CS = Computer Sience in that context.
-
I haven't learned to hate VBI don't know why all 'serious' programmer always blame VB. VB.NET is practicaly identical to C# exept the syntax. You can do everything in VB.NET what you can do in C#. There are stupid guys doning stupid things and asking stupid questions at Code Project, and they normaly don't program in C#, thats right. But that is not the fault of the language. There are lot of stipid people talking english, but no one blames the english language for it... Best regrads: Didi P.S. I program in VB.NET for many years now, and I am happy with it, and does not know why I should learn the cryptic C# syntax just to look serious...
-
How to get XPath to XML node from treeview node?What about storing navigation information, for instance some index, in the Tag property of the Node? Regards: Didi
-
How to Get the Source Patheg_Anubhava wrote:
I am Coping data from System Drive and i m tring to Paste in Removeable media. So i want to get the Source path of file which is paste in Removable media.
From where do you copy paste, and what do you acctualy want to do? I don't understand a thing. Didi
-
Nokia 5130 CommunicationYou need to obtain a SDK from Nokia, to know the protocoll for the communication with the handy. The PC Suite does not help, because it's an end user programm and what you need is the know how of a programmer. I personaly never talked to a handy programmaticaly, so can't help you further... Didi
-
Nokia 5130 CommunicationYou need to obtain a SDK from Nokia, maybe this helps: http://www.forum.nokia.com/Tools_Docs_and_Code/Tools/All_Tools_and_SDKs.xhtml[^] Good luck: Didi
-
How would I deal with 10-bit-integer?Hi Mick, actualy I must say, that I did no use the library myself, just googled it for you as an idea to easier find your way... Probably you can try the .NET bindngs here[^] it says, that it is a continuation of the work on code project... Good luck: Didi P.S. Wo in Deutschland wohnst Du? Ich bin aus der Schweiz...
-
How would I deal with 10-bit-integer?Hi Mick, would not try to go into the sources, just use ImageMagick in VB.NET[^] should be enough. Regards: Didi
-
How would I deal with 10-bit-integer?Hi Mick, my project was not DPX, but a internal format of a Vison mixer, but it used also 10 bit... I looked at google to see, if there is an open source library to read DPX files and found GraphicsMagick[^] probably this could be a solution, there are different bindings including a COM object, that you should be able to use from VB.NET. Regards: Didi
-
How would I deal with 10-bit-integer?Hello Michael, I did not read the whole document about the Cineon File Format, but did a similar research about a image format of a vision mixer's still store (Kahuna) recently. There where the colors also 10 bit (this is common in broadcasting video) but the color was not in RGB but in YUV-format. If you have strange colors, when you are done, start investigating in this direction. By the way: you should not open your cineon file as a bitmap, but as a byte-array (as suggested), then you could get the three 10-bits out of the 32-bit integer, without GDI+ confuses you. Then alocate a 24-Bit (RGB) Bitmap and use something like setpixel (for testing only, is very slow) to write your converted RGB-values to the bitmap. To get around the slow setpixel look for articles about manipulating bitmap directly using 'dirty-buffers', but not before you see a picture with the slow method... Hope to help you find your way, good luck: Didi
-
how to embed hardware info programmatically to an executable at install timeI did never tried this myself, but would try it that way, if I had the same problem than you... So, sorry, no examples from my side... Regards: Didi
-
Word automation - selecting a part of the documentdptalt wrote:
That link does not give me enough information to solve my problem.
You probably read something about office automation, then it would.
-
QR barcode decoder.....S K Y wrote:
need to write the codeing for QR barcode decoder. i found few sample codings but thats quite complecated....is there any easy way than this? simple way to decode a QR barcode. Open Source QRCode Library[^]
...simpler than this? You are probably a bit lazy. Regards: Didi Kunz
-
Closing and recreating a formWhy can't you hide the form, instead of close and reopen? Regards: Didi
-
HOT Key For Software...he sayed, that his app is running in the background. So, if I understand him right, he is looking for a hook and not just for a hot-key to start the app. But anyway, he has both methods showed to him now, so he can choose. Regards: Didi
-
HOT Key For Software -
[Message Deleted]...you have got your answer, see post of Johan Hakkesteegt below. Good luck: Didi
-
How to implement queues in vb 6.0Yes, you are right, but we were talking about a dirty easy solution to save a presetation appointment tomorow. The guy is going to port the solution to .NET later. I never saied that this is good programming practice. Regards: Didi
-
[Message Deleted]why would you want to remove it? I rather hide it
YourDomainUpDown.Visible = False
Regards: Didi