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.

~4K People Reached
Member Avatar for auwi987
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 Huntondoom
0
159
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
89
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
58
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
51
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
388
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
275
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
65
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
171
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
71
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
186
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
116
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
132
Member Avatar for akil007

Hi, Our project is based on bluetooth technology . the PDA is communicate with PC via bluetooth. So that what should do for write code in PDA as well as PC.

Member Avatar for Dajer
0
77
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
80
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
93
Member Avatar for hassanfaraz
Member Avatar for vinnijain

Hi!!! I am working on window application and in that I have made tool strip,menustrip and instead of using richtextbox I am using listbox. In listbox I have added items statically using : " this.listBox.Items.Add("..............."); " Can anyone tell me how can I link "save as" , "save" , "print", …

Member Avatar for vinnijain
0
240
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
83
Member Avatar for darab

Hi friends I want to make a screen saver in my Project but I don't Know how to do it PLZ help me I want check the Mouse Movement if it dosen't move and if user don't push the keys in keyboard my screen saver be able How I can …

Member Avatar for darab
0
124
Member Avatar for darab

Hi Dears I want check the value of my gridColumns , I want user only type digit, I don't want let user to type any thing else except digit How I can check it? and in which event I have to write this codes?

Member Avatar for sknake
0
148
Member Avatar for darab
Member Avatar for kvprajapati
0
107
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
189
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
143
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
102
Member Avatar for laghaterohan

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
128
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
118
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
351
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
99
Member Avatar for Dajer
Member Avatar for ddanbe
0
87