Topics
-
-
- Administrators
- 8 replies
- 1.4k views
Hello, I have created a application using Visual Studio 2005, The application runs fine on my machine (The one it was developed on) but not on any others. On other machines the when you launch the application the exe stays running (You can see it in task manager) and it runs with a very high CPU usage (60 / 70 %). I think it could be something to do with the references (DLL files) but i have tried all i know to fix that and im still having no luck :(. Is there any common causes that cause this? Thank You
Last reply by Eduardo Lorenzo, -
-
-
- Administrators
- *Experts*
- 8 replies
- 1.4k views
Hi, I was looking for a way to make my form fullscreen. I have tried a few things and looked on the interweb :) but nothing seems to work, but it looks like it should. for example: Const HWND_TOPMOST = -1 Const HWND_NOTOPMOST = -2 Const SWP_NOSIZE = &H1 Const SWP_NOMOVE = &H2 Const SWP_NOACTIVATE = &H10 Const SWP_SHOWWINDOW = &H40 Private Declare Sub SetWindowPos Lib "User32" (ByVal hWnd As Long, ByVal hWndInsertAfter As Long, ByVal X As Long, ByVal Y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load …
Last reply by MrPaul, -
-
- 1 reply
- 754 views
i got this requirement from user. - If user close IE before signing out Infohub, it will automatically sign out for user. - If the system left to idle more than 24hours, end the session and log off. - If user open 2 browser at the same time using the same pc, and login using same ID at the both browser, and close one of the browser, it will also end the session for the other browser. I found some entry saying bout using 'onClose' event but i'm not sure how to apply it in my code. Right now i'm using asp.net. Help will be appreciate.
Last reply by Eduardo Lorenzo, -
-
- Administrators
- *Experts*
- 7 replies
- 1.1k views
Hi, i want to update first record founded by WHERE statement? like as LIMIT but in vs.net and access database
Last reply by Nerseus, -
-
hi all id like to load ms word as a child form in an mdi application using vb.net 2003. how do i go about that
Last reply by alien, -
- 0 replies
- 647 views
Hi, I have applications in vb.net 2003 and csharp 2003 developed using .net framework 1.1. developed with regular windows xp environment. I would like to deploy them on Embedded XP platform. I know people have tried developing appications using compact framework and try installing it on regular systems and it runs fine. I am trying the opposite. I have not tried deploying it on windows xp embedded platform. Can the applications be directly deployed to the embedded platform or are there any changes that would need to be made? Are there any tools that would help make the process easier? Any pointers on this topic would be appreciated. Thanks in advance, Lin…
Last reply by linesh, -
- 4 replies
- 1.6k views
hi, there is ways to use flash file (swf) in forms how can i use transparent flash in my forms that be transparent form? is there any way?
Last reply by hamid, -
- 1 reply
- 2.5k views
I copied the following code out of MSDN. I am trying to make the Alternate View email method work, but am having some difficulty. I receive a "{"Illegal characters in path."}" error. ANy suggestions? // Construct the alternate body as HTML. string body = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">"; body += "<HTML><HEAD><META http-equiv=Content-Type content=\"text/html; charset=iso-8859-1\">"; body += "</HEAD><BODY><DIV><FONT face=Arial color=#ff0000 size=2>this is some HTML text"; body += "</FONT></DIV></BODY></HTML>"; // Add the alternate body to th…
Last reply by kcwallace, -
- 1 reply
- 886 views
Hi all, I'm trying to programmatically change the Recording Control, you can see it in the Control Panel's sound options for recording. I'm sure there is some way to do it but I'm at a loss. I want to change "What U Hear" to Microphone and back is all. The closest I have got is the "NtDeviceIoControlFile" when monitoring the process while I changed it. I'm sure since searching everywhere, and finding absolutely nothing, that none has attempted this but I figured to post it, any code or ideas would be great! TYVM!
Last reply by Ginanity, -
- 0 replies
- 702 views
I am having an issue currently, where if I open my Access database (It's not open Exclusively. Just open to where you see a list of tables/queries/etc), I get the following error on my website: (Line 253 is highlighted) Length cannot be less than zero. Parameter name: length Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.ArgumentOutOfRangeException: Length cannot be less than zero. Parameter name: length Source Error: Line 251:// try{ Line 252: Line 253: LeftNavMain(); Line 254: …
Last reply by Fork501, -
-
- Administrators
- 12 replies
- 1.2k views
Yeah, this is pretty minor and kinda silly, but when I type this line: <script runat="server" language="VB"> and I get to the language tag, it suggests: ecmascript, javascript, jscript & vbscript. I'm using VS2005 and following a book on learning ASP.Net. It's just annoying each time I try to type "VB" "vbscript" is inserted and I have to go back and delete it. In this case I do not have a page directive stating that I'm using VB, so the tag is required. Thanks if anyone knows why.
Last reply by amir100, -
-
- 0 replies
- 3.6k views
I currently download data from a database into a Dataset table, then display the data in a DataGridView. I would like to sort on more than one column at a time in the DataGridView. Can this be done? Also, my column headings need to be quite descriptive which leads to unnecessarily wide columns. Is there a way of turning the text on its side (as in an Excel spreadsheet) to allow narrower columns. Thanks, Ted
Last reply by TedN, -
- 2 replies
- 772 views
I need to add an url to a table cell. I usually use the following, and it has never failed me until now. TableCell c = new TableCell(); c.Controls.Add(new LiteralControl("<a href='" + textURL + "'>" + displayText + "</a>")); Our application allows users to upload a file, and then we store the path in the database. I have found that they store several files as the following: myfolder/xxxLayout File_4.doc Unfortunately, IE translates the "nbsp;" into a space, and therefore cannot find the file. Any suggestions?
Last reply by kcwallace, -
-
- Administrators
- 1 reply
- 1.4k views
Have you seen this one before? I'm wondering if my driver is corrupted or something. string dataconnectionstring ="Provider=OraOLEDB.Oracle;Data Source=-REMOVED-;User ID=-REMOVED-;Password=-REMOVED-"; OleDbConnection dCmqToDB = new OleDbConnection(dataconnectionstring); OleDbDataAdapter dAmqToDB = new OleDbDataAdapter(); try { dCmqToDB.Open(); } catch (Exception ex) { MessageBox.Show(ex.Message); } Here is what I get from the exception. [system.Data.OleDb.OleDbException]: {System.Data.OleDb.OleDbException} System.Object: {System.Data.OleDb.OleDbException} _className: null _COMPlusExceptionCode: -532459699 _excep…
Last reply by PlausiblyDamp, -
-
-
- Administrators
- 4 replies
- 983 views
Hi all (i'm newbie to .net) I've download a dev kit, and am trying to access the functions from the dll. my question is can u makes calls from .net if the dll is written in c++ ? this is called unmanaged code, right? i try two methods, let me giv an examples cause neither way is working.. Public Class Form1 Declare Auto Function MP_GetSwType Lib _ "C:\Documents and Settings\Computer 31\Desktop\SDK\MultiXtR.DLL" () As String Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Console.Write(MP_GetSwType()) End Sub End Class I get this error: Thanks any for help isEy
Last reply by PlausiblyDamp, -
-
- 1 reply
- 902 views
Hi, i have a large table with many records and first i fill my dataset of it. so i want add a new record to it, what shall i do? 1. add new record to database by adapter.insertnew method then i have to fill my dataset again and it isn't correct! how can i add new record to my database that i dont need to fill all of records in my dataset? many thanks
Last reply by amir100, -
-
- Administrators
- 12 replies
- 1.9k views
Hi, my application connect to a database (ms access) and fill a textbox i wanna share my application and database for clients, that clients create a shortcut to my app and run my app. but it dosnt work with database and return error for permission and faild zone (internet) please let me know all necessary works for shared my app for clients
Last reply by amir100, -
-
-
- Administrators
- 3 replies
- 2.5k views
Hi, i wanna run my application from another pc in workgroup that shared. but when run application it show below permission alert: how can i fix it? http://i18.tinypic.com/2zqcwtf.jpg http://i18.tinypic.com/4c24ldi.jpg
Last reply by hamid, -
-
-
- Administrators
- 1 reply
- 717 views
I am having a problem with my program and would like to find someone to walk me through the program so I can understand the parts I am having a problem with. Is there anybody who could help. The program involves the if and if else statements. I have form made and have some of the const and variables declared but need help in other area.:confused:
Last reply by PlausiblyDamp, -
-
- 4 replies
- 1.3k views
Hi, I have a data grid view as shown here. I just want to get the email address of selected row in string! email address in 3rd column, but I could not find how to get it, I mixed some commands and searched MSDN, but couldn't do this simple task!:(
Last reply by NeuralJack,
-
Who's Online 0 Members, 0 Anonymous, 59 Guests (See full list)
- There are no registered users currently online