Hi there, I would like to make a system tray icon from Adobe AIR app a drop target. Is this even possible ? Digging hard, but without success so far.
Thanks
Hi,
I am trying to call a process using System.Diagnostics.Process, send it a parameter, just for the sake of trying it out i am sending "-h" which should generate a list of help options and I need the output.
So far I have tried,
ProcessStartInfo startInfo = new ProcessStartInfo("C:\\agfl\\agfl.exe");
startInfo.WindowStyle = ProcessWindowStyle.Normal;
startInfo.CreateNoWindow = false;
startInfo.Arguments = "-h";
Process.Start(startInfo);
Any help please?
Thanks :)
Hi Friends,
I have a Active Directory controller on a Windows 2003 server. My users use Windows, Linux, Mac OS, Novell Operating system on client machines.
I need to create a login script which is interoperable on all the client operating systems. Any ideas would be greatly appreciated on how to accomplish this.
I was searching for a script which when runs, detects the target OS type and then run the related script to that OS.
Any Ideas?
In My application Sending mail works fine locally. on hosting server(GODADDY) it gives Sys.WebForms.PageRequestManagerServerErrorException:System.Security.Permissions.SecurityPermission while i am sending mail.
what is the wrong? Can anybody help me?
Hi,
We were given an assignment to develop a prototype for a customer community. It was suggested PHP as the programming language. (but we're not supposed to actually code it, just a prototype with documentation is required)
I'm wondering what are the best practices/ tools used in Unit testing, Integration Testing and System testing for such a php app
Thanks
Hi. I am working on a android project and I need to connect the gPhone with the PC using UDP socket. The same operation, sending a message to from gPhone to the PC, returns different results in different time: Sometimes succeeded and sometimes throws a SocketExcepton(The system call was cancelled). Can anyone tell me what possibly results in this SocketException?
Thanks in advance!
I know it's not a programming question but I'm in a hurry to choose a netbook like this and I haven't been able to find the minimum system requirements for an R installation (e.g. minimum RAM). I am interested in a small netbook so as to be able to use it in class. Has anybody used R in a netbook that would recommend for that use?
I'm looking for the ability to use a revision control system for websites, but ALSO have the revisions go live immediately.
Example: A developer submits to the repository, those changes are live immediately pulled from the repository.
Any suggestions on available software?
Having installled Windows Server 2008 R2 and enabled Hyper-V with two monitors working successfully on the WS2008 host, I would like to enable multi monitor support on a Windows 7 guest operating system.
Can I do it? If so, how?
i am doing a project about shell, and i want the code that gives me the path of the system call.
example, when i enter the command
type dir
the reply will be
dir is external command (/bin/dir)
Are there any C++ libraries similar to Ncurses, but for Windows? It seems there are no ports of Ncurses and I need a really good display system like it.
Any suggestions? Cross-platform is a plus.
Where can I find System.Windows.Controls.dll for Silverlight 3? I need it to be able to use the TreeView control and the AutoCompleteBox control. Toolkit November 2009 is installed but the dll that I need was not included.
I'm looking for a minimalist template system for javascript, ala John Resig's Javascript Micro Templating. The smaller the better, and if it's jquery based even better. Recommendations?
I tried John's micro-templating but ran into a few issues, wanted to see if there are more baked / better packaged solutions out there.
[Update] I tried Resig's Micro Templating again and it's working well for me. Would still like to hear about other alternatives if there are any.
I am using ASP.NET C# with mySql database. What is the best way for implementation of login system like Membership and Role. Membership and Role dont work with mySql database.
I would like to cross compile an ansi c program from linux for a the barest bare boned operating system that can read a single file and write to a single file on an x86. Then I would like to reboot into that bare os, and run that single program. What are my choices ?
Is there a way to override / disable a system preference pane? I'm wanting to put an application together that would disable or override the Energy Saver preference pane, and would put it's own rules in place for putting a machine into standby, turning off the monitor, or other various energy saving activities.
Hi guys,
I'm doing a system for a hospital in my country as the final year project of my degree, my supervisor specially asked me to use php and mysql for this. i don't have any experience with distributed systems and php programming, can any one help me out to build my base and improove my knowledge stating some sites, books to refer to overcome this matter.
regards,
rangana.
Hello,
I am planning to launch a free webmail service at mail(dot)com(dot)es where users can signup and have their free webmail account (for example like www.email.gr). I am looking for a free or low cost webmail system script to install on my website. Do you know any free or low cost scripts which would be suitable for this?
Thanks
Hello,
I am trying to fetch data using linQ as shown below.
dim rerun as datetime
Dim q = (From a In dashboard Where a.SucessFlag = 0 And a.ApplicationID = 1 _
Select a.logDate)
rerunDate = q
I am getting this system.LinQ.Iqueryable(of date) cannot be converted to date
Any workaround will be greatly appreciated.
Hey
Does anyone know of a good open source client document management system?
Possibly using Joomla or Wordpress?
I need to be able to allow different clients to log into the website to download their documents and upload their documents?
Any ideas?
Hi all,
I have a Java app that has an icon in the system tray.
How can I check if the tray (or tray icon) has current focus?
Tray and TrayIcon don't seem to have .isFocused() or similar.
Is this possible?
Thanks!
My C# application throws a System.IO.IOExcepton (The directory name is invalid) for the following code for implementing a filewatcher:
public void OnChanged(object source, FileSystemEventArgs e)
{
DirectoryInfo dList = new DirectoryInfo(e.FullPath);
FileInfo[] TxtFiles = dList.GetFiles("*.TXT");
}
e.FullPath is "C:/Documents and Settings/Bi/Application Data/TestApp/Reports\\0MA01P62240_000005798_TRI_4947712701738551.TXT".
If you notice it seems to append a "\\" to the path when it tracks the file. Any idea what the problem may be?
Hello there, I have written some general functions to convert between decimal and any other base-n number system(n<=36 for now) and vice-versa. Don't want to make things messy here so i have posted the code here.
Could anybody suggest any better way for this? May be more effective and Rubyish?
Thanks