Topics
-
- 2 replies
- 973 views
Hey buddies, How long until VS .NET 2005 to be released? Is it worth to buy VS .NET PRO 2003 at the moment?
Last reply by EFileTahi-A, -
- 0 replies
- 936 views
Hi My query relates to session management when a smart device accesses a web service. CookieContainer works fine for maintaing session for web apps. Since the CookieContainer is not currently supported in the compact framework is there a workaround for storing and retrieving session information within a webservice when the client is a standalone Pocket PC application? Regards
Last reply by ksbhangu, -
- 0 replies
- 1.2k views
I have a pgm attemps to shutdown com apps on remote systems. My pgm launches a thread for each app on each system (in hopes of best performance) to perform the shutdown (and some other stuff). I do a comcatalog connect, and that works fine, but my comcatalog shutdown errors as: System.Runtime.InteropServices.COMException (0x80110809): One of the specified objects cannot be found at Microsoft.VisualBasic.CompilerServices.LateBinding.InternalLateCall(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack, Boolean IgnoreReturn) I'm at a complete loss. Can anyone help???
Last reply by rweirick, -
- 0 replies
- 930 views
Hi How can I change the layout of a report from horizontal to vertical? Mike55
Last reply by mike55, -
-
- Administrators
- *Experts*
- Leaders
- 7 replies
- 2.6k views
Yesterday (16-5-2005 (Sunday)) I started to learn DirectX's DirectDraw, I thought it would be harder, but, like the book's author (from which am learning DirectX) stated, "it's simpler then you imagine". Anyway I noticed some HEAVY (at least for my needs) limitation on DirectDraw. I can't draw pictures off borders. That is, DirectDraw only draws inside the actual screen size. If I have an 800x600 screen it means I cannot draw with values less then x0, y0 or bigger then x800, y600... Since am now porting my 2D Tiled Game Editor to DirectX which draws images (in some ocasions) off-border am pretty stucked right row as I have no ideia how walk around this. In theor…
Last reply by nihuo13, -
-
I am making a test that by every 4 hours report an excelfile. While running the test I want to be able to look in the present and previos excel file. But somehow it would not let me do it, it is like the previous file is not released. Could anyone tell me what I am doing wrong ? private Excel.Worksheet ws; private ExcelClass logfile; ws = logfile.Activate(); // 4 hours has gone save file and make a new if (timesp.Hours > 4) { logfile.Save(); logfile.Close(); System.Runtime.InteropServices.Marshal.ReleaseComObject(ws); ws = null; StartNewReport(); // Waiting for a new worksheet…
Last reply by Jedhi, -
- 0 replies
- 1.4k views
Hi, I'm trying copy file from aspnet server to another pc in my LAN. System.IO.File.Copy("file.txt",@"\\secondpcname\folder\file.txt"). But I get this error: The referenced account is currently locked out and may not be logged on to The user in my IIS aplication configuration is ASPNET. In second pc folder I have grant write privileges to server pc. If I put <identity impersonate="true" /> in webconfig it ask me user and password. Thanks Hip Hop
Last reply by wakeup, -
-
- Leaders
- 2 replies
- 1.9k views
private void menuItem2_Click(object sender, System.EventArgs e) { this.openFileDialog1.FileName = "*.xls"; if (this.openFileDialog1.ShowDialog() == DialogResult.OK) { Excel.Workbook theWorkbook = ExcelObj.Workbooks.Open( openFileDialog1.FileName, 0, true, 5, "", "", true, Excel.XlPlatform.xlWindows, "\t", false, false, 0, true); // get the collection of sheets in the workbook Excel.Sheets sheets = theWorkbook.Worksheets; // get the first and only worksheet from the collection // of worksheets Excel.Worksheet worksheet = (Excel.Worksheet)sheets.get_Item(1); for (int i = 1; i <= 10; i++) { Excel.Range range = works…
Last reply by Roswell, -
-
-
- Leaders
- 1 reply
- 7.9k views
How do you get the mouse cursor to appear as an hourglass while the program is running in VB.NET? Any help given is greatly appreciated.
Last reply by snarfblam, -
-
-
- Leaders
- 7 replies
- 1.6k views
can i make a line like this? thx :)
Last reply by snarfblam, -
-
- 3 replies
- 1k views
I have a server running IIS 6 with multiple websites that I maintain on it. Each site gets promoted to a separate web host, depending on the customer's selection. A representation of the development server's configuration is below. DEV Website Customer1 Images Survey Customer2 Customer3 Customer4 I have been able to get the Customer1\Survey\Default.asp page to reference the Customer1\Header.asp include file by turning on the Enable Parent Paths in IIS 6.0 and using <!-- #Include File="../Header.asp" --> (Note that I would prefer to use this without the .. in it to reference the customer's root folder.). Now the Header.asp file load…
Last reply by Aspnot, -
- 1 reply
- 1.1k views
I'm interested in hiding those navigation buttons when there's only one page to display in a datagrid. How do u hid' em from code ?
Last reply by PROKA, -
-
- Leaders
- 1 reply
- 1.1k views
Hi, i have a panel with AutoScroll set to true. Can i set SmallScroll (this property was in VBA)?
Last reply by snarfblam, -
-
- 0 replies
- 947 views
hi all. starting to investigate these web services. i have the simple hello world service created. its deployed to IIS. when i try to telnet "telnet localhost 80" thats fine. i set the local echo so that i can see whats going on. i try to use HTTP GET like this: "GET /WebService1/Service1.asmx/HelloWorld HTTP/1.1" it says this is an invalid command. im going mad. i have checked spelling mistakes, and loads of stuff and i cant telnet my service. any ideas? heres the service. not much i know: public class Service1 : System.Web.Services.WebService { public Service1() { InitializeComponent(); } [WebMethod] public string HelloWorld() { return "H…
Last reply by fguihen, -
- 2 replies
- 1.1k views
i hv done a project in VB.NET. can i do a program in ASP.NET to call the project? Thanx 2 reply!
Last reply by mark007, -
- 1 reply
- 1k views
Anyone got any experience with this book? It's pretty cheap on amazon so I might buy it, I'd like some user feedback though. http://www.amazon.com/exec/obidos/tg/detail/-/1556222297/qid=1117632289/sr=8-4/ref=pd_csp_4/103-5122963-2991824?v=glance&s=books&n=507846
Last reply by ThePentiumGuy, -
- 0 replies
- 1.5k views
Hello, i need a little help... i must to load a XML File, from an URL, to a Memorystream, or something like IO.Stream. i try buy i was unable to do it... thanks!
Last reply by Rothariger, -
- 1 reply
- 3.1k views
I have created a program to monitor a network folder for file additions based on this link: http://abstractvb.com/code.asp?A=1081 It works fine on my local drive, however, it does not work when monitoring a network driv folder. What permissions do I need to change in order for this to work for a network folder and where are these permissions located? I have admin rights on the network drive, but apparently this does not matter. Thanks, Chester
Last reply by cpopham, -
- 1 reply
- 1.1k views
Dear all, I am using MS Access Database. I am building the queries in Access Database and Executing them using stmt "Execute QueryName". Is there Any way to pass the parameters to Access Queries. That is i want to Execute the query by passing a value to it. Is it possible to do so? If so please mention it. Thanks.
Last reply by stustarz, -
- 0 replies
- 1.1k views
Dear all, I want to display the cursor(when form loads) in the last row of the datagrid so that user can identify the position where he should enter the data.How to do this. Thanks
Last reply by smriti,
-
Who's Online 0 Members, 0 Anonymous, 66 Guests (See full list)
- There are no registered users currently online