Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
31% Quality Score
Upvotes Received
5
Posts with Upvotes
5
Upvoting Members
4
Downvotes Received
13
Posts with Downvotes
13
Downvoting Members
4
4 Commented Posts
0 Endorsements
Ranked #607
~109.31K People Reached
Interests
Playing and watching cricket, like to work on Microsoft Technologies
Favorite Tags

173 Posted Topics

Member Avatar for san_gwapo19

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", …

Member Avatar for JamesCherrill
-1
4K
Member Avatar for bhagawatshinde

Hi guys , Is their is any comparision between sealed class and abstract class. When to use sealed and abstract class.

Member Avatar for parth vyas
0
283
Member Avatar for kritiohri

Hi all, i used the code posted by Teme64 but i got error like Disk or Network error. How i can solve this.

Member Avatar for elie.karkafy
0
2K
Member Avatar for bhagawatshinde

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 …

Member Avatar for deceptikon
0
5K
Member Avatar for bhagawatshinde

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 …

Member Avatar for pandey.k.vivek
0
316
Member Avatar for bhagawatshinde

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.......

Member Avatar for softwareskill
0
893
Member Avatar for bhagawatshinde
Member Avatar for nesa24casa
0
167
Member Avatar for bhagawatshinde

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> …

Member Avatar for gusano79
0
334
Member Avatar for sigridish

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]

Member Avatar for Dili1234
0
623
Member Avatar for bhagawatshinde

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.

Member Avatar for bhagawatshinde
0
163
Member Avatar for bhagawatshinde

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 …

0
165
Member Avatar for bhagawatshinde

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.

Member Avatar for GarryHillton
0
166
Member Avatar for bhagawatshinde

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.

Member Avatar for bhagawatshinde
0
77
Member Avatar for bhagawatshinde

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 …

Member Avatar for bhagawatshinde
0
1K
Member Avatar for praveendasika
Member Avatar for bhagawatshinde

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?

Member Avatar for bhagawatshinde
0
298
Member Avatar for bhagawatshinde

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.

Member Avatar for bhagawatshinde
0
177
Member Avatar for Hakoo
Member Avatar for bhagawatshinde
0
137
Member Avatar for mikeoabban

Check the condition at the start as if(this.txtFcs_exams.Text!="") { //your code goes here }

Member Avatar for macgurl70
0
138
Member Avatar for mrki

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

Member Avatar for Momerath
0
2K
Member Avatar for bhagawatshinde

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.

Member Avatar for bhagawatshinde
0
77
Member Avatar for bhagawatshinde

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 …

Member Avatar for bhagawatshinde
0
3K
Member Avatar for infinitus

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.

Member Avatar for ChrisHunter
0
206
Member Avatar for bhagawatshinde

Hi guys can we update data (Edit) in view table in sql server? If Yes How ,if No Why? Thanks in advance......

Member Avatar for thines01
0
263
Member Avatar for Gus_19

If you still want textbox then better way to go with maskedTextBox and setmask to shortdate.

Member Avatar for bhagawatshinde
0
3K
Member Avatar for bhagawatshinde

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.

Member Avatar for bhagawatshinde
0
119
Member Avatar for magnus-110

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

Member Avatar for sprogrammer
0
100
Member Avatar for bhagawatshinde

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.

Member Avatar for bhagawatshinde
0
3K
Member Avatar for bhagawatshinde

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 …

Member Avatar for bhagawatshinde
0
515
Member Avatar for bhagawatshinde

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 …

Member Avatar for bhagawatshinde
0
101

The End.