Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,159,047 members, 7,838,646 topics. Date: Friday, 24 May 2024 at 07:09 AM

Lakulos's Posts

Nairaland Forum / Lakulos's Profile / Lakulos's Posts

(1) (2) (3) (of 3 pages)

Webmasters / How To Create An Advanced Search With Dreamweaver by Lakulos(m): 5:56pm On Jan 30, 2013
Please i need help on how to create an advanced search with dreamweaver using recordset.Thanks
Programming / Re: Problem Connecting Visual Basic 08 With Access by Lakulos(m): 11:50am On Jan 09, 2013
Tamorion: I don't think you have any problems with ur ConnectionString. The bug is the file u are connecting to (the protected Access file). The logic is: when u want to open the file outside ur application, u would normally supply a password. Now u did nt make any provition for that on ur application. I'm nt Advanced in VB.net, but my solution is: disable the password from the Access file. There may b other route to this witout disabling the password but i think u would be fine doing so. I am goin 2 try my hand on it and wil keep u posted if i hav any breakthrough witout disabling the password. Cheers!

thanks i'll appreciate it if u can help
Programming / Problem Connecting Visual Basic 08 With Access by Lakulos(m): 10:48am On Jan 01, 2013
Please can anyone help me on how to connect visual basic 2008 with a password protected access 2007 or 2010.Each time i run my program its always telling me "not a vaild password".I have tried all i can,infact search online for solutions but am still getting the same error.Thanks
Religion / Re: Demonic Covenant Associated With Visa Lottery by Lakulos(m): 12:00pm On Nov 27, 2012
@op,according to my bible,666 is collected by choice and not unconciously so stop all this nonsense talk

1 Like

Programming / Problem With Connecting Access Database To VB.NET by Lakulos(m): 8:51pm On Nov 26, 2012
I am trying to connect a passworded access 2010 database to my VB.NET project but each time i try to submit the data entered on my form to the access database through a save button,it brings out an error saying "not a valid password". I used DataSet wizard to configure the database and i set it to hide sensitive data,that is why the password is not appearing in the connection string.
This is my connection string.

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
</conectionStrings>
<add name="Interview_System.My.MySettings.InterviewdbConnectionString"
connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\Interviewdb.accdb">
ProviderName="System.Data.OleDb"/>
</connectionStrings>

Thanks
Politics / World's Poorest President by Lakulos(m): 10:13pm On Nov 16, 2012
One word to describe this man,mine is humble.

http://m.bbc.co.uk/news/magazine-20243493

Celebrities / Re: New Pictures Of Halima Abubakar by Lakulos(m): 10:39pm On Nov 15, 2012
ojuju
Romance / Re: Most Embarrassing Moment Of Your Life by Lakulos(m): 5:23pm On Nov 15, 2012
::Andrew:::
Offered to lift a gurl after an invent not knowing she drove a car more bigger, expensive than mine. angry angry angry angry angry

Now d@ is embarrasing
Programming / Help To How To Create A Quiz System Using VB.NET by Lakulos(m): 9:40pm On Nov 13, 2012
I am currently learning VB.NET and i want to design a quiz application as my first project,i want to use access db to store the questions n asnwers.The program is to have a count down timer for the person answering the question,it should also be able to mark,compile and display the result of the quiz.The problem is that i don't know how to implement it,pls can any1 write the code or refer me to a site where something similar to this was done? I am using visual studio 2008.Thanks
Programming / Re: How Can I Attach A Text File To A VB.NET Program by Lakulos(m): 11:00am On Nov 13, 2012
blenyo11: You will need the ReadAllText method File class from the System.IO namespace.
To have access to the File Class, you need to import the the System.IO namespace
Then you will have to change the name of that variable you name "file" to something
else so as to stop ambiguity of name with the File class that you will be accessing through
the System.IO namespace.

The code below is from the example program I created for you

Imports System.IO
Public Class Form1

Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
OpenFileDialog1.Title = "open a file"
OpenFileDialog1.InitialDirectory = "C:\"
OpenFileDialog1.Filter = "Text file|*.txt"

OpenFileDialog1.ShowDialog()
Dim fileName As String = OpenFileDialog1.FileName

Dim fileContent As String = File.ReadAllText(fileName)
rtbOutCome.Text = fileContent
End Sub


End Class


I have also attached the sample program in a zip file. It was
created in VS 2010



Its now working,thanks i really appreciate ur concern
Sports / Re: Lionel Messi Breaks Pele’s Goals Record by Lakulos(m): 11:55pm On Nov 12, 2012
Ice4jez: .pls can someone tell me the benefits of been the 1st,2nd,or 3rd to comment.pls

Dont mind them,they are just being childish
Programming / How Can I Attach A Text File To A VB.NET Program by Lakulos(m): 9:53pm On Nov 12, 2012
Please i want a open text file stored on my documents in a RichTexBox in my program

Here is my code:

private sub openToolStripMenuItem click(ByVal...........)

Dim file as string
OpenFileDialog1.Title="open a file"
OpenFileDialog1.InitialDirectory="C:\"
OpenFileDialog1.Filter="Text file|*.txt"
OpenFileDialog1.show()
file=OpenFileDialog1.FileName
RichTextBox1.Text=

This is where i got stuck. Thanks
Programming / Re: Having Difficulty On How To Go About This VB.NET Program by Lakulos(m): 9:35pm On Nov 12, 2012
JstBrave:

u ought 2post d code so pple can help u wf debugging. Bt u can try ds:

private Sub Form1_Load()
textbox1.text=form2.combobox1.text

i hope ds helps.

Its was helpful,thanks
Politics / Re: Stop Visiting War-Torn And Hungry Nigeria – Zimbabwe First Lady Warns Citizens by Lakulos(m): 7:53pm On Nov 11, 2012
berem: a worn torn country? DAMN!

War torn

1 Like

Jobs/Vacancies / Re: Job Seekers: What Course Did You Study by Lakulos(m): 12:48am On Nov 09, 2012
I have a B.Sc in Computer Science. My email address is adeyemiadekunle028@yahoo.com Thanks
Jobs/Vacancies / Re: Job Seekers: What Course Did You Study by Lakulos(m): 12:47am On Nov 09, 2012
I have a B.Sc in Computer Science. Thanks
Programming / Re: VB.NET Issues,please Help by Lakulos(m): 9:36am On Nov 08, 2012
Kobojunkie: Please post code showing where you actually open the second form and hide the second form.

This is the code:

Public class form1
dim first as form2
private sub button1 click............
Me.hide
First.show()
end sub
end class

The problem is that,when i close the form2,i expect the whole program to close but only form2 closes while form1 keeps running in the background and it is nowhere to be found.
Programming / VB.NET Issues,please Help by Lakulos(m): 3:23pm On Nov 07, 2012
Please help me wit this,i added 2 forms to my project,inorder for the second form to show i hid the first form using me.hide.But i discovered that when i closed the the second form,the program is still running on the background and form1 is nowhere to b found.I programming using VB.NET
Programming / Having Difficulty On How To Go About This VB.NET Program by Lakulos(m): 3:10pm On Nov 07, 2012
please, am learning VB.NET and i nid d code on how to pass a value from a combobox in form2 to a textbox in form1. Thanks.
Jobs/Vacancies / Re: Online Vacancies by Lakulos(m): 1:03am On Nov 02, 2012
IT and Programming(7,704)
adeyemiadekunle028@yahoo.com
Politics / Re: Flood Ravages GEJ's Mansion In Otuoke by Lakulos(m): 10:41pm On Oct 16, 2012
jchime: How i wish the flood drowns any of his relations probably the mum

Then that is a devilish wish,y shld u wish 4 d death of his mum or relations,if u were in his shoes,wld u perform beta as a persident? With dis mentality of urs,if u can commit murder,beta change it b4 it gets u into trouble
Programming / Abeg O,help Me With Dis VB.NET Code by Lakulos(m): 9:17pm On Oct 13, 2012
I trying to write a program on a simple calculator using visual studio 2008,i want the user to be able to enter values in 2 textboxes and submit the result to a third textbox,the problem am encountering is that the program is not bringing out error and it is not also it is not calculating anything. This is my code.

Dim num1 as integer
Dim num2 as integer
Dim ans as integer
num1=val(textbox1.text)
num2=val(textbox2.text)
ans=val(textbox3.text)
ans=num1+num2.
Thanks.
Webmasters / Re: How Can I Install Kunena On Joomla 1.5 by Lakulos(m): 11:26am On Oct 11, 2012
mcfranc: Did u upload a zipped folder? Your Joomla extensions must always be a .zip ext.

Yes i did bt its showing allocated memory size error.It says "allowed memory size of 8388608 bytes exhausted(tried to allocate 1998339)"
Webmasters / Re: How Can I Install Kunena On Joomla 1.5 by Lakulos(m): 11:25am On Oct 10, 2012
mcfranc: Since you are using 1.5.26 version,just follow this steps:
1. Login to your admin backend
2. Go to extensions, then click on install/uninstall
3. Chooses your file (kunena)from your storage device, then click on upload file & Install
4. Go to your menu manage and create a menu with menu item, for example call it "forum", then link it to the forum component (kunena) in the menu item type.
5. Preview and Enjoy!!! smiley


Thanks but its nt uploading the whole kunena folder,it opens the folder and asks me to select an item in the folder instead.
Webmasters / Re: How Can I Install Kunena On Joomla 1.5 by Lakulos(m): 12:35am On Oct 10, 2012
mcfranc: What errors are you getting? What version of joomla 1.5x are you running on? However, you have to note that kunena works for Joomla 1.5.26-2.5x. If you have any version less than 1.5.26, you may have to upgrade your joomla to the latest 1.5 version. WARNING - BACKUP YOUR SITE BEFORE UPGRADING. Check out for your own relevant update package here - http://joomlacode.org/gf/project/joomla/frs/?action=FrsReleaseBrowse&frs_package_id=5848

D problem is i dont av any idea on how to install kunena,am using joomla 1.5.26
Webmasters / How Can I Install Kunena On Joomla 1.5 by Lakulos(m): 9:20pm On Oct 09, 2012
Pls i am finding it difficult to do this,some1 shld pls help me out
Phones / Re: Nokia Announces Asha 308 And 309 Budget Touchscreen Phones by Lakulos(m): 1:14am On Sep 28, 2012
Donalð Genes: Mehn! I don tire ooooo
when will 9ja folo released there own phone even na kpako phone @least make we folo represent nah?

Quit complaining,have u forgotten that you are part of Nigeria,why can't you be the first to make that move
Programming / Where Can I Download A Comprehensive Tutorial On Visual Studio C#.net by Lakulos(m): 9:05pm On Sep 13, 2012
Pls some1 shld kindly give me the link where i can download a comprehensive tutorial on visual studio C#.Net(version 2008).The one i have is not quite confusing.Thanks in advance.
Programming / How Do I Get A Value From Another Form Using C#.NET 2008 by Lakulos(m): 4:35pm On Aug 31, 2012
Please i want to know how to get a value or values from a form and make it automatically appear on another form,i need the code format and explanation on how to do this,i googled it but i didn't understand how the code was used.Thanks.
Programming / Re: Help With This:checking For Blank Textboxes In C# by Lakulos(m): 1:09pm On Aug 21, 2012
gistme24: Let's say:
If(TextBox1.Text.Lenght > 0)
{
Try{
Int stat = Convert.ToInt(TextBox1.Text) ;
}
Catch(Exception ex)
{
MessageBox.Show("wrong input" ) ;
}
}
Else
MessageBox.show("Field cannont be blank" ) ;


If ur still having that exception, copy and paste ur codes here let's see.


Its now working,thanks very much,i really appreciate your time.
Programming / Re: Help With This:checking For Blank Textboxes In C# by Lakulos(m): 12:44pm On Aug 21, 2012
gistme24: Sorry bro... The earlier written were for Java. My codes have been modified.

int val = Convert.ToInt32(TextBox1.Text);

Not Integer.Parse which is for java.
The above should work perfectly.


sory to bother you but am a bit confused,d program is running but say format exception unhandled and it highlighted d "int start=convert.ToInt32(textbox1.text)" in yellow.Also do i still need to use a conditional statement to execute dis program? Pls bear with me,dis is d first programming language am learning

(1) (2) (3) (of 3 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 49
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.