4,457 Topics
![]() | |
Hi guys, Used the upgrade option of W2K, then could not install the Service Pack 4, receiving the following messages in the SVCPACK log, as well as [B]the windows installer keeps popping up after restarts[/B]: Service Pack started with following command line: *** ---- Old Information In The Registry ------ … | |
I am trying to learn VB .NET again. Have not used in a long time. I have bound my controls to my datatable and then I put values into the controls, I then have a button that I am trying to get to add/update the rows to the database. It … | |
Hi, Im using ASP.NET and SQL Server. While inserting the data at run time. the same data , what ever is already in database is being stored again. Say for example, i have empname and empno, "Mala" and 123 already stored in database, if i give new data "Bala" and … | |
I'm sorry that this has to be my first post here. Did a couple of big mistakes with .exe files and I'm paying the price. Explorer turns off and on reseting itself and every time it does it, it also closes any folders that may be open. Also, from another … | |
The increasing interest on Ubuntu is all set to take it to a new era, the mobile world. ARM, the leader in microprocessor intellectual property has announced an alliance with the makers of the Ubuntu open source software to produce a mobile version of it called netbooks. | |
can you help me assign sql query to gridview..i am trying like this but it doesnt work. [CODE] Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Dim con As New SqlConnection("Data Source=SPERANZA\SQLEXPRESS;initial catalog=master;integrated security=true") Dim cmd As New SqlCommand Dim dr As SqlDataReader cmd.Connection = con con.Open() cmd.CommandText … | |
hi all, glad I found this site. I hope you all can help me out with this little problem. First, my environment: Mac OSX 10.5.5 Python 2.6 (compiled from source, not using macports) basedir: /usr/local/bin/python; /usr/local/lib/python2.6 Following the proper directions on how to install setuptools (from here [url]http://pypi.python.org/pypi/setuptools#cygwin-mac-os-x-linux-other[/url]) [code] bash-3.2# … | |
Hi! I have the following code- [code=vb.net] Imports System.Data.OleDb Public Class Form1 Dim x As String = """" Dim cs As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\sbi\mm.xls;Extended Properties=" & x & "Excel 12.0 Xml;HDR=YES" & x & ";" Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim cn … | |
OK, just a quick question. What is a good sound library I can use to play files? On a slightly unrelated note, what is one I can use to generate sounds (tones, like 8 or 16 bit.)? I would very much prefer it to be open source and platform independent. … | |
I'm looking for an open-source (I could live with paid as long as it's not per-client licenses) that will allow me to create system restore disks. The situation is that I like to include restore disks with computers I sell/give to my clients/friends and don't think that it's really within … | |
The function that I am having a problem with is in the middle of this seperated from the rest of the code. [code=c++] #ifndef GRAPH_H #define GRAPH_H #include <string> #include "queue.h" using namespace std; class FileOpenError // Exception class -- cannot open input file { }; struct EdgeNode // Structure … | |
Hi guys! I have been looking for a "non-gamer" software development community for awhile now. Mainly I have been using another sire which is great for the gaming community. Hopefully this is a more general development community. I'm 24 and a software developer. I have a computer science degree and … | |
hi i have to ceate an applciation which can tranfer files from one pc to another on the network. I want to transfer files using FTP. can anyone tell me about an open source FTP client and FTP server which i can embed in my applciation easily and use the … | |
basically I have a form with 3 fields, ID, NAME and ADDRESS. What I want to do is after I enter my ID it will fetch the NAME and ADDRESS data from my access database. I want it to fetch the data after I finish entering the ID, but the … | |
This grap is kicking my butt. I am not sure how to do it. Can someone please help explain these to me. [code=c++] // graph.h // -- adjacency list representation of a weighted graph // #ifndef GRAPH_H #define GRAPH_H #include <string> #include "queue.h" using namespace std; class FileOpenError // Exception … | |
*Note: its not a fully functional hashTable for technical purposes My priority is to get it to store the strings properly. I approached this a different yet similar way to my other post and I have gotten much farther! The problem now is that my output prints duplicates each and … | |
I attach a file what was send by Shaik Akthar. I work with it a new access file. He use Table, I use querie. But it not work.I modify some code like: MSFlexGrid.FormatString = "<DATENOW|<NAME|<DIAGNOSIS|<REMARKS" MSFlexGrid.FormatString = "<Student ID|<Student Name|<Jamal|<Roll No" Con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source=" & App.Path & "\DB2.MDB" … | |
Hello All i have go to Jsp new so i have a big problem to compatible with it can u see me some open source program tp see it and know how u detect it so my minde still at asp.net and can't remove to jsp may be after read … | |
Hi. I just joined this forum because I really need some quick advice on a Blackjack game I'm working on. It's my first major endeavor, and I can't quite get it to work right. Here's the code. #blackjack.py from cards import * from graphics import * import random DIM = … | |
Hey all I've been writing a program that cheks an ISBN number as valid or invalid as an assignment for a class but I need a little bit of help. I get these errors when I try to compile it: error C2275: 'std::string' : illegal use of this type as … | |
[code] protected void btnAdd_Click(object sender, EventArgs e) { string connectionString = "Data Source=localhost\\sqlexpress;Initial Catalog=JobApplication; Trusted_Connection=True; Integrated Security=True"; SqlConnection mySqlconn = new SqlConnection(connectionString); mySqlconn.Open(); string query = "INSERT into JobVacancy(JobName, BriefDesc, FullDesc, ClosingDate) VALUES (@jobtitle, @briefdesc, @fulldesc, @closedate)"; SqlCommand mySqlcmd = new SqlCommand(query, mySqlconn); mySqlcmd.Parameters.AddWithValue("@jobtitle",jobtitle.Text); mySqlcmd.Parameters.AddWithValue("@briefdesc", briefdesc.Text); mySqlcmd.Parameters.AddWithValue("@fulldesc", fulldesc.Text); mySqlcmd.Parameters.AddWithValue("@closedate", closingdate.Text); … | |
What I have done/tried: 1) Download JDBC driver from Centura/Gupta/Unify website. Called and confirmed the JDBC driver is backwards compatable with sqlbase 7.6 2) Put jdbc file into mysql migration toolkit lib directory: C:\Program Files\MySQL\MySQL Tools for 5.0\java\lib\SQLBaseJDBC.jar 3) Open MySQL Migration Manager, configure: - source database Database System: Generic … | |
[CODE=cplusplus]// CS 210 EDDIE CHEN // THIS IS PROGRAM 4 (ISBN-Check), a program that verifies ISBN. #include <iostream> #include <fstream> // REQUIRED FOR FILE STREAMS #include <cstdlib> // FOR DEFINITION OF EXIT_FAILURE #include <cctype> #include <string> using namespace std; // ASSOCIATE STREAMS WITH EXTERNAL FILE NAMES #define inFile "isbntest.txt" // … | |
Please help checking the following code. It may look too mess. It's from other programmer. I try to fix it but I start to get headache now. It's make our product's page showing 3 hidden links of its own products' link on Google. For example: The page of [url]http://www.mywebsite.com/product-name-1.html[/url], currently … | |
Hi all, I am learning java and have developed a very basic message app which entails having a serversocket on one pc and a socket on another. This is working fine but now i want to go further and have them both to have the abiliy to wake the other … | |
Hi guys, I coding a page to save the first name in the database, iam having a problem and I want you to help me please.. aspx page code [CODE] <%@ Page Language="C#" AutoEventWireup="true" CodeFile="CompanyInfo.aspx.cs" Inherits="CompanyInfo" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> … | |
So... I have 3 textboxes and a Submit button. Here's the code behind: [CODE] public void Submit1_onClick(object sender, EventArgs e) { SqlConnection conn = new SqlConnection(); DateTime laiks = new DateTime(); conn.ConnectionString = "data source=.;initial catalog=ForumDataBase;integrated security=true;"; SqlCommand cmd = new SqlCommand(); cmd.CommandText = "INSERT INTO PostTable(ThreadTitle,PostMessage,UserName) values('" & ThreadTextbox.Value … | |
I am still working on the lovely trie project, now I am working on file input that will be passed into the trie. I receive the following errors when I compile this code. [code] $ make gcc -Wall -g -c -o spellback.o spellback.c spellback.c: In function ‘main’: spellback.c:36: warning: implicit … | |
I have studied sql. I know what is relational database. I wanna konw how we store the data in a relational database and how to query the data when we emplement a "select" statement Is there a open source relational data base? I wanna konw the data structure of the … | |
HI everybody, i'm a final year student, doing an SMS shopping system, and i intend to make it as open source so that everyone can benifit from that. the system should allow the users to buy products from a vendor, by sending sms, currently i am working on php, but … | |
looking for a Python/Django Developer in Jersey City NJ. Beloqw is the job description Job Summary: This is a programming position in the technical department of Advance Internet, working on application development, application integration, automated testing and deployment of applications, publishing structure and unit testing in various development environments. Job … | |
Hi all, I am developing an application which reads an excel file which has the following records and inserts into a table in SQL SERVER 2005 database [Enterprise Edition]. Data: Product Version CustType ------------- ------------- -------------- Norton SystemWorks Basic Edition 2009 CS Norton 360 2 CS Norton 360 2 CS … | |
Hi I need some help.. I need to integrate voip & messaging service in an browser based multipalyer online game. Which voip engine should I use for that . I have searched for open source OpenZoep engine .but I have failed to download it.. Because its homepage is not opening.. … | |
Hi guys, I'm new to programming and am learning with Python. I am trying to write a program that will get information from a website and display it in a program. Specifically, I'm writing a stock portfolio program that will look up information on a specific ticker and return that … | |
Is there any open source c/c++ compilers what can be debugged easily? I wanna know more info about the common knowladge about c/c++ compilers. | |
Hello everyone, I am trying to get a head start on this week's program, as it seems to be a long, albeit relatively easy, program. I wanted to double check with the experts here to make sure the flow of control for this program is correct. The assignment is as … | |
Hi, I need to press two times to save multiple records in different tables. I tried to use tran=con.begintransaction() to roll back transactions in case of error. But I didn't have the luck. So I tried in several sets of Try...catch...finally. After clicking submit button the first time, the page … | |
Using Tomcat 5.5, JRE 1.6.07, Jdk 1.6. JNDI: mySQL DATABASE. I used eclipse to develop the application. I think it is a classpath problem but as i am new to Java i havent a clue where to start digging. I am not quite sure if i am supposed to have … | |
'I am putting my folder in sharing then try to use these from different pc but it shows 'file already in used PLEASE GIVE ME SOLUTION [code=visualbasic] Dim dblogin As New ADODB.Connection Dim rclo As New ADODB.Recordset Private Sub cmdok_Click() dblogin.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\tmgmt.mdb;Persist Security Info=False" rclo.Open … | |
Sorry outright if I have posted in the wrong forum. My laptop has turned against me in the last few weeks. Ex of errors I get on a daily basis: 1. Windows internet expolorer out of memory at line 2 (sometimes 26) 2) microsoft visual ctt runtime library, runtime error … | |
HELLO all... Good Afternoon!!!! Currently i am developing a website...In that website i want to ad management ,where we can add and manage different ads with different prices, in different place on our website with time and etc... Any body have any scripts or any ideas to develop this kind... … | |
hi i have a window application, wherein i have to choose the database,its table and rowfields present in the table at runtime. Now i want to remove all the duplicates from database. my database is access and whichever row field the user chooses the duplicates should be removed leaving the … | |
Hi there, I've used Zen Cart before since it was an open source. Although the cart is not bad, I think it is a bit outdated and not very flexible when it comes to presentation. Can someone suggest a Shopping cart that is easy to use and is flexible? I … | |
i have a menu that has product IDs from a data base and I have a price text box that I wana get the price of that product from the data base on the menu change. HOW can i do this ?? plz help me so far this is the … | |
I keep getting an error message when I run this code and I don't know how to correct it. Here's the code and below it is the error message: [code] import sys import Image import ImageFilter im = Image.open("7.bmp").convert("L") source = im.split() R, G, B = 0, 1, 2 # … | |
i have a problem creating games with C++, if anyone has a source code in C++, please share with me, i need help, simple game is okay e.g: snake, arkanoid i just need a source code for a simple game, without open GL or something like that (because i can't … | |
It might be an issue with my laptop's IE6 although I haven't ascertained this. Anyway, I'm having a really weird issue. When I open my website in IE6 and click on a link inside that page, the page doesn't load for some reason. I just get the background color and … | |
I'm making minor adjustments to a sample program called [b]pdemo[/b] that comes with Dekang Lin's [b]minipar[/b] parser, but I'm having trouble compiling the darned thing without seeing a royal mess of "undefined reference" variables. I'm not particularly well-versed in C++ (I'm far better with higher-level languages), though, so I'm sorry … | |
I'm really hoping someone can help me on this, I may have overlooked some info somewhere doing numerous searches in the past week, but what I'm trying to do is quite simple. I have a handheld inventory device (circa early 90's but still in prolific use in the industry) that … | |
Hello All! I am a newb in need of some serious help. I am trying to get my website administration setup by using some different source code. I figured out the database issue I posted a couple of days ago. My current website is a ASP.Net 2.0 starter kit in … |
The End.