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
~110.27K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

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
284
Member Avatar for kritiohri
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
321
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
900
Member Avatar for bhagawatshinde
Member Avatar for nesa24casa
0
170
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
343
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
625
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
171
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
170
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
78
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
305
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
184
Member Avatar for Hakoo
Member Avatar for bhagawatshinde
0
137
Member Avatar for mikeoabban
Member Avatar for macgurl70
0
141
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
80
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
212
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
267
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
103
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
517
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
103
Member Avatar for bhagawatshinde

Hi guys, i used the query for randomly selecting questions from access but it will give me same result, i try it by passing different different values also passing time in rnd fuction but i will display same result. [CODE] DataSet ds = new DataSet(); string strsel = "select * …

Member Avatar for bhagawatshinde
0
314
Member Avatar for bhagawatshinde

Hi guys, I am trouble to find out the solution can anybody help me, I am developing an windows application in 2.0 framework in vs2005 and making exe but on some operating system (Windows7 service pack1 64 bit Home premium, windows xp service pack 3) it throws an error while …

Member Avatar for skatamatic
0
107
Member Avatar for bhagawatshinde

Hi guys, I am inserting value from xml file to access database the file is near about 6 MB (size not problem) but the file contains mathematics questions containing images(jpeg,bmp),equations(math type) so while inserting some questions it will give an error "Query Is Too Complex " can anybody tell me …

Member Avatar for thines01
0
226
Member Avatar for bhagawatshinde

Hi guys, Can anybody help to figure out the problem. In my C# application project with access database when fetching the records from db it will give me error "Unspecified error". Thanks in advance...

Member Avatar for bhagawatshinde
0
617
Member Avatar for bhagawatshinde
Member Avatar for peter_budo
0
284
Member Avatar for weeraa
Member Avatar for poojavb
Member Avatar for bhagawatshinde

Hi, How to show dropdownlist first item blank . can i set the index property to -1 instead of 0.

Member Avatar for bhagawatshinde
0
84
Member Avatar for bhagawatshinde

Hi, In my page their is one combobox and one listbox. When i select an item in combobox then selected item added to listbox. Combobox has ispostback property to true. Now my question is, how to check item is already present in listbox on combobox selected item changed event. Thanks …

Member Avatar for bhagawatshinde
0
98
Member Avatar for bhagawatshinde

Hi all, Can anybody help me...How to create insert store procedure in access db with c# windows application.

Member Avatar for bhagawatshinde
0
168
Member Avatar for elpaisa

Need to initialize button each time like [CODE]Button btnAdd=new Button();[/CODE] and set location correctly seem to be new point can't be changed.

Member Avatar for elpaisa
0
2K
Member Avatar for krizhan4u

Try this connection string [CODE]SqlConnection("Data Source=localhost\\SQLEXPRESS;Initial Catalog=DBNAME;Integrated Security=True;Connect Timeout=100;pooling=true; ;User ID=;Password=;Trusted_Connection=Yes"); [/CODE]

Member Avatar for thines01
0
32
Member Avatar for anthonyjpv
Member Avatar for bhagawatshinde

Hi Guys, I am developing an windows application but their is problem when package is installed on client machine mainly for vista and windows 7, i am set the screen resolution to 1024 X 768 but in windows 7 and vista if magnifying tool is large then forms get display …

0
69
Member Avatar for bhagawatshinde

Hi guys, I am creating a project in vs2008 framework3.5 now is it possible to convert it into vs2005 framework2.0 any help will be appreciable.... Thanks in advance.

Member Avatar for thines01
0
120
Member Avatar for srm2010

Try this, [CODE] Form3 frm = new Form3(); frm.MdiParent = this; this.ActivateMdiChild(frm); frm.Show(); [/CODE] Hope this will help you

Member Avatar for bhagawatshinde
0
121
Member Avatar for Ehtesham Siddiq

Try this, dateTimePicker1.Format = Custom dateTimePicker1.ShowUpDown = True dateTimePicker1.Customformat = h

Member Avatar for M.Waqas Aslam
0
2K
Member Avatar for sehaar

Rather than using textbox you should go for Richtextbox control... Load the file in Richtextbox using loadfile() and SaveFile() to save file

Member Avatar for bhagawatshinde
0
81
Member Avatar for rexdon

As pritishdeshmuk mentioned , just add the condition [CODE] if (j <= 10) { for (int j1 = j; j1 < 20; j1++) { cks[j].Enabled = false; } } [/CODE] Hope this will help you

Member Avatar for bhagawatshinde
0
3K
Member Avatar for morfious90

As you said you work on 1380*700 resolution then try to set resolution programatically set resolution on start form and after exit application back to its normal resolution [URL="http://www.codeproject.com/KB/cs/csdynamicscrres.aspx"]Click Here[/URL] Cheers

Member Avatar for lolafuertes
0
1K

The End.