- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 5
- Upvoting Members
- 4
- Downvotes Received
- 13
- Posts with Downvotes
- 13
- Downvoting Members
- 4
- Interests
- Playing and watching cricket, like to work on Microsoft Technologies
173 Posted Topics
Re: Try this code for converting number into words [CODE] Public Function NumberToString(ByVal num_str As String) As String ', Optional ByVal use_us_group_names As Boolean = True ' Get the appropiate group names. Dim groups() As String 'If use_us_group_names Then ' groups = New String() {"", "thousand", "million", "billion", "trillion", "quadrillion", "quintillion", … | |
Hi guys , Is their is any comparision between sealed class and abstract class. When to use sealed and abstract class. | |
Re: Hi all, i used the code posted by Teme64 but i got error like Disk or Network error. How i can solve this. | |
Hi Guys, I am using access (.mdb) database in my windows application. When i am inserting values to db it gives me an error "syntax error in insert into statement" but it will work in SQL and access query analyzer. here is my code [CODE] string StrInsertToServer1 = "insert into … | |
I am opening mathtype.exe from richtextbox and type some mathtype equation editor after closing mathtype editor the data which i type must be displayed in richtextbox. I am tried this using sendkeys.send but it seems to be not working properly. Suppose mathtype equation in richtextbox you can open it by … | |
Hi, I am new in asp.net. i have an task to read xml file from server folder and insert these values to sqlserver 2005 database. how i can do this. thanks in advance....... | |
Hi guys, How to unzip folder in c# programatically. Thanks in advance. | |
Hi Guys, I have an xml file contains the imagedata attribute. now while reading xml file using dataset i was setting this field to string and insert it to another table that have also image field. when i am tring to retrive this image it's not a actual image. <ImageData>/9j/4AAQSkZJRgABAQAAAQABAAD//gA+Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2NjIpLCBkZWZhdWx0IHF1YWxpdHkK</ImageData> … | |
Re: Try this, [CODE] Conn.Open() Dim str_query As String = "select * from tableName where Field=" & Combo1.Text &" cmd = New SqlCommand(str_query, Conn) dr = cmd.ExecuteReader Combo2.Items.Clear() Do While dr.Read() Combo2.Items.Add(dr.Item("Fieldname")) Loop dr.Close() Conn.Close() [/CODE] | |
Hi guys, I have save file in rtf from Richtextbox (okay it saves). But when i open this file manually it's asking me to save changes but i am not changed or edit anything. why this happens ? Is SaveFile() doesn't save file properly. | |
Hi guys i have generated PDF file from docx(.rtf also) You need to install bullzip printer and word. Prerequsities - you have to add reference Bullzip.PdfWriter. here is code snippest internal static byte[] PrintToPdf(string appFolder, string tempDocxFileName) { try { string tempFolder = appFolder + @"\temp"; string tempDocxFilePath = tempFolder … | |
Hi, I am new in asp.net. I have created an user control containig 3 dropdownlist (date/month/year) now how to get the value of the user control in aspx page. Thanks in advance. | |
Hi guys, How to display vertical scrollbar in listview. In listview their are 3 columns also i have set ListView.View = View.Details; but vertical scrollbar doesn't appear. Any idea Thanks in advance. | |
Hello guys, I am trying to insert watermark as text in word 2007 using c# but getting error can u pls help me out. here is my code... //THE LOGO IS ASSIGNED TO A SHAPE OBJECT SO THAT WE CAN USE ALL THE //SHAPE FORMATTING OPTIONS PRESENT FOR THE SHAPE … | |
Hi guys, how to get textbox leave event in wpf. I want select next textbox when one textbox leave focus. How to use lostfocus event? | |
Hi guys... I am developing an windows application in c# with sql server as back end with windows authentication i want username and password for sequrity purpose can i set username and password without changing it to server authentication. Thanks in advance. | |
Re: You are creating Installer1.cs (Installer class) or simple class file. for creating control | |
Re: Check the condition at the start as if(this.txtFcs_exams.Text!="") { //your code goes here } | |
Re: As Momerath said use [CODE]da.InsertCommand = new SqlCommand("Insert into Osoba values(@Osoba ID,@Ime, @Prezim,@Adresa,@Telefon,@Mob1,@Mob2,@Mob3) ",con);[/CODE] Hope it will helps | |
Hi Guys, I have develope windows application in c#. I want make it more attractive in looking is their is any skinner or themes available (Third party tools) free or paid in .net. waiting for pleasant reply. | |
Hi guys, How to sort hashtable keys in ascending order. I have 5 keys 1,2,3,4,5 and respective values are 10,7,8,6,9,5. but when i am displaying records it shows like this..... foreach (DictionaryEntry entry in srque) { MessageBox.Show("Key === " +entry.Key); MessageBox.Show("Value ===" +entry.Value); } the output i am getting like … | |
Re: You can try like this also.....converting lable value to int int answer1 = 0; answer1 = (Convert.ToInt32(textboxnumber1.text) / 100) * Convert.ToInt32 (label1.text) + Convert.ToInt32(textboxnumber2.text) + Convert.ToInt32(textboxnumber3.text) + Convert.ToInt32(textboxnumber4.text); total1.Text = answer1.ToString(); Hope this will help. | |
Hi guys can we update data (Edit) in view table in sql server? If Yes How ,if No Why? Thanks in advance...... | |
Re: If you still want textbox then better way to go with maskedTextBox and setmask to shortdate. | |
Hi Guys, I have created windows application project in framework 3.5, vs2008 with Access database when i changed target platform to x64 it will give me an error like 'The microsoft.jet.oledb.4.0 provider is not registered on the local machine'. How to solve this thread Thanks in advance. | |
Re: This encryption is at very basic level, best advice don't use it u can find more encryption Try [URL="www.mediafire.com/?odnfyqmgymg"]this[/URL] . Actually this is in c# but you can easily converted to vb.net by online code converter. Hope this will help you | |
Hi Guys, I am developing an windows application which is downloading file from webserver using FTP, my question is can i download file using HTTP. can anybody help me with some source. I am downloading a xml file. Thanks in advance. | |
Hi Guys, How to use bigin trance, commit and rollback in c#, suppose i have inserted values in two tables while inserting i am getting error in table 2 but table 1 has inserted values successfully so in catch how i can rollback changes.....after successful insertion i want to commit … | |
Hi Guys, Can you have any idea about randomly shuffle the questions in database without affecting questions id. Let i will explain little bit more ...... read carefully 1) I have a table containing 5 questions like this que_id que 1 abc 2 bcd 3 efg 4 hij 5 klm … |
The End.