|
Please use English, or move to a French speaking forum.
One of these days I'm going to think of a really clever signature.
|
|
|
|
|
I think you'll have to create that database yourself. The design is quite easy: a table "synonyme" and a table "antonyme", each having two nvrachar columns "word1" and "word2". Since the relationship of antonym or synonym is mutual, do a UNION query like:
SELECT word1 FROM synonyme WHERE word2=@word
UNION
SELECT word2 FROM synonyme WHERE word1=@word
Perhaps it is possible to find some lists with synonyms/antonyms in some other format on the web. Then you'll have to transform the list for your database.
|
|
|
|
|
bonjour tout le monde je réalise une application qui permet de lire des fichier texte et l'affiche dans un texte box mais lors de l'affichage des texte arabe on trouves just des symboles "????????????????" comment on peut corriger ça?
j'ai fait: tetbox1.text=file.readAlltext(openfiledialog1.filename,Encoding.utf8) mais l'affichage reste comme ça "?????????????????"
MErci pour votre aide
cordialement
|
|
|
|
|
In English please!
En anglais s'il vous plaît!
Bitte auf englisch!
ください英語で
------------------------------
Author of Primary ROleplaying SysTem
How do I take my coffee? Black as midnight on a moonless night.
War doesn't determine who's right. War determines who's left.
|
|
|
|
|
MOR89 wrote: tetbox1.text=file.readAlltext(openfiledialog1.filename,Encoding.utf8) mais l'affichage reste comme ça "?????????????????"
Sooo, I'd guess the file is not in UTF8, otherwise it would have decoded correctly?
|
|
|
|
|
How do I make all forms of effective language option program
|
|
|
|
|
I'm sorry, but I'm not sure exactly what you want here. Could you explain more fully what you are trying to achieve.
|
|
|
|
|
|
Multi-language support? What does that mean? Do you want your UI to be displayed in different languages? Are you wanting to use translation services?
This answer is less clear than the original post.
|
|
|
|
|
|
Meant to say Globalization & Localization!
|
|
|
|
|
pls give me examples
1. Build a Simple Application for insert, delete and update data in table of database(access / oracle / MsSql). (Java or .net) (Application and Database in same machine.)
2. Build a Simple Application for insert, delete and update data in two table of two different databases(access / oracle / MsSql). (Java or .net) (Application and Databases are in same machine.)
3. Build a Simple Application for insert, delete and update data in table of databases(access / oracle / MsSql). (Java or .net) (Application and Databases are in Different machine. Like Client Server)
4. Build a Simple Application for insert, delete and update data in two table of two different databases(access / oracle / MsSql). (Java or .net) (Application and both Databases are in different machine.)
5. Build a Simple Application for insert, delete and update data in two table of two different databases(access / oracle / MsSql) with implementation of lock concept (share and exclusive) (Java or .net) (Application and both Databases are in different machine.)
|
|
|
|
|
If it's that urgent, why haven't you tried Google? Why do you think that we will supply this code for you (which looks suspiciously like homework)? If you have a search around on Google, you should find plenty of examples that do what you want.
|
|
|
|
|
You have also posted this question here[^]; please post in one forum only. However, this is just a request for someone to do your work for you, and I am afraid that this site does not provide code to order.
One of these days I'm going to think of a really clever signature.
|
|
|
|
|
ok sorry dont give me example but can u give me an idea for using Databases are in Different machine. Like Client Server pls...
|
|
|
|
|
You could start with Using ADO.NET for beginners[^], and then research other articles here on CodeProject.
One of these days I'm going to think of a really clever signature.
|
|
|
|
|
Lets take a wild guess. You've sat and pissed about all semester in you CS degree, and now its time to actually do your first assignment your screwed, right?
Tough. Looks like a McJob for you. Get used to this phrase: "Would you like that meal large or medium, sir" and "Would you like fries or a fruit bag with your happy meal, miss?"
|
|
|
|
|
J4amieC wrote: fries or a fruit bag
For a moment, I read "bag of fruit flies"
"Any sort of work in VB6 is bound to provide several WTF moments." - Christian Graus
|
|
|
|
|
i'm using wcf service in windows application form
I'm using this code in web.config and app.config but still i'm getting error
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
realm="" />
Here is the error
The formatter threw an exception while trying to deserialize the message: There was an error while trying to deserialize parameter http://tempuri.org/:mail. The InnerException message was 'There was an error deserializing the object of type OutlookService.UserMail. The maximum array length quota (16384) has been exceeded while reading XML data. This quota may be increased by changing the MaxArrayLength property on the XmlDictionaryReaderQuotas object used when creating the XML reader. Line 1, position 43258.'.
Please help me
|
|
|
|
|
Hi all,
ehm i want build a VSTO Add-in for outlook for intercepting dial button click's event on a specific selected number from a contact. How can i make it? Plz help me....i've searched on internet but no results!
Thanks for any help!
|
|
|
|
|
I would have a look at this youtube video to start with as it shows you how to intercept the button events
Youtube intercepting clicking on outlook buttons[^]
Lobster Thermidor aux crevettes with a Mornay sauce, served in a Provençale manner with shallots and aubergines, garnished with truffle pate, brandy and a fried egg on top and Spam - Monty Python Spam Sketch
|
|
|
|
|
|
Context for this question (along with suggestions already made) is available here[^].
|
|
|
|
|
Hello.
I'm working on a project, where my "form application" needs some values to my Trackbar.
The values can goes from -10.000 to 20.000, then I need to convert these values to only 100 tags, with a step of 10.
My maths is not that good, and that why I hope there is someone out there that could help me.
-10.000 + 10.000 = "20.000" or "10.000". If it is "10.000", how am I then able to convert this to 100 tags, when it actually goes from minus 10.000 to plus 10.000 ?
I hope I explaned my question good enough. 
|
|
|
|
|
Split it as 200.
200 * 100 = 20000 (10000 on Positive side and 10000 on Negative side)
|
|
|
|