I have already known solvation. The mobile phone number can be passed in http header. It is necassery to be set such option by cell phone company. (SMS Centrum has to be configured). bye
tomiga
Posts
-
[MS MIT] How to extract Mobile Phone number? -
How to check Mobile Phone number?Hi, How to extract Mobile Phone number user who is browsing WAP site using Mobile Internet Toolkit.
-
[MS MIT] How to extract Mobile Phone number?Hi, How to extract Mobile Phone number user who is watching WAP site using Mobile Internet Toolkit.
-
How to change namespace for resource file?Problem: During develpoing my application I have changed name of namespace for my main form app. My app namespace is Analyzer my MainForm namespace is Analyzer.View Now I am trying to add some ImageList to my MainForm. During running application MissingManifestException is thrown. I have chacked Manifest using Ildasm and there is an entry
.mresource public Analyzer.MainForm.resources
In my opinion shoud be.mresource public Analyzer.View.MainForm.resources
Recompiling doesn't help. Is this mean that MainForm.resX is in wrong (old) namespace? If yes how to change this namespace? -
Digital signatureHow to veryfi digital signature using .net. (do you have any resources, examples)?
-
Putting bitmap to RTFleppie wrote: Hi I have tried to do something similar and there seems to be 2 ways: 1. Easy - place bitmap object in clipboard and paste to richtextbox. Problem that u use the clipboard and mite "lose" data that still needs to be there. Hmm I did't think about it... but how to copy bitmap from Form (for example I would like to write some kind of chart and put it into rtf) leppie wrote: 2. Hard - Create a RTF file in a word processor with required bitmap, save the file. Now add that to the Rtf of the richtextbox. This could coause many problems though In my case it couldn't be done. leppie wrote: 3. Ideal solution - Every stick together and make a proper WordProcessingTextBox with all the features we always wanted . Like highlighting That's cool. But unfortunately I don't have time to do it :( (but maybe in future it is good idea :)
-
Putting bitmap to RTFWelcome, Have you got any example how to put Bitmap (created during working of application) and than put it (embedded) in RichTextBox control. Bitmap is created in the memory (not reading from file). thx
-
Menu and separatorI am afraid that looks horrible :(
-
Menu and separatorHi, How to create separtor line in menu. (like in Visual C++)
-
Beginner XSL problemthx (there was no space in oryginal ;) but correct version of test shoud look like
xsl:when test="name='myName'"
-
Beginner XSL problemWelcome I have XML file:
<doc> <field> <name> myName</name> <value> some value</value> </field> <field> <name> otherName</name> <value> other value</value> </field> </doc>
I have created XSL file:<xsl:template match="/"> <!-- transform fields --> <xsl:for-each select="field"> <xsl:choose> <!-- i want get data from myName field --> <xsl:when test="cd[name='myName']"> <xsl:value-of select="value"/> <xsl:when> <xsl:choose> </xsl:for-each> </xsl:template>
unfortunately it doesn't create output file as: some value What is wrong? -
XmlTransformation output to stringThx. I have found stream witch writes output to string.
StringWriter
class. It helps me to solve problem. -
XmlTransformation output to stringI have to use xml transformation. The simplest way is
XslTransform xsltransform = new XslTransform(); xsltransform.Load("favorite.xsl"); xsltransform.Transform("MyDocument.xml", "TransformResult.xml");
But it is necessery for me to put output of transformation not to file but to string... (all of overloaded members of Transform has file or stream) Do you have any idea? -
Configuration file for applicationThx Problem was solved. (I had to change a name of config file). Tomiga
-
Configuration file for applicationoppss of course it was xml file.. (it doesn't look like in previous post) Tomiga
-
Configuration file for applicationWelcome, I hava a project called for example myApp I defined configuration file myApp.config as below Construction myApp looks like ... System.Configuration.AppSettingsReader configurationAppSettings = new System.Configuration.AppSettingsReader(); try { strConn = ((string)(configurationAppSettings.GetValue("SqlConnection1.ConnectionString", typeof(string)))); } catch(Exception e) { MessageBox.Show(e.Message); } ... And exception occured A key SqlConnection1.ConnectionString in the appSettings configuration section. Do you have any idea what is wrong (I added config file manualy... is it neccasary to set extra references to it) (of course it is added to project) Tomiga
-
[Controls] HTMLView or HTMLBaseDialogCan I find such a control (or similar) in C#? Tomiga
-
where I can find Coding Conventions for C#?As far as I know there is an appendinx in C# specification. (You can find it in your .NET installation folder in C#/C# langugae specification.doc :) Tomiga
-
static variables in methodsStatic variables sometimes are very usefull. You can use it or not... but in my opinion programmer should decided what he wants to use (in this case simply language dosn't support it - that's a pity) Tomiga
-
Default values in method declarationThank you for information. This is quite reasonable (but sometimes default parameters are very usefull :) Tomiga