Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #3K
~9K People Reached
Member Avatar for Seba Sama

Hello, I need to start using databases with c++. I know in VB or VBA is simple and easy to find tutorials. I've done a lot of database apps in VBA and VB. I couldn't find help for c++, only for vc++. I use Code::Blocks and mingw. If anyone knows …

Member Avatar for Seba Sama
0
1K
Member Avatar for Seba Sama

Hello, I lost some hours trying to set up wxWidgets and starting a simple program using Code::Blocks. wxWidgets is installed and built, following [this](http://wiki.codeblocks.org/index.php?title=WxWindowsQuickRef) tutorial. But when I start a new project I get into some message saying: "A matching debug configuration cannot be found in the wxWidgets directory you …

Member Avatar for Seba Sama
0
2K
Member Avatar for Seba Sama

Hello, Can someone help me understand what is (if it is) the difference between `string* myStr` and `string *myStr`? Or any other type of definitions like that: `int* myValue` vs `int *myValue`, `char* myChar` vs `char *myChar`. The position of the "star" is confusing me. I only used pointers like …

Member Avatar for rubberman
0
344
Member Avatar for Seba Sama

Hello, I'm trying to approach .dll's. Tried some tutorials and got into 2 problems: 1. Using rundll32 from the command line is not working as expected. I write in cmd: "rundll32 mydll.dll MsgBox -32". It shows the MessageBox with text "15991798", changing every time I run it. 2. Calling a …

Member Avatar for Seba Sama
0
191
Member Avatar for Seba Sama

Hello, I came across a strange pointer (in my opinion): `void *(*foo)(int *);` Why are so many stars there? It was explained like: "...read inside-out; notice that the innermost element of the expression is *foo, and that otherwise it looks like a normal function declaration. *foo should refer to a …

Member Avatar for Seba Sama
0
221
Member Avatar for Seba Sama

Hello, I'm trying to understand some things about derived classes: how to add something "extra" to existing functions in base class. My base class is "shape2D" like a rectangle, 3 functions: set values, calculate, show results. No problem here. Then I create a derived class named "shape3D". Please note the …

Member Avatar for Tumlee
0
349
Member Avatar for Seba Sama

Hello, I would need some help/hints/tips for installing MSSQL server 2008 on a Windows Server 2003. Details: I want to work with virtual machines. My computer is an old one, not able to virtualize x64 machines. That's why I use Win server 2003 32 bit with MSSQL server 2008 R2. …

Member Avatar for JorgeM
0
278
Member Avatar for Seba Sama

Hello! I need to import some data from a .csv file, process it and write results in an Excel file. So... I use ADODB recordsets and Microsoft Text Driver: [CODE] Dim rs As New ADODB.Recordset Dim cn As New ADODB.Connection Dim cnStr As String cnStr = "Driver={Microsoft Text Driver (*.txt; …

Member Avatar for ChrisPadgham
0
167
Member Avatar for Seba Sama

Hi I'm trying to send some text to LPT1 port. [url]http://www.logix4u.net/[/url] this seems to work but there is nothing happening on my printer. can anyone tell me how to do it? thx

Member Avatar for AndreRet
0
422
Member Avatar for Seba Sama

Hi I need to export some data from VB SQL query to an existing excel file, witch is a bill model. In the area where I use CopyFromRecordset are some merged cells, and all goes fine but the paste of data in those cells. If there are 3 merged cells …

0
38
Member Avatar for Seba Sama

Hi! I'm working on a query that stuck me for some hours. I have 4 tables that I need to query to get a result that I need to populate a flexgrid with. Table Transactions contains (tID, data, clientID, operation) that I need. Table TransactionsContent contains some columns that I …

Member Avatar for vb5prgrmr
0
125
Member Avatar for diegostix

I have an Excel macro in which a user can input their name via an input box. I then want to take the name they enter and use it as part of the file path to which the workbook is saved. For example. If user enters their name as John, …

Member Avatar for diegostix
0
143
Member Avatar for drabsch

im making a program that gives you the age of the person that enters there date of birth the code i got at the moment is: Private Sub Command1_Click() Dim age As String age = Month(Now) - Text4.Text If age < 0 Then age = 1 Else age = 0 …

Member Avatar for drabsch
0
2K
Member Avatar for Seba Sama

Hi! I searched for this one with no results. I have an Access table with a column Date_of_birth witch has date/time format like dd/mm/yyyy. I develop a VB6 application that needs to read, write, update data in the mdb. INSERT: The user inserts this Date_of_birth in a textbox. I use …

Member Avatar for Seba Sama
0
111
Member Avatar for Seba Sama

Hi I'm currently using data binding, combo boxes, grids... I need to filter the data in a DataGridview depending on a value selected in a combo box. The combo is bound to a table, displaying data from a particular column, while the datagrid needs to "query" a second table "...WHERE …

Member Avatar for Seba Sama
0
137
Member Avatar for Seba Sama

Hi everyone! I'm kinda n00b in C/C++, All I ever did were some basic programs for some .txt files manipulation. Last time I was working in BC 3.1, about for years ago. Now I got Borland Turbo C++ Explorer 2006 and is a little hard for me to start a …

Member Avatar for Sky Diploma
0
147
Member Avatar for Seba Sama

Hi I'm about to write a short application but I have a problem: I need to get a recordset (or two) from 2 different SQL servers. I would prefer a single quarry but i don't know if it is possible. And if not, I will have rs_1 and rs_2. How …

0
60
Member Avatar for Seba Sama

Hi can anyone help me with this: i want to create a startup/bootable disk (floppy disk) and i need to write a file from that disk to local drive. win200 prof, ntfs (this is the problem) i need somthing like a .bat with a single command : copy source d:\documents …

0
43
Member Avatar for Seba Sama

i really need to get some data out from a xml and upload it into SQL. i found something about but i miss some things. [code]Dim xDoc As MSXML.DOMDocument Set xDoc = New MSXML.DOMDocument xmlDoc.Load("f:\data\customer01.xml") [/code] i don't know what reference to include, i get "user-defined type not defined" error. …

Member Avatar for sendoshin
0
210
Member Avatar for Seba Sama

Is it possible to connect to the hidden/special shares on some network computers from a VB application? i mean C$, D$, ADMIN$, other_share$. i have the local user Administrator and the password for those computers. Can it be done without having to use shell commands (net use, nbtstat etc) ? …

Member Avatar for mrmike
0
214
Member Avatar for Seba Sama

can someone hlep me with this ? i have the user names. now i need to find the name of the machine they are logged on to. how can i do this? i mean known : username, domain needed : machine name pls help i really need this one.

Member Avatar for Comatose
1
164
Member Avatar for Seba Sama

how can i know what functions are called by an application ? api monitor can't show functions for custom dlls. filemon shows only the path. can anyone help? i need to call some functions and i don't know how to get to them (name, results, parameters etc) i hope to …

0
25
Member Avatar for Seba Sama

HI I need some help. I need to "spy" an application to see what dlls, functions etc it is accessing. Anyone knows a good spy program? Is this one good ? :[url]http://www.sharewareorder.com/DLLspy-download-8762.htm[/url] any help is welcomed. thx

Member Avatar for Seba Sama
0
74
Member Avatar for Seba Sama

Hi can anyone help me on how to get the names of the tables from a DB - MSSQL 2k server? i need to list them or add them into a combobox, but i also need to select them by owner, or by type. user defned or system. thx in …

Member Avatar for Seba Sama
0
426