Topics
-
- 0 replies
- 1k views
Is there a way to find all the users who are currently logged on to our Windows network? I searched through the past posts but couldn't find anything helpful. Thanks for any help...
Last reply by nbrege, -
- 1 reply
- 980 views
I am pretty new to SQL. I've been writing a program that accesses a MySQL database on a server computer from another computer here to do all of its work (stores and retrieves everything on/from the remote database), just to learn how to get it all to work. Now that I have that learning part done, I need to change the program to have it connect to the remote computer only to get one database update (for selectable items), but keep everything else (names, phone numbers, selected items, etc.) on a private database stored on the user's computer that never has anything to do with the internet. I have no idea what the correct term for this kind of private database is, how i…
Last reply by MrPaul, -
- 1 reply
- 2.6k views
I need help on the following. I have 2 classes generated from 2 schemas using xsd.exe. The object of one class is an embedded tag in the other class. When i try to deserialize the xml file into local object, i only managed to deserialize the tags for the outer class but failed on the objects for embedded tags. The problem lies in class didl.cs (the outer tag class). Within the statement class, the property Any is recognized as XMLElement. But i want it to be deserialized into DIA (inner class) object. How do i achieve this? Can anyone help me on this? Thank you in advance. Method invoked on the form load: private void Form1_Load(object sender, System.…
Last reply by MrPaul, -
-
- Administrators
- Leaders
- 6 replies
- 1.4k views
In VB6.0 I was using this: Printer.Print(TextBox1.Text) To print the contents of a text box via a printer. That was OK and simple! But now in VB.NET 2005: Private Sub PrintLogButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PrintLogButton.Click Try PrintDialog.Document = PrintDocument If PrintDialog.ShowDialog = Windows.Forms.DialogResult.OK Then PrintDocument.Print() End If Catch Exception As Exception End Try End Sub Private Sub PrintDocument_PrintPage(ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDocument.Pr…
Last reply by snarfblam, -
-
- 0 replies
- 1.8k views
I have some issues in understanding howto correctly deploy sse Y already made the application and I wand to distribute it using an .exe file First I only checked the Prerequisites for the Framework, installer and that worked fine Now I checked the Prerequisite for the server express as well. Sofar so good, but when I try to install the .exe on too my second laptop It starts by installing sse first before installing the Framework or the installer for that matter. This will generate an error ofcourse (I read that somewhere) Second, I also want too pass arguments about what too install and also do it silently. This is where I get lost Can I do this by setting…
Last reply by richard71, -
- 0 replies
- 734 views
I'm running Visual Studio 2003 Academic on my home box, with Win XP Pro SP2. I upgraded my hard drive (via Ghost) and memory 2 months ago, and hadn�t been back into VS since. The other night, I opened VS and it is requiring me to reregister. The reregister/install process seemed to indicate that the prerequisutes weren't right. I tried to reload the prerequisites, but got warnings on some, and errors on Visual J (don't use it, but don't want to see errors). When putting the setup disk in, the only option Setup would give is "Uninstall". I decided the best thing to do was uninstall through "Add/Remove programs" (which gives the same menu screen ad the setup disk). The un…
Last reply by texasprd, -
- 1 reply
- 5.2k views
Hey! I was wondering if someone might be able to help me with a little problem of mine? I am in the midst of writing an OpenGL application to load maps (aka levels) from the Jedi Engine by LucasArts, used in Dark Forces and Outlaws, and everything was going great until I had to draw the floors and ceilings of the sectors, allow me to elaborate: A sector is a simply, often concave, polygon connected by a series of points to form the sector and since OpenGL cannot render concave polygons, only convex ones, I have to triangulate the sector myself and for the life of me I can't figure it out. I've posted on some forums and even email Ken Silverman, the creator…
Last reply by MrPaul, -
-
- Leaders
- 2 replies
- 2.6k views
This is the first time i've done anything with the drawing classes so bear with me! Basically I have a jpeg of a map of the UK, I want to display this on a windows form, thats the first thing. Then in a database I have loads of members details, for each member there is also "easting" and "northing" which are ordanance survey grid references and relate I believe to the number of metres north and east from a point somewhere in the sea to the bottom left of the map. For example 37570 E and 42860 N refers to Accrington, Lancashire. Basically i'm looking to do a function that takes the northing and easting values and plots a point on the jpeg map. How would I go…
Last reply by Mondeo, -
-
-
- Administrators
- Leaders
- 4 replies
- 4.1k views
My old VB6 code for changing icons does not seem to work with out modifications. Now I'm stuck with the SHChangeNotify. Does any one know how to get this API work in VB 2005 Express? 'Declarations Private Declare Function SHChangeNotify Lib "Shell32.dll" (ByVal wEventID As Long, ByVal uFlags As Long, ByVal dwItem1 As Long, ByVal dwItem2 As Long) As Long 'Private Declare Sub SHChangeNotify Lib "shell32.dll" (ByVal wEventId As Long, ByVal uFlags As Long, ByVal dwItem1 As Object, ByVal dwItem2 As Object) Const SHCNE_ASSOCCHANGED = &H8000000 Const SHCNF_IDLIST = &H0 'In a sub 'Notify shell icon has changed SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, vbNu…
Last reply by JumpyNET, -
-
- 0 replies
- 944 views
Hey everyone! I just wanted to get the word out that I've finished the first version of a .NET wrapper for ColDet, a collision detection library. I figured it might come in handy to those needing collision detection in .NET. Its open source and you can find it at: http://coldetdotnet.sourceforge.net Jimmy
Last reply by Razor89, -
-
- *Experts*
- Leaders
- 3 replies
- 1.9k views
Aslam alikum plz tell me abt that how to assign a short key to a button in vb.net like CTRL+S
Last reply by snarfblam, -
-
- 0 replies
- 1k views
This example let's you select an icon and draw the 16x16 and 32x32 icons to a picture box. Just create a new form with two picture boxes and one button. Then use the following code: Public Class Form1 Private Declare Unicode Function SHChangeIconDialogW Lib "shell32" Alias "PickIconDlg" (ByVal hOwner As IntPtr, ByVal szFilename As String, ByVal Reserved As Integer, ByRef lpIconIndex As Integer) As Integer Private Declare Ansi Function SHChangeIconDialogA Lib "shell32" Alias "PickIconDlg" (ByVal hOwner As IntPtr, ByVal szFilename As String, ByVal Reserved As Integer, ByRef lpIconIndex As Integer) As Integer Private Declare Function ExtractIconEx Lib "shel…
Last reply by JumpyNET, -
-
- Administrators
- 2 replies
- 1.1k views
I have written I stored procedure and it works but it is giving me warnings. The warnings it is giving me are as follows: Warning: The table '#HEADERINFO' has been created but its maximum row size (8435) exceeds the maximum number of bytes per row (8060). INSERT or UPDATE of a row in this table will fail if the resulting row length exceeds 8060 bytes. (1 row(s) affected) (3 row(s) affected) Warning: The table '#HEADERINFO' has been created but its maximum row size (8435) exceeds the maximum number of bytes per row (8060). INSERT or UPDATE of a row in this table will fail if the resulting row length exceeds 8060 bytes. (17 row(s) affected) Warning: The …
Last reply by lothos123452000, -
-
-
- *Experts*
- 2 replies
- 1.1k views
how to change themes for controls in vb fourm and assign a new window theme ? that is used in window xp. like i want to set default window xp classic theme. secondly i want to use a same datagrid view i generated in one form in to others forms with same parameters. is it i make it class ? how to convert it in custom tool
Last reply by Nerseus, -
-
-
- Leaders
- 6 replies
- 1.4k views
I just had an Edit & Continugasm!!! I had to turn it off because it caused errors on my computer and crashed VS2005 like 50 times a day. So I just installed the SP1 and it seems to be working. I don't have to stop my app to change a simple setting or comment out a line of code!!! Oh, did I mention that I was happy? :D :D :D
Last reply by mskeel, -
-
-
- Administrators
- 4 replies
- 1.5k views
In .net framework 1.1, I can just upload my DLL file & edited aspx only. But in .net framework 2.0, after I publish web site, I need to upload my DLLs (there are few dlls) and all my website aspx? Any alternate solution for this?
Last reply by Wraith, -
-
- 3 replies
- 891 views
I have a manager that wants to be able to access a site and update the description of the site that is visible to the user at any time. Can anyone suggest possible solutions, one thing that I was considering was a field in the database that holds the text that the user sees. The second option is a text file which is somehow linked to the .aspx page. Mike55.
Last reply by mike55, -
- 1 reply
- 1k views
how to attach a picture box with a file browser dialouge? when i choose picture it loads in picture box and on saving its save in to database
Last reply by MrPaul, -
-
- *Experts*
- 2 replies
- 1.2k views
Hello, I have a database with multiple tables that reference each other using foreign key constraints. On each of these columns i set a different nonclustered index. However it seems that not everywhere i have a join on those foreign keys the index is used. My question: Is there a chance that a query uses a nonclustered index and the execution plan doesn't show it? I've red somewhere that the nonclustered indexes use the clusterd index to retrieve their data and i was asking myself if this wouldn't hide the use of the nonclustered index in the execution plan. thank you!
Last reply by Puiu, -
-
-
- Leaders
- 3 replies
- 1.4k views
Hey, Just wondering is there any .NET equivalent to the Me.Circle method on a form for drawing a circle? Thanks
Last reply by snarfblam, -
-
Who's Online 0 Members, 0 Anonymous, 47 Guests (See full list)
- There are no registered users currently online