473,788 Members | 2,893 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

wcsxfrm to find out length of new collated form

Im using VS Studio. Net 2005 to find out the transformed length of wide char
string based on specific locale (collation).

char* p = setlocale(LC_CO LLATE,NULL);//US Locale on my machine.

wchar_t tp[6] = L"Hello";

size_t size = wcsxfrm(NULL, tp, 0);

cout<<"Size "<<size<<en dl;

But it seems that I can't pass NULL as destination string since it gives me
runtime error in wcsfrm.c file. But same code works on 2003 studio.

Can anyone suggest me what is wrong with my code.

Sep 12 '06 #1
5 1197
Ray
Guru wrote:
Im using VS Studio. Net 2005 to find out the transformed length of wide char
string based on specific locale (collation).

char* p = setlocale(LC_CO LLATE,NULL);//US Locale on my machine.

wchar_t tp[6] = L"Hello";

size_t size = wcsxfrm(NULL, tp, 0);

cout<<"Size "<<size<<en dl;

But it seems that I can't pass NULL as destination string since it gives me
runtime error in wcsfrm.c file. But same code works on 2003 studio.
Nothing looks wrong from your code. wcsxfrm is supposed to allow NULL
for the first pointer if the third parameter is 0.
Can anyone suggest me what is wrong with my code.
Hmm, actually I just tried it and it worked fine. Perhaps it wasn't this
part that caused the error?
Sep 12 '06 #2
Strange,

Have you tried this with 2005 .net studio, coz I found its not working with
latest vc compiler but its working fine with vc 7 i.e. Studio .Net 2003

"Ray" wrote:
Guru wrote:
Im using VS Studio. Net 2005 to find out the transformed length of wide char
string based on specific locale (collation).

char* p = setlocale(LC_CO LLATE,NULL);//US Locale on my machine.

wchar_t tp[6] = L"Hello";

size_t size = wcsxfrm(NULL, tp, 0);

cout<<"Size "<<size<<en dl;

But it seems that I can't pass NULL as destination string since it gives me
runtime error in wcsfrm.c file. But same code works on 2003 studio.

Nothing looks wrong from your code. wcsxfrm is supposed to allow NULL
for the first pointer if the third parameter is 0.
Can anyone suggest me what is wrong with my code.

Hmm, actually I just tried it and it worked fine. Perhaps it wasn't this
part that caused the error?
Sep 13 '06 #3
Oops sorry i gave wrong code..typing mistake ...please try this with US
locale and not with standard "C" locale.

//Use UNICODE Character set in compiler properties
#include<iostre am>
#include<stdio. h>
#include<wchar. h>

using namespace::std;

int main(int argc,char* argv[])
{
wchar_t* p = _wsetlocale(LC_ COLLATE,L"");
wchar_t test[6] = L"Hello";
size = wcsxfrm(NULL, tp, 0);
}
Sep 13 '06 #4
Hi Guru,

"Guru" <Gu**@discussio ns.microsoft.co mwrote in message
news:84******** *************** ***********@mic rosoft.com...
Im using VS Studio. Net 2005 to find out the transformed length of wide
char
string based on specific locale (collation).

char* p = setlocale(LC_CO LLATE,NULL);//US Locale on my machine.

wchar_t tp[6] = L"Hello";

size_t size = wcsxfrm(NULL, tp, 0);
Looks like a bug in the c-runtime of 8.0. This is the offending code:
*_string1 = '\0';

it is in wcsxfrm.c in line 125. _string1 is the name of the first parameter
which in the above call is given a NULL. So it obviously dereferencing a
NULL pointer.

Can some from Microsoft confirm this?

--
SvenC
cout<<"Size "<<size<<en dl;

But it seems that I can't pass NULL as destination string since it gives
me
runtime error in wcsfrm.c file. But same code works on 2003 studio.

Can anyone suggest me what is wrong with my code.

Sep 14 '06 #5
Hi SvenC

thanks for reply..

Please have a look at this feedback..I submitted below feedback on micorosft
site and later on realised they are pointing to same source code in wcsxfrmc.c

https://connect.microsoft.com/Visual...edbackID=99607

Thanks
Guru

"SvenC" wrote:
Hi Guru,

"Guru" <Gu**@discussio ns.microsoft.co mwrote in message
news:84******** *************** ***********@mic rosoft.com...
Im using VS Studio. Net 2005 to find out the transformed length of wide
char
string based on specific locale (collation).

char* p = setlocale(LC_CO LLATE,NULL);//US Locale on my machine.

wchar_t tp[6] = L"Hello";

size_t size = wcsxfrm(NULL, tp, 0);

Looks like a bug in the c-runtime of 8.0. This is the offending code:
*_string1 = '\0';

it is in wcsxfrm.c in line 125. _string1 is the name of the first parameter
which in the above call is given a NULL. So it obviously dereferencing a
NULL pointer.

Can some from Microsoft confirm this?

--
SvenC
cout<<"Size "<<size<<en dl;

But it seems that I can't pass NULL as destination string since it gives
me
runtime error in wcsfrm.c file. But same code works on 2003 studio.

Can anyone suggest me what is wrong with my code.


Sep 15 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
4181
by: Shawn Modersohn | last post by:
I've got <form name="form1> <select name="select1"> <option value="null" selected>Select A Team</option> <option value="Cougars">Cougars</option> <option value="Mavericks">Mavericks</option> <option value="Shortcuts">Shortcuts</option> </select> </form>
2
6597
by: thomasamillergoogle | last post by:
Hi, As you can see from the code below I have a simple js function called getFormElementsinTableRow(rowName). rowName is the ID of the tableRow. I just want to use js to find the child ID's of all the form elements in that particular tableRow. What am I doing wrong? <table><tr id="where12" style="DISPLAY:none"> <td><select name="parameter12" id="parameter12"> <option value="1">casenumber</option> <option value="2">analyst</option>
2
2134
by: justplain.kzn | last post by:
Hi, I have a table with dynamic html that contains drop down select lists and readonly text boxes. Dynamic calculations are done on change of a value in one of the drop down select lists. Using Safari,my first iteration the script works fine ( indicating that there are 33 form variables ). When trying another dropdown select value, the
1
4964
by: mr k | last post by:
Hi, I wanted to use mail merge with forms but Text form fields are not retained during mail merge in Word, I got the code from Microsoft but it doesn't remember the text form field options such as the maximum length of the text (which I need) and the text format (would be ideal but can do without if need be) I have posted the code below, so please can you help!?? Thanks in advance... Sub PreserveMailMergeFormFieldsNewDoc() Dim...
4
1533
by: David | last post by:
Hi, I have a MAINFORM with a pop-up form link and a textfield The POPUPFORM displays 3 columns (1) Description : (2) £Charge : (3) Checkbox Each charge will be different for the various descriptions. A user needs to be able to select from 1 or more checkboxes then press
0
4110
by: shlim | last post by:
Currently I'm using VB.Net to perform a http/https multipart form post to a servlet. I'm able to perform the post using HttpWebrequest via GetRequestStream(). However, the servlet returned me with "The remote server returned an error: (500) Internal Server Error". Obviously, this means that I have not posted all the parameters as the servlet requested. But I just can't seem to find out what went wrong with my code. Hope someone can enlighten me,...
3
4310
by: blackrunner | last post by:
ERROR in my Query?! ERROR: Element GESCHLECHT is undefined in FORM. i think everything ok. Maby somebody can help me here Element GESCHLECHT is undefined in FORM. The error occurred in \anmeldung2.cfm: line 404
2
2650
by: deccio | last post by:
I have create an activex Control with Visual studio 2005 and framework 2.0 in c# to add drag & drop functionality to upload multi file. When I use it in a windows form it work fine. Infact if I select 3 files from a windows explorer and I move it in a listbox in my activeX, I find my 3 files added in the listbox but if I use my activeX in a web form and I select 3 file from a windows explorer in the listBox find only 1 file the file on...
2
1208
by: Frowning Freezer | last post by:
How can the function below be rewritten to prioritize form fields instead of other objects with the same name? For example I want getele("title") to retrieve the form field named "title" instead of document.title - how do I get it to do that? function getele(n, d){ //argument 'n' is the name of the object you want to get //argument 'd' is the document object, it is not required var p,i,x;
0
9656
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10173
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10110
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8993
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7517
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5399
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4070
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.