Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~5K People Reached

30 Posted Topics

Member Avatar for auwi987

[url]http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/606d66dc-c18d-4282-88fa-6553d48f32d7/[/url]

Member Avatar for Dajer
0
75
Member Avatar for Dajer

Hi friends I have a project with C#.when I run my project's exe and I want to run one part of my project,I have this error: System.IO.FileNotFoundException: Could not load file or assembly 'Interop.DTS, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified. File …

Member Avatar for Member #788418
0
169
Member Avatar for Dajer

Hi friends. I have a GridView which has linkbutton column.I Want to change the Text of this linkbutton when user click on it.But when I change the text of clicked linkbutton cell,It will be convert to the label!!!!!!!!! What's wrong?what should I do? THX.

Member Avatar for Dajer
0
95
Member Avatar for Dajer

Hi friends I have created a module in dotnetnuke recently,now I want to delete it.but when i try to delete it,I will face this Error: [CODE] DotNetNuke.Services.Exceptions.ModuleLoadException: Version string portion was too short or too long. ---> System.ArgumentException: Version string portion was too short or too long. at System.Version..ctor(String version) …

0
63
Member Avatar for Dajer

Hi friends I want to force datagridview's columns to use "NO" format mask at run time.for achieving this,I used this code.There is no error but it doesn't work.(This code is for column[1]) [CODE] private void dataGridView1_CellValidating (object sender,DataGridViewCellValidatingEventArgs e) { dataGridView1.Columns[1].DefaultCellStyle.Format = "NO"; }[/CODE] what should I do? thx for …

0
54
Member Avatar for Dajer

Hi friends. I have a datagridview in my project.I want to navigate between cells( in a row) by pressing "Enter".I mean when user edits a cell, navigates to next cell by pressing Enter.(as we know navigation to the next row by pressing enter is the default action) I tried to …

Member Avatar for sknake
0
412
Member Avatar for Dajer

hello I want to change language from regional language by code. how I would be able to do this?

Member Avatar for mIssy_ricco
0
285
Member Avatar for Dajer

Hi friends what's a role of index in RMS? when we use index in RMS? plz I need your help.

Member Avatar for javaAddict
0
76
Member Avatar for Dajer

Hello friends I have a datagridview in my project that will show the resault of one storedprocedure.when I execute storedprocedure,It works correctly but when I call it through the program datagridview doesn't show anything.I used break point to find the problem but every thing was ok. So what's the problem? …

Member Avatar for kvprajapati
0
183
Member Avatar for Dajer

Hi friends... How can i put index on my records in RMS to increase the rate of RMS??

Member Avatar for Dajer
0
78
Member Avatar for Dajer

Hi friends My question Is not a programming question but it's related to. It's 2 days that when I run my project(Press F5 or choosing from Debug) the Visual Studio will be closed completely. what's wrong?what's my problem? plz.guide me. thx.

Member Avatar for jatin24
0
301
Member Avatar for Dajer

Hi I have a textbox which contains Text. I want to find all the words in the text. (which seprate from each other with space). what should I do? thx for ur attention.

Member Avatar for ddanbe
0
126
Member Avatar for Dajer

hi friends... I have Written some codes for adding and retrieving data from RMS: [CODE] public void commandAction(Command command, Displayable displayable) { if(command==exit) { destroyApp(true); notifyDestroyed(); } else if(command==start) { try { recordstore=RecordStore.openRecordStore("My RecordStore",true); } catch(Exception error) { alert=new Alert("Error Creating",error.toString(),null,AlertType.WARNING); alert.setTimeout(Alert.FOREVER); display.setCurrent(alert); } try { String outPutData[]={"Mary","Bob","Adam"}; for(int x=0;x<3;x++) …

Member Avatar for puneetkay
0
145
Member Avatar for akil007

I think It's related to .Net Compact Framework Not .Net FrameWork. .Net Compact Framework is useful for Mobile Programming.

Member Avatar for Dajer
0
93
Member Avatar for Dajer

Hi I want to Mask my MaskedTextBox.I used Custom Mask in design.but when it shows my preview Mask,it's quiet different.I attached the pic.plz Guide me. thx.

Member Avatar for ddanbe
0
96
Member Avatar for Dajer

hi friends I used these codes for restoring my DB.But it has error.plz help me. [CODE] string backupfile = "D:\\Backup.bak"; Server svr = new Server("."); Database db = new Database(svr, "library"); Restore rs = new Restore(); rs.NoRecovery = false; rs.Database = "library"; rs.Action = RestoreActionType.Database; BackupDeviceItem bdi = default(BackupDeviceItem); bdi …

Member Avatar for DdoubleD
0
103
Member Avatar for hassanfaraz

[QUOTE=hassanfaraz;957454]i want to have view query in C# kindly let me know it[/QUOTE] If you mean u want to use query(Like storedProcedure or exactly query) there is some ways: *use Sql Server and write all your queries there,then bind your DB to your project in C#. *use Local DataBase or …

Member Avatar for sknake
0
452
Member Avatar for vinnijain

[QUOTE=vinnijain;950064] Can anyone tell me how can I link "save as" , "save" , "print", "print preview" buttons to the listbox...[/QUOTE] could u explain more? what do u want to do? I think it's not clear.

Member Avatar for vinnijain
0
254
Member Avatar for Dajer

hi I have a datagridview which has 8 columns.when user types sth in cell 7, the cursor should go to the new row.I write these codes but cells of previous row is still in edit mode. [CODE] this.dataGridView1.Focus(); this.dataGridView1.CurrentCell = this.dataGridView1[0, dataGridView1.RowCount - 1]; dataGridView1.BeginEdit(false);[/CODE] i mean now first cell …

Member Avatar for kvprajapati
0
89
Member Avatar for darab

I think darab wants to know how she/he should check mousemove or any keypress.isn't it darab?

Member Avatar for darab
0
137
Member Avatar for darab

hi I have the same problem.and your solution worked.so thx. but I want not to allow user to write even a letter.sth that we write in KeyPress Event. what should I do?

Member Avatar for sknake
0
159
Member Avatar for darab

for solving this problem can we use "DefaultCellStyle.Format"? for example: dataGridView1.Columns[5].DefaultCellStyle.Format = "yyyy/mm/dd";

Member Avatar for kvprajapati
0
131
Member Avatar for Dajer

hi there i have 2 forms that each one has a datagridview. i want when i fill dgv1 in form1 and press a button the dgv1 data has been sent to the dgv2 in form2.But it doesn't work. form1: [CODE]public string str; private void button1_Click(object sender, EventArgs e) { str …

Member Avatar for sknake
0
201
Member Avatar for Dajer

hi friends i want to put help file into my project.sth that when user press F1 it has been shown.how can i create a help file? thanks.

Member Avatar for darab
0
155
Member Avatar for Dajer

Hi friends i have a datagridview on my form and i want to print this grid when user clicks on the button.i know that i have to use printdialog and printpage event.but i don't know how say that print just datagridview of this form? what's your suggestion. thanks

Member Avatar for ddanbe
0
118
Member Avatar for laghaterohan

[QUOTE=laghaterohan;924222]hello, am doing an application (c#.net)wherein i need to add the Fileupload control one below the other on the click of the Attach more files button; just as we have in the E-Mails. How can the control get added to the form ? can ne1 help me out ? cya …

Member Avatar for kvprajapati
0
134
Member Avatar for Dajer

hi there. i write a project using VS 2008 and Sql 2005.now i want to deploy it and make its setup.what should i do for sql part?it's too big to install this mass(Sql) on user system.i heard i have to use sql engine? is this true? if yes,what's that? and …

Member Avatar for sknake
0
137
Member Avatar for Dajer

hi friends i have a problem.these are some components that i have in my project: form1:datagridview1(dg1) , form2:datagridview2(dg2) when i clicked on cell on dg1, form2 will be opened.now i have to double clicked on the cell of dg2 to send its data to dg1 on form1(then form2 will be …

Member Avatar for lighthead
0
481
Member Avatar for Dajer

hi. i'm new in C#.i'm writing an accounting program for an organization. this program should have an ability to support 2 or 3 organization. i mean someone who buys this software can use it for 2 or 3 organization.i think i have to copy my forms and empty DB to …

Member Avatar for serkan sendur
0
107
Member Avatar for Dajer
Member Avatar for ddanbe
0
98

The End.