4,457 Topics
![]() | |
hi there people, ok so im brand new to this website - i am doing a degree in programming so have a REALLY rough idea of how java works ( only bin at uni since september ) - i want the table / database copied to my harddrive or some … | |
Hello :-)! [quote]SUMMARY: How to run pocketsphinx_continuous on mobile phone with Symbian, and how to do it with simulator of mobile phone with Symbian. PocketSphinx can be downloaded for free here, for both Linux and Windows: [url]http://cmusphinx.sourceforge.net/html/download.php[/url] .[/quote] ------------------------------------------------------------------------------------------------------------ SHORT EXPLANATION I'd like to create application for mobile phone and … | |
Hi, I've got a bit of a problem with an application I am writing at the moment. I know it has to be something small which I'm missing, but I can't figure out what it is. Basically, I have a Query (or Stored Procedure if you prefer) in an Access2000 … | |
I'm creating a media player with Qt & the phonon module: [CODE] #include "mainwindow.h" #include "ui_mainwindow.h" #include <fstream> #include <string.h> #include <stdlib.h> #include <QtGui> void MainWindow::slotFinished(){ int index = sources.indexOf(mediaObject->currentSource()) + 1; mediaObject->enqueue(sources.at(index)); setLabelNowPlaying(); } std::string ExtractFilename( const std::string& path ) { return path.substr( path.find_last_of( '/' ) +1 ); } … | |
Hi, i need some help, i need to delete some data in DBF file, and i have this code... but when i execute it .. nothing happends? Dim connectionString As String connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=D:\Documents and Settings\dmarinkovic\Desktop\Data1\FP550_EO022450;Extended Properties=dBase IV" Dim dBaseConnection As New System.Data.OleDb.OleDbConnection(connectionString) Dim cmmd As … | |
Novell Open Enterprise Server for Linux+ZENworks ,that is 050-704, is the hot emerging test exam in recent years. it aims to test the learners ablity to deal with linux+ zenworks . here is some Q&A you may have a look at which may help you to some extend. 1.By default, … | |
Ok I have been looking for this for a while it is the ultimate list of repositories for the Ubuntu 6.06 Dapper Drake distro. It will give you so many program choices you wont know what to do. simply goto your terminal and type sudo gedit /etc/apt/sources.list (I chose gedit … | |
I am doing a project on "performing automated testing on open office tools" (Open Office bcoz -being open source ,its source code is available for testing & its modifiable too). I m either to use an already existing tool : winrunner or QTP, to generate and check test cases or … | |
Hello everybody, I'm Nizar, an IT engineer (communications and networks) interested and working in Open Source mainly VoIP (Asterisk, Trixbox, Elastix...) Linux (CentOS, Ubuntu...) Nagios, Centreon... Interests also in Music and Sports. | |
Hi all i have question again, this is my code: [code] private void btAdd_Click(object sender, EventArgs e) { SqlDataAdapter adapter = new SqlDataAdapter(); DataSet ds = new DataSet(); DataView dv; string sql = null; string connetionString = "Data Source=GOD_LOVE_ME;Initial Catalog=ProjetDB;Integrated Security=True"; sql = "Select * from Material"; SqlConnection connection = … | |
Hi all, I'm newbe need your help. I have code: [code] public void Material_Load(object sender, EventArgs e) { SqlConnection con; SqlDataAdapter da; DataSet ds; con = new SqlConnection(); con.ConnectionString = "Data Source=GOD_LOVE_ME;Initial Catalog=ProjetDB;Integrated Security=True"; con.Open(); da = new SqlDataAdapter("select * from Material", con); ds = new DataSet(); da.Fill(ds); DG1.DataSource = … | |
I am having a problem updating an access database with new information from an updated dataset. the database consists of 4 columns: User_ID, Login_Name, Password, Access. The following code makes a connection to the database, fills a dataset with the data from the database, reads a txt file with user … | |
Hi All, I have to convert Excel data to MSAcess .MDB file using VB.NET. VB.NET Code read the Excel fi;le and write ti to .MDB file. For the same I have below code, but I am stuck at the writing it to .MDB file which I have already created with … | |
When I am trying to connect to a MS Access database to display a data report, I am getting a dialog-box pop-up showing the different parameters for the connection string. Clicking on either the 'OK' or 'Cancel' buttons gives a "Couldn't find Installable ISAM" error. The database is not password … | |
hi: [code] Module Module1 Public objconcetion As New OleDb.OleDbConnection Public objcommand As New OleDb.OleDbCommand Public Function open_database() As OleDb.OleDbConnection Try Dim route As String Dim cnn As New OleDb.OleDbConnection route = Application.StartupPath & "\" & "video.accdb" If cnn.State = 1 Then cnn.Close() cnn.ConnectionString = "provider=microsoft.ace.oledb.12.0;data source =" & route & … | |
I want to ask if there is any freeware or a open source 3d control which can be used in any vb.net project. I am developing a application in which i want to show the icons in a 3d view, which obviously looks cool. also the control should provide a … | |
hi every body(tis is my first post here) i have been experiencing compatibility problems with visual basic 6 and 8.0....(coz i have vista) .now i have installed vs 2008 express but the problem is that i am much used to vs 6.0 enviroment...now i just cant understand how to open … | |
I am suppose to make a MakeFile for the 2 source files named p4a.c and p4b.c Am i doing this makefile correctly? Any suggestions would be so helpful my MakeFile so far [CODE].SUFFIXES: .c .o CC - gcc CFLAGS = -g .c.o: $(CC) $(CFLAGS) -c $, sample: p4a.c p4b.c gcc … | |
Hello I am using Delphi 3. I have 30 edit fields named e0, e1, e2, ..., e29. The thing is, that I want to put something into these edit fields, to be specific: I want to put variable a[0] into e0, a[1] into e1 and so on. i could of … | |
It is something of a good and bad news day for mobile phone giant Nokia. On the same day that it announces shipping of the new N900 handset, based on the open source Maemo 5 software, Nokia is also recalling a staggering 14 million mobile phone chargers due to concerns … | |
I am trying to make a desktop application that can fetch live scores from web and save them to a database for offline view. Also if you know any open source application that is capable of displaying scores by fecthing from web then please tell. I dont know how to … | |
Hi guys, I've created a program to write form data to an access database. Currently I am extending it so that I can read the data back from the database. I have created a new dialog with a datagridview to view the table data. I wish to be able to … | |
Hello, I am working on a BHO for ie and I'm having some problems. I have two questions. 1) How can I identify the first request for each website visited on IE (because OnBeforeNavigate2 and other events gets triggered more than once per website). 2) I want to get the … | |
I really need help from you guys... my Insert statement doesn't work in C# but the Update statement was just fine. Possible to guide me on the delete statement as well? Here is my code: [CODE] string ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\\Inetpub\\wwwroot\\H1N1\\TTH H1N1\\TTH H1N1\\bin\\Debug\\H1N1.mdb"; OleDbConnection conn = new OleDbConnection(ConnectionString); OleDbCommand … | |
i am trying to make sure that one record is not entered twice into the same database but the code i am using is giving me an error [CODE]Set ri = deSub.conn.Execute("SELECT* FROM individualsubs WHERE firstname = '" & txtfname.Text & "' AND surname = '" & txtsurname.Text & "'") … | |
Hi I intend over the next few months to learnt Java with the purpose of building my own simple web crawler/spider. I have seen a few open source spiders but would like to build my own if possible. What I would like to ask is how would I go about … | |
I have a subscription system that i have developed. the system is supposed to automatically subtract the number of copies given to a client every monthend as per request they made of the copies required upon joining. my problem is i cant make my code run through my database so … | |
Hi, This is small c++ guess game, I almost finished it, but when i tried compile it gave me an error: "Cannot open include file: 'stdlib': No such file or directory" is this file part of c++ standard library..? why compiler can't find it? here is my .cpp source: | |
this is the code in vb.net for searching when a serial number is given from the sqldatabase..................... [CODE] Private Sub s2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles s2.Click Dim a As Integer Dim b As Boolean Dim connection As OleDb.OleDbConnection Dim command As OleDb.OleDbCommand Dim dr As OleDb.OleDbDataReader … | |
Hello, I have just started to develop a PHP/mySQL site and was wondering if there are any Open Source Security Frameworks they can recommended. Not only do I want to deal with data hacking issues, but also want to know what the best practices to insure that users are not … | |
Hai Every one... Im totally new to X-cart open source .Its a e-commerce source actually..And my company needs to create a shopping cart with x-cart.. Any suggestions , tips on this will always welcome... thank you, shanti.. | |
I'm reading in a file and sending the data (once encrypted) to a dictionary, with a hash of the data before and after encryption. I then pickle the dictionary but find the file size is massive compared to the source file size. If I write the encrypted data straight to … | |
Hi all, I am looking for an open source installer to install some application software (java based s/w programme) and i do not want to commit any sort of change in registry. The installer should perform following actions: 1. License Terms: Accept/Reject selection by user 2. User must select installation … | |
[code]# Reading the .csv file energyFile = open("EnergySources.csv","r") stateDict = {} for line in energyFile: line = line.strip() fields = line.split(",") if fields[0] == "State" or fields[0] == "": continue state = fields[0] total = fields[-1] float(''.join(total)) coal = fields[1] float(''.join(coal)) naturalgas = fields[2] float(''.join(naturalgas)) petroleum = fields[3] float(''.join(petroleum)) nuclear … | |
Hello, I begin in Python, and I have the following problem: I retrieve an excerpt of a HTML webpage from the web, and then want the result to be hold in a variable (before being processed by a reg-exp). The function do get the HTML source, but when I assign … | |
I'm still trying to get my validation to work correctly. So far if a user enters in a Salesman Code that exists in the database it displays the error message when tabbing off the field. The Salesman Code field is also required so I can't get this validator to work … | |
here's what i currently got [code]# Reading the .csv file energyFile = open("EnergySources.csv","r") stateDict = {} for line in energyFile: line = line.strip() fields = line.split(",") if fields[0] == "State" or fields[0] == "": continue state = fields[0] total = fields[-1] float(''.join(total)) coal = fields[1] float(''.join(coal)) naturalgas = fields[2] float(''.join(naturalgas)) … | |
I have 20 or so hard drives that have accumulated over the years. We're in the process of moving to a new facility and my boss wants me to index all the drives and create basically a printed inventory of whats installed on them as well as all the Word, … | |
Hello guys, can someone tell me how can I get the values from the columns ? My sql table is: Table name: settbl Table columns: id, first (int), second (int) ...and now, I want to get the values from "first" and "second", but I got the error message "Object reference … | |
Ok so im thinking of building a chat application like msn in java. Would JMF be the best option or has anyone got any other ideas. Also are there any tutorials or open source code at there that someone could point me to? Many thanks, jakx12 | |
i have created a database for subscriptions in MS Access 2007. I want to link it with my forms using the code below but its saying unrecognised database format. [B]Dim conn As Connection Set conn = New Connection conn.Open "PROVIDER=Microsoft.Jet.OLEDB.3.51;Data Source=C:\subscriptions2.mdb".......[/B] Now i have converted it to Access 2000 format … | |
If you are worried about your computer infected with a virus, I would highly recommend that you install the following open source programs: Microsoft Security Essentials- download it from microsoft website. It will get rid of viruses, spywares, etc... or avast- free antivirus or comodo-free Remember you should only have … | |
Hi, I am a new user of Fedora. I should work with an open source package which works in Linux. Therefore, I installed Fedora 11. At the moment, I must install Apache Ant to continue. However, I am confused! I don’t know how. I appreciate if you tell me the … | |
Hi Guys, I am searching for Open Source Finance scripts such as Account Payable, Account Receivable, General Ledget etc in PHP. But I could n't find a good one. Is there any such open source scripts in PHP available over the web for download? If so, could you please give … | |
Alright, I found this code online which basically solved my issues. [code]<?php header ('Content-type:image/gif'); include('GIFEncoder.class.php'); $text = "Hello World"; // Open the first source image and add the text. $image = imagecreatefrompng('source01.png'); $text_color = imagecolorallocate($image, 200, 200, 200); imagestring($image, 5, 5, 5, $text, $text_color); // Generate GIF from the $image … | |
private bool OpenDbConnection(SqlConnection sql_con_obj) { try { SqlConnection.ClearPool(sql_con_obj); SqlConnection.ClearAllPools(); if (sql_con_obj.State == ConnectionState.Closed || sql_con_obj.State == ConnectionState.Broken) { sql_con_obj.ConnectionString = "Data Source=.;Initial Catalog=Practice;User ID=sa;Password=sa"; sql_con_obj.Open(); return true; } else { return false; } } catch (Exception ex) { ShowMessage(ex.Message); } } I get following error on execution: Error 1 '_Default.OpenDbConnection(System.Data.SqlClient.SqlConnection)': … | |
PHP scripts can be run using the php-cgi.exe command line interface. However, a web server is a must if you want to have full functionality of the script. "Viewer for PHP" is an open source app that can be used to run scripts in an embedded browser control. It makes … | |
Hello all, I have an app that I'm building, slowly as I learn, and I'm having some issues with the JDialog implementation. I'm using NetBeans which generates pretty much everything except for the gutsy bits of code needed... (i.e. code for button actions, etc) I have my main application which … | |
The Associated Press [URL="http://www.google.com/hostednews/ap/article/ALeqM5iuRIVBTLUvW7823FC-fcfhvkSxHgD9BHLF180"]reported[/URL] this weekend that the [URL="http://www.whitehouse.gov/"]official White House website[/URL] has been switched to using the open-source Drupal content management system Using open source will result in improved security -- because more programmers will be looking for errors in the software -- as well as more quickly and … | |
![]() | Hi people; I have a problem that I imagine what you will be able to help. I installed a plug-in (Mozilla Firefox) that allows to install extensions. After, I installed an extension and checked that I need to alter it and generate a new .DLL (it was written in CSharp … |
The End.