Topics
-
-
- Administrators
- 2 replies
- 2k views
Hi, I am newish to Network programming in .NET I have currently been developing applications where the client interacts directly with the database (which has been working fine in small scale environments) But I wanted to play about with 3-tier ideas to gain performance and scalability So far I have been looking at serializing a data object and using sockets to send the xml string across the network. But I have been told that�s a dumb idea because it would be re-inventing the wheel and I should be using remoteing. Well I have been looking into this and played about with a few examples. All the examples I have found build parts of the data access layer into t…
Last reply by CyberDuke, -
-
- 3 replies
- 1.1k views
ok. i have a database with a good many tables and relationships. i have this reflected in the dataset ive created, so its an exact replica of my database. i want to be able to add a new record. does this mean that the insert command of my data adapter will be a huge command, inserting data into each of the 10 or so tables that data is entered into? ive used datasets and inserted data into one table at a time, but never more than one table. how do i do this if i have many tables to insert data into at once?
Last reply by bri189a, -
- 7 replies
- 1.3k views
What I'm trying to do should be simple I think, though I'm having difficultly finding appropriate tutorials or instruction. Ideally I'd like to have the user enter in two dates, both a "From_Date" and "To_Date". I would then like to display each record that falls within that range in Crystal Reports. I'm not asking anybody to do it all for me (though if you showed me a working example I wouldn't complain), I just really need some guidance. Any book or tutorial recommendations that you might have are also very welcome. Thanks, Kevin
Last reply by shagracing, -
- 0 replies
- 881 views
OK, I am finally getting around to playing with 2.0 and the new Data Web Controls that we have available. I must say it will be nice being able to do more things with out having to go into the code. However, I hit a snag. To limit round trips to the database, I often create stored procedures that return multiple resultsets. When using a Dataset, they just get put in as multiple tables, I set a Data Relation between them and everything is happy. Now I am trying to do something similar with a SQLDataSource. So far I have been able to set up the Select Query and populate a control with the contents of the first result, but I haven't found a way to the second table o…
Last reply by wayneph, -
-
- Administrators
- 2 replies
- 918 views
If I drop a text box on an asp.net form I can drag and drop it anywhere I want and the appropriate css style tag gets generated with aboslute positioning. This is grid positioning yes? But if that textbox is in a panel or in a master page content control then I lose the ability to do that. And it balks if I try to add style tags with positioning in them. What is going on? Do I have to go old school and make tables for things in there to get them to layout properly?
Last reply by VBAHole22, -
-
- 0 replies
- 2.8k views
Hello, In part of my application which is written in C#, I want to connect it to a symbian phone via a bluetooth device. So, what are the API's I can use for this purpose and for any other interconnection between .NET and mobile phones? Thanks :)
Last reply by HSN, -
- 2 replies
- 1.6k views
Hi all, I'm starting into managed DirectX programming, and I have a simple question. The books and research materials that I have cover DirectX 9b. Now, I know that MS changed some things in moving to 9c in regards to some of the properties and classes that are available. If I write a program using 9b, and someone has 9c installed, are there going to be any issues when they run my program? The main reason I'm asking is b/c I just formatted my development machine, and was going to install 9c when it dawned on me that I'm going to have a hard time compiling my code from my books. So, I figured if I install 9b from the reference CD's, I could at least get the examp…
Last reply by dakota97, -
- 8 replies
- 891 views
i've never really seriously developed a webpage, either in ASP.NET or PHP what is Macromedia's role in web development? what is its advantage and disadvantage? can ASP.NET do everything it's doing? btw, i hate java and its applet only because of its performance... i hope i won't get an answer that flash's performance is even worse...
Last reply by bri189a, -
-
- Administrators
- Leaders
- 4 replies
- 2k views
In VB6 I used the TypeLib Information dll (tlbinf32.dll) to find out about the classes contained in a plug-in Class Library. Is that still the best way to do it in .net?
Last reply by snarfblam, -
-
- 1 reply
- 867 views
When I call DataSet.WriteXml(), it writes the file, but the first 3 characters are cut off. example: nfigs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <config></config> </cofigs> it is correct before i read the xml, but when it goes to write the xml, it cuts <co off the root node. any ideas why this might be happening?
Last reply by sde, -
-
- Administrators
- Leaders
- 5 replies
- 1.4k views
In VB.net, All I need is passing the form to a function (from another class) and I can access the form's members(functions, controls, and variables) inside the function. But in C#, I can't do it anymore? :( Am I missing somthing? Thanks in advance.
Last reply by snarfblam, -
-
-
- Administrators
- 4 replies
- 876 views
We have an server that when it is restarted it looses its share. I need to write a service in Visual Basic.NET that will start when the server starts, look at those folders, and if the folders are not shared, share them. I have never written a service or changed the share of a folder from inside code. Any code examples or recommendations would be greatly appreiciated.
Last reply by TheWizardofInt, -
-
-
- Administrators
- 4 replies
- 916 views
hi to all, I'm currently workin in a aplication that is requires user autentication. I'm using vs 2003 and access. Now when i run my app the login form shows up for the user to input its username and password. If it's the first time that the user is loging in (the password is blank) a form shows up to allow the user to change his password. When the user submits it's new password, the password is encripted and a query is submited, like the example below UPDATE Utilizadores SET User_password='.w\"2H�XՏ,1\0#~@�MV_KTF�*uX�lhN[*\tЭ#\aE', User_reset=0 where User_id=1 to execute the query i use the following code [csharp] public static int ExecuteNonQuery(…
Last reply by rfazendeiro, -
-
- 0 replies
- 762 views
Hi, Is there any way to determine whether mdb file is read-only or not from vb.net. I want to alert user when opening the application, if access-database used by the application is read-only. Thanks
Last reply by smriti, -
- 3 replies
- 762 views
My application is made to work with either an Excel, Access, or SQL database (I use typical Database select, update, insert, etc.. calls) In the case of EXCEL or ACCESS the user has the ability to Launch the actual application to view the DB contents - seeing as the user now has the ability to view the RAW DATA I need a way to "cleanup" the information. The Database has 3 columns ([CLIENTS], [ASSIGNMENTS], [sTATUS]) and multiple rows therefore I need a way to SORT the Database Alphabetically by [CLIENTS] and then by [ASSIGNMENTS]. It occurs to me that this must not be that uncommon of a request so I was wondering if anyone had any hints/helps or samples that could pa…
Last reply by kejpa, -
- 0 replies
- 1.3k views
G'day! For those who are interested, my C# tutorials have been converted to VB.Net. http://http:/www.drunkenhyena.com Stay Casual, Ken
Last reply by DrunkenHyena, -
-
- Leaders
- 7 replies
- 1.4k views
I've looked and I'm sure it must be on here somewhere, but I can't find it. How do I persist an image in VB.net? Say I wanted to show an image that joined up all the points that a mouse had moved to. I can draw in the Paint event, but this is the MouseMove event, so how do I handle that? How do I store the previous image before drawing the next line on it?
Last reply by rbulph, -
-
-
- *Experts*
- 23 replies
- 4.3k views
Hey, I'm thinking of setting up a LAMP (Linux Apache mySql Php) server. I'm just wondering what distro you guys feel is better... I've done my research and found this info: Stuff I'm NOT looking at: Slackware - The "C++" of all linux Distro's... the most powerful - yet the hardest (meh.. yeah Assembly is the hardest actually ;)). I'll try to stay away from this one. ----- Stuff I'm looking at: Mandrake- Nice and simple to set up and use...etc. I heard Mandrake was VERY buggy and instable. Debian - A lot harder to set up, a very good balance of both power and simplicity. Stable SuSe - Meh.. you gotta love the Live Eval (boot Linux straight off the CD), but now…
Last reply by fenris, -
-
- 0 replies
- 1.7k views
I can do a work-around to get email bodies to display in AxWebbrowser, by saving the text to a temporary html file and then navigating the URL to it If there is a better way with a windows form, I would love to hear it. That seems kinda clunky Also, is there form that I can use to create a new email body with HTML? I know about FreeTextBox but it only does ASP.Net and this is VB.Net for windows app Thanks!
Last reply by TheWizardofInt, -
- 1 reply
- 1.3k views
Hi, Can any body guide me how to create a report from the Field Definitions Only datasource in crystal reports. I tried it but it does not display the data when i pass a dataset to the report. Regards,
Last reply by gprabaka,
-
Who's Online 0 Members, 0 Anonymous, 50 Guests (See full list)
- There are no registered users currently online