Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

manni_n

@manni_n
About
Posts
102
Topics
32
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to save file to particular location in VB
    M manni_n

    I am not a VB programmer. But have to create a macro in excel sheet which uses VB code. Actually on closing of Excel sheet i have a message box which asks to save the file. In that i am not able to make VB code to save the file to particular location. Can anybody provide me VB code so that i can save excel file to desired or predefined location. I have tried some codes from net but they are not working. Please help me out as whole module on which i am being working from one week is stuck because of this. Thanks in advance.

    Visual Basic help tutorial

  • combobox event
    M manni_n

    thanks for your answer buddy but you didnt get that problem exactly .. i don't want selected item. it can be easily obtained from selecteditem. i want an event whenever item gets selected its respective database value gets filled in textbox. anyways i have solved the problem ComboBox1_SelectionChangeCommitted event can serve the purpose by putting query in this event. and binding the surname value in textbox

    Visual Basic database

  • combobox event
    M manni_n

    i have a combobox and a textbox names are there in combobox list i want if i have selected any name from combobox respective surname should come down in textbox from database instantaneously leave database connectivity that i'll take care... i want front hand method....

    Visual Basic database

  • How to close a form when move one to another form
    M manni_n

    well if your login form is startup form, and you are using VS2005 then just use closing_button_click() me.close() if using VS2003 then hide the form by me.hide() for closing the complete application , you can use application.exit()

    Visual Basic tutorial

  • increasing size of partition
    M manni_n

    i want to increase the size of my system drive partition. is there any way to increasing the size by taking space from any other drive..?? please tell me the safest way.. i am not in position to format... tanks

    System Admin question

  • adding .cpp file in vb.net
    M manni_n

    i made a c++ project long back. now i am learning dot net.. i want to add an interface now on vb.net.. but i dont know how to add .cpp file in vb.net can anybody help.?

    Visual Basic c++ csharp help tutorial

  • Deleting partition.
    M manni_n

    My OS is windows XP sp2 my windows partiton was 15 gb . but i dnt know hw a 8 GB unknown partion is made out of 15 gb... now my windows in instaled in 7gb partition which ultimately giving low disk space.... i want to merge that 8 GB unknown partion .. wen i delete that partition i am gettin this error.... "disk configuration operation did not complete.check the System Event Log for more information on this error. Verify the status of your storage device before retrying. If that doesnot solve the problem,close the disk managemant console, then restart disk management or restart the computer." can anybody help me in merging this partition...?? thanks

    System Admin help question workspace

  • sharing values at runtime...
    M manni_n

    thanks dave, now it makes sense to me. as forms are classes so encapsulation concept will be voilated... i'll try this way and come back to you.. thanks..

    Visual Basic help

  • MDI form...
    M manni_n

    form1 is mdiparent with ismdicontainer as true coding for form1 button_click event dim frm2 as new form2 frm2.show() now in button click event in form2 dim frm3 as form3 frm3.mdiparent=me.mdiparent frm3.show() this was your method.. the method which i am using is in form2 i code button_click() dim frm3 as new form3 frm3.mdiparent= form1 frm3.show() this one works but only when form1 is startup form. if form1 is any intermediate form and startup form is any other form then this method doesnt works.. any solution..?? thanks

    Visual Basic tutorial question

  • sharing values at runtime...
    M manni_n

    i have a very basic problem and i dont know the reason for that.. suppose you have 3 forms if in form2 u code : form1.textbox1.text=textbox1.text it works as at runtime value of textbox of form2 transfers into textbox of form1.. even in form 3 u code form1.textbox1.text=textbox1.text it works.. but if in form3 u code form2.textbox1.text=textbox1.text it doesnt works.. can anybody tell the reason.. and alternate method of doing the same.. thanks ...

    Visual Basic help

  • MDI form...
    M manni_n

    i am using VS 2005. when i am writin this code in button click event of form2, form 3 gets open but not as a child of form1.. it opens as individual form...

    Visual Basic tutorial question

  • forms loading [modified]
    M manni_n

    christian is correct this is the first step in developing windows application.. lots of tutorials are available on net which starts from scratch.. better read them first. nyways for this particaular problem of yours, here is the code.. in button click event of form1 code like this.. button1_click() dim a as new form2 'makes the instance for form2 a.show() ' shows the form2 on clicking of button1 me.close ' for closing of form1(optional)

    Visual Basic tutorial

  • MDI form...
    M manni_n

    its not working man... form3 is not becoming child of form1..

    Visual Basic tutorial question

  • MDI form...
    M manni_n

    example: suppose i have 3 forms and sequence of opening is form1->form2->form3 form1 is MDi parent, form3 is MDi child on clickin of form1, form2 gets open which takes some values from user retreives the data and accordingly opens form 3.. ma doubt is from form1, form2 can b made mdi child but from form 2, how form3 will b made child of form1..??? thanks

    Visual Basic tutorial question

  • Running windows application in LAN
    M manni_n

    if i am gettin it correctly then you want to fetch your database to all the lan connected system where ever you have installed your executable file well this is server client application... if this is the case, then i know the procedure for sql and excess , i hope same logic should work. In the connection string where you are giving path of your database in coding, jst add the ip adress of server like "//ipaddress of server computer/path of database". and from server computer you have to share the database file. try this out, may it helps you....

    Visual Basic csharp database help

  • updating values at runtime...
    M manni_n

    i have a simple doubt but i dont know how to do it.. actually i have displayed a database table in datagrid.... now i want to add or delete some values of data grid for dat i have given an edit button which opens a new form wid column name in labels and their values to be enterd in textboxes.... i want wen i click update button values get update with original datagrid window still opened.. database coding is not the deal.. important part is how can i update values of one form while focus on other form... thanks in advance....

    Visual Basic css database tutorial question announcement

  • window deployment
    M manni_n

    well if you have studio installed then framework must be there automatically this problem generally comes when you install your package on any other system which doesnt have framework installed. coz dot net application needs framework to run. please specify your problem more clearly.

    Visual Basic csharp dotnet sysadmin help

  • RE: I could use some help here
    M manni_n

    its simple... button1_click() Dim a As New Form2 a.YourPublicMember = TextBox1.Text myform.Show() before loading of form 2 public yourpublicmember as string form2_loads() textbox1.text=yourpublicmember

    Visual Basic question help tutorial

  • Runtime control creation.....
    M manni_n

    obviously u must be knowing dave... this is code is not for you. yeah by mistake i replied your post...

    Visual Basic help

  • Runtime control creation.....
    M manni_n

    Adding an control at runtime The following routine adds the Email label and associated text box at run time. Private Sub AddEmailAddress() Dim txtEmail As New TextBox Dim lblEmail As New Label ' Set the desired properties txtEmail.Top = txtAddress.Top + txtAddress.Height + 10 txtEmail.Left = txtAddress.Left lblEmail.Text = "Email" lblEmail.Location = New Point(lblAddress.Location.X, _ txtEmail.Location.Y) ' Add to the collection txtAddress.Controls.Add(txtEmail) txtAddress.Controls.Add(lblEmail) End Sub The above is adopted from MSDN. When you are creating controls at runtime you need to add event handlers in runtime also.. Read the following topic.. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv\_vstechart/html/controlarrays.asp

    Visual Basic help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups