Hi,
I need help to show Image on MS Access form using image control.
i am using Memo field to store my image bytes,
Data
E.g. order# Number 1001
Sign Memo 45 63 46 61*46 61 46 58*46 58 46 55*46 55 45 52*45 52 45 50*45 50 44 47*44 47 43 44*43 44 43 49*43 49 44 54*44 54 44 59*44 59 45 64*45 64 46 70*46 70 47 74*47 74 49 83*49 83 50 81*50 81 51 77*51...
User Profile
Collapse
-
how to display image on MS Access forms using Image control
-
dipalipatel started a topic How to Store image in SQLCE database for .NET2005 using C# smart device applicationsin .NETHow to Store image in SQLCE database for .NET2005 using C# smart device applications
Hi,
I have a very hard time to insert Image into Sqlce Database.
Table : Test
Column : mypic
Datatype : image
below the code while i am inserting
signFile.txt is already captured image's conversion into txt file
FileStream stream = new FileStream("\\S ignFile.txt", FileMode.Open, FileAccess.Read );
BinaryReader reader = new BinaryReader(st ream);... -
Hi Plater,
Thanks for your reply but I found the solution,
It's working now
just i have to manully copy the cab file for SQLCE30 from my computer to the device. -
Can'tFind PInvoke DLL Error in C# Smart Device Application
Hi,
I have one Smart Device Application for .NET Framework 1.0 and now i upgraded to Framework 2.0.
Now when i run the application it's giving me an error on my device that:
Can't find PInvoke DLL 'sqlceme30.dll'
Can anyone help me with this?
Thanks -
Hi Plater,
Actullay admehta28 is right Autoscale property is availble in framework 2.0 not in 1.0 and yes it is windows applicaiton.
I am using 1.0 framwork so i donot have that property.
So, basically what i was doing is calulating working area and my form size mathamatically, but i am not sure exectly how my all controls get adjust so that is why i put this questions.
for future details i can give u...Leave a comment:
-
How to change form size as screen dimentions chaged?
Hi,
I have one c# smart device application created in .net 2005. I have fixed size form for my one device.
Now i have another device and screen size is chaged menas it is more wider and short in size.
If i run same application then some of the controls are not visible as screen dimentions chages.
So, is there any way i can auto size my forms as per screen dimentions.
For exmple if... -
Hi,
thanks for your reply.
i checked it already and i have System_SR_ENU_w m.cab file in folder that you specified menas : C:\Program Files\Microsoft Visual Studio 8\SmartDevices\ SDK\CompactFram ework\2.0\v2.0\ WindowsCE\Diagn ostics
And also i try to install it manully in my device. But no luck still same error.
Do you have any idea why this happen?Leave a comment:
-
.NET Smart device application
Hi,
I have .NET framwork 1.0 application and it was working fine on Windows CE Device 5.0
Now i upgraded my application from Framwork 1.0 to 2.0
Now when i run my application on Windows CE Device it's not working it's giving me an error
Error 1 Post-deploy error 0x00000001 returned after calling '\Windows\wcelo ad.exe /noui \Windows\System _SR_enu_wm.cab' . Device Connectivity Component
... -
Hi balabaster,
If you remeber you gave me solution for " how to get a perticular string in .net" using Regular expression in .net.
one quick question,
if i have string like
" http://192.168.0.111/mywebservice/data.asmx"
now if i want IP address=192.168 .0.111 in my string then how i will get that part?
I try by that reference site that you gave me but it's not working... -
Hi,
I am not sure about your windows application, but based on my understanding you can try following, to Add chid node.
XmlDocument doc = new XmlDocument();
doc.Load("E:\\R emote Server\\Events. xml");
XmlNode rootNode = doc.SelectSingl eNode("EventsLi st");
XmlNode newChild = doc.CreateEleme nt("Events");
XmlElement Events = doc.CreateEleme nt("Book");
rootNode.Append Child(newChild) ;...Leave a comment:
-
Hi Thanks for your reply.
But i have to do in VB.NET 2005 this things. I already got the solution how to create an xml file from this bytes forum using ds.loadxml(file name).
But the problem is if i insert blank spaces then in xml it's not showing that.
For example:
if i want <item>123 </item> then in xml it showing <item>123<item> .
So, basically it is trimiing all whitespaces....Leave a comment:
-
Export from MS Access to XML using VB.NET 2005
Hi,
I have one Access database with one table ForExample: MYTable with fields called Type, Version, data, Value.
now i would like to create an XML file with this MYTable value using VB.NET 2005.
For example:
Code:<MYTable> <Type>H</Type> <Version>2.2</Version> <data> </data> <Type>D</Type> <Version>
-
How To communicate Web application with My Weight HD series Scales
Hi,
I have to develop an application in .NET to communicate with My weight HD series Scales.
As soon as i put soming on my scale it will read the Weight and Send to my application and store in one variable.
It is connected with Com1.
Please, Can anyone help me with this?
Thanks in advance, -
Hi,
I would like to create an installer which runs on my desktop computer and with the Active Sync i connect that Pocket PC and it will start installing my cab files.
I follow some procedures for Installer like afterinstall and beforinstall methods that i see on microsoft website but still it's not working for me.
Please help me.
ThanksLeave a comment:
-
How to Create Custom Installer for Mobile Application
Hi,
I am woking on VS 2005 Smart Device application using C#.
I would like to Create on CustomInstaller to install 3 cab files on the Pocket PC with that installer.
Can any one help me with this?
Thanks, -
-
Hi !!
Very Nice Solution
but Regex.Match has only 2 arguments in string, the 3rd one is System.Text.Reg ularExpressions .RegexOptions ..
And in Soutions you pass 3 Strings, So it gives an error regarding that 3rd arg....Leave a comment:
-
Hey, You are great!!!
Thanks a Lot for your Solution.
Actually i was looking for a 1 line solution instead of Split and all function.
I Appreciate your help
Once again Thanks a lot......Leave a comment:
-
Hi
I did that but still i get the error. So, here is what i did:
My Original string:
mystr ="Provider=Perv asiveOLEDB;Data Source=BBData;L ocation=MyCompu ter"
Part of string that i want as below:
Getstr = System.Text.Reg ularExpressions .Regex.Match(my str, "?i:(<=Data Source=)[^;]+(?=;)").Value;
Error:
parsing "?i:(<=Data Source=)[^;]+(?=;)"...Leave a comment:
-
Thanks Kunal...
I tryed that and it gives me the follong error
parsing "?i;(<=Data Source=)[^;]+(?=;)" - Quantifier {x,y} following nothing.
Can you help with this?
Thanks...Leave a comment:
No activity results to display
Show More
Leave a comment: