I am new to visual studio but have been a systems programmer for several years. Now I am interested in learning how to develop and package software. I enjoy...
1) u just use a ctrl + space 2) u must create the form first 3)u must make the dll form and u compile to make a dll, so u can include at your form program hope...
I've got a file with a strange extantion (binary file), the format is two integer .. two ineger .. etc. I want to open this file, read its data, put it in a...
Hi harry, Thanx for ur valuable suggestion and ur effort. Actually when am talking about listing all properties and methods of any object (CommandButton or...
Hi friends how are u doing?? i want to save my visual basic from as .bmp or .jpg or .ppt..bcz i want to get approval from somebody for my screen shots..sothat...
Run your application. Press Print Screen key (This will copy the form). open MSpaint and paste then save it as u like. With Regards, V.P.Rajkumar ... From:...
V.P.Rajkumar
raj@...
Jun 2, 2004 4:46 am
5811
If the forms abel to execute, Run the form and hold ALT + PRINTSCRN buttons in the key board.. Now u can paste the copied image to anywhere as u wish.. If u...
Karthikeyan Muthurajan
mkarthik@...
Jun 2, 2004 4:46 am
5812
If you are using windows 2000, or XP, just press ALT-PrintScreen. Then open your photo editor and CTRL-V to paste the image from the clipboard Ryan McBride ...
hello everybody, i am working in asp.net. i have a button,2 textboxes and a dropdown. text written in textbox or dropdown is seen when run but no textbox or...
I'm working on a VB6 application which is going to interface with another application through api commands. Where I'm stuck is that the application I...
i do face the same problems some times. Make sure there is runat="server" attributepresent ... From: jai prakash To: visualbasic_official@yahoogroups.com Sent:...
Hi Jai, you have to run the "aspnet_regiis.exe" file and then register the "aspnet_isapi.dll". Regards Nag K. jai prakash <jai75in@...> wrote: hello...
Hello! I'm looking for help incorporating a MS Visual Basic project into a MS FrontPage web. Any help would be much appreciated. I'm VERY much a newbie at...
Hi everybody, I am accessing my database stored in MSAccess using vb.net. I have connected each fields in the database to controls in vb.net. I am now able to...
This program is supposed to import data from a text file (2 items on each row in the text file) into an array, and export the data into a XML file. I am not...
I wrote a little VBscript to open EXCEL and load a file. One of the fields has a formula and the sheet is set to manual update on save. I would like to prevent...
Hi, Depending on the "CheckBox" property "Checked" you have to store a value in one Variable and pass that vaiable to your "INSERT" Statement baragrum...
i little forgot to make some about make prop,but would you try this : u must use create with the programming language at vb, like write probbag,read...
I want to us ADO to open a database created in MSAccess with a password. If I remove the PW from the DB and the open string below, everything works fine. If I...
Try to use the following things Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\settings.mdb;Jet OLEDB:Database Password=test; ...
Karthikeyan Muthurajan
mkarthik@...
Jun 8, 2004 5:20 am
5827
I created my database in MSAccess. I have two tables and their relationship is one-to-one. Then I used vb.net to access the data. But when I created the ...
Hi Everyone, I am getting this common error Parser Error Message: Could not load type 'namespace.Global'. All the dll's that I created are compiled without any...
Hi, I know this is a stupid question, but because I am a beginner in VB.Net, so I don't know how. I want to call a procedure (that belong to FORM1) from FORM2....
1. Make the procedure in form1 as public 2. Create an object of Form1 3. Call the objectname.procedure name With Regards Karthick V The basic rule of human...
Hi, Syntax for calling a procedure is Call ProcedureName '----if it is in the same form Call formname.ProcedureName 'if called from another form Happy Coding!!...
Karthikeyan Muthurajan
mkarthik@...
Jun 13, 2004 3:34 am
5832
Hi Create a instance for form2 in form1 and call the function like this Write this code in Form1 Dim fr2 as new FORM2 Fr2.functionname(which you defined in...
Arul Nayagam
arul@...
Jun 13, 2004 3:34 am
5834
hi I think if you use boolean data type field it will work. Deepak baragrum <baragrum@...> wrote: Hi everybody, I am accessing my database stored in...
I am sorry that I didn't tell too detail about my problem. What I mean by Form1 is actually MDIParent, and Form2 is MDIChild. Ofcouse I can set the procedure...