hi want to write urdu in text box of my application if anyone has the solution how to do this kindly let me know
View Complete Post
I have to process giant XML files that are 6GB+ in size. The problem is that there are no line breaks in the file, and the XML is improperly formatted (no root element). Therefore I can't use the XML class to read the file, and I can't open the file in any text editor or even "Type" it in a command window because the 1 line in the file is over 6GB.
The file contains UTF8 characters. What I want to do is first write a program just to read and display 100 characters at a time so I can look at the contents. Next I want to be able to create a new file, write a root element, read/write the contents of the file and then write the closing root element.
Can anyone provide a code snippet of how to read and display the file contents 100 characters at a time. I can then figure out the rest.
Thanks!
Hi,
I have a requirment, where I need to display like Service Provider : Ram in one text box. I have written expression ="Service Provider :"+Fields!Name.Value for this but I am getting any properties to make Service Provider : in bold. Please anyone can help me out.
For example:
If I want to display Service Provider in Upper Case and Fields!Name.Value In Lower Case I can write Below expression to get this.
=UCase( How to write ListViewItem that contain image , text and button ? I need to write some listViewItem ( using WPF ) - that contain image, text and button. I want to inherit from the simple listViewItem class and add to the listview item that contain the three items ( image, text, button ). I don't understand how the listView control will arrange the 3 items ( image , text, button ) in the right order in the control - how to tell the listview control that the image is first, text is second and the button is the third ?
I need to write some listViewItem ( using WPF ) - that contain image, text and button.
I want to inherit from the simple listViewItem class and add to the listview item that contain the three items ( image, text, button ).
I don't understand how the listView control will arrange the 3 items ( image , text, button ) in the right order in the control - how to tell the listview control that the image is first, text is second and the button is the third ?
Hi, I'm searching now for hours but couldn't find it.
In my menu i have several buttons which (by a <a href..) should go the a part of an article that is in the same form.
Menu button : What is a database should go to the page default.aspx and in there is an article published. A part of this article is having a piece of text about "what is a database"
Menu button: how to make a query should go to this same article in the same page but then to the part that is have the piece about the query. The next could be an example of what i'm doing:
<ul> <li><a href="default.aspx ?????>what is a database</a></li> <li><a href="default.aspx ?????>what is a query</a></li>
Where my question marks are, there should be a connection to that particular piece of text.In each article part there is an ID="text1" and the second part id="text2"
How shoudl i do that, Should i use a question mark.Please give me some guidance how to structure the <li> statement or a pointer where I can read about it.
th
I format lines in a .aspx file (source view) the way I can use them, and if I switch to design view or view in browser or debug, the many lines get reformatted to flow all onto one line.
I can't seem to find the correct setting to keep this from happening.
Any suggestions?
Hi Everyone!
I know this is probably a very basic question but how do I keep a column's text values unique in SQL server (ie for a unique username)? The column is not an integer it's varchar(50), and it's not the primary key but I could make it the primary key if recommended.
The front end could handle it; where the user would enter text, it's validated, then a query is done to see if that username is available. If so, then user can decide to choose it and an insert is done, if not they pick a new username and process repeats. With this approach, the responsibility of keeping the value unique solely rests on the front end, nothing on the database side.
Is this the correct way to handle this?
Thank you!
Can someone pls help me to rewrite this programatically!
<asp:SqlDataSource ID="DS" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" SelectCommand="SELECT * FROM [Products] WHERE ([ProductID] = @QSID)"> <SelectParameters> <asp:QueryStringParameter DefaultValue="" Name="QSID" QueryStringField="ID" Type="Int32" /> </SelectParameters> </asp:SqlDataSource>
Thank You in advance!
I am having a three text box. I want to write the fields given in text boxes to xml file and the xml file should be open as save dialog box for the user to
Hi all
can anybody help me to solve my problem : writing in .dbf , as following is my code with this error :
[ ERROR [07002] [Microsoft][ODBC dBase Driver] Too few parameters. Expected 3 ]
SqlConnection cn = new SqlConnection("Data Source=(local);Initial Catalog=test;Integrated Security=True"); SqlDataAdapter da = new SqlDataAdapter("select * from test", cn); DataSet ds = new DataSet(); da.Fill(ds, "test"); string odbccon = "Dsn=TEST.DBF;dbq=E:\\FOX;defaultdir=E:\\FOX;driverid=533;fil=dBase 5.0;maxbuffersize=2048;pagetimeout=5";
OdbcConnection connection = new OdbcConnection(odbccon); connection.Open(); OdbcCommand createCommand = connection.CreateCommand();
createCommand.CommandText = "CREATE TABLE test (ID int, name varchar(50),last_name varchar(50))"; &n
Hall of Fame Twitter Terms of Service Privacy Policy Contact Us Archives Tell A Friend