Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~2K People Reached

11 Posted Topics

Member Avatar for siaswar

I want to develop a simple application which runs on single computer (just runs in one mechine) and did not need network. Program has to store some data in database and show them for printing. I have no experience with real-word program so I confused here: If the program is …

Member Avatar for Ancient Dragon
0
280
Member Avatar for siaswar

Hi I use linux in my laptop. and I don't like to have a windows on it (any way). My collage website designed with .net and aspx. It has greate features and the site application is something like a desktop application in a browser (greate job). Somehow it's nothing but …

Member Avatar for rubberman
0
172
Member Avatar for rayden150

What about this: [CODE]#include <stdio.h> void counter(int, int); int main() { counter(1,100); return 0; } void counter (int start, int end) { printf("%d", start); if(start == end) { printf("\n"); return; } else { printf(" , "); counter(start+1, end); } }[/CODE]

Member Avatar for siaswar
0
310
Member Avatar for siaswar

There is a threaded bst class program. I want to have a delete function for this class. every time I tried to write, not work. how can I have a delete func as simple as other funcs. I googled a lot but all codes are written with structs not with …

Member Avatar for WaltP
0
123
Member Avatar for siaswar

Hi, I used C# and VS2010 for doing my projects. Some how, now I should write a program in C++ with database and GUI. The program's language is Persian, So Button's text and data in database should be in Persian. Please Guide me in this case. how to use Unicode …

Member Avatar for daviddoria
0
186
Member Avatar for siaswar

Hi, I want to call my simple stored procedure in my app's local database. This is my procedure: [CODE]ALTER PROCEDURE dbo.booklist AS select * from book RETURN[/CODE] ---------- Actually I should run my query that is simple and return list of books (SELECT * FROM book). I should do this …

Member Avatar for ChhayaDeshmukh
0
146
Member Avatar for siaswar

I installed mysql and apachi form fedora14 installation dvd when I installed fedora. no I want to run mysql interpreter for training mysql (I'm student). when I run mysql command I receive error: [CODE]$ mysql ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)[/CODE] I looked …

Member Avatar for smantscheff
0
213
Member Avatar for siaswar

Hi I'm software engineering student. I know python, c, c++ and c#. It's been two years I'm trying to learn programming but somehow I still a beginner. I just know the syntax of these languages. I love Linux and open-source. I tried to learn programming in Visual Studio but my …

Member Avatar for katmai539
0
229
Member Avatar for siaswar

hi I am new to SSRS. I have a matrix table like below: [CODE]--------------------------------------------------------------------------- | id | name | family | book1 | book2 | book3 | book4 | book5|...|book10| [/CODE] As you know, the count of books in rum time are different for each user. it's may be 10 …

0
66
Member Avatar for siaswar

hi i designed my database in vs 2008 and then I want to use this file as odbc database. is there any way to configure it and is odbc support mdf files?

0
71
Member Avatar for siaswar

I have simple db with 4 tables: class, book, student and studentbook. studentbook has st_id and book_id as foreign keys and an extra field for result. book has some book for classes. I just insert new students. I'm quite beginner in db and don't know how to fill studentbook. should …

0
77

The End.