- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
24 Posted Topics
Good day. I have a friend who wants to start a business that offer paid telephonic support. How it needs to work is that someone must book a time slot, enter their credit card details or do some sort of payment, and then be allowed to talk to the operator … | |
Hi Guys. We are seeking to create a wireless wide area network in an area that is saturated in wireless ubiquiti antennas. We have tried our own ubiquity antennas and have discovered that there is way too much noise in the area for the equipment to function properly. The areas … | |
Hi guys. I have two servers: 1. Client Facing Production Server 2. API Server. The Client facing sever (Server1) sends requests to the API Server (Server2). Server2 is hosted with one staric IP address and is accessible through three domain names, e.g. **www.domain1.com**, **domain1.com**, **test.domain2.com**. Often times the Server1 seems … | |
Hi DaniWeb People. I am not really a network guy so please excuse me if this is a silly question. I want to find out if it is possible for me to set up one server that allows me to create various user profiles and let employees log into the … | |
Re: Hi There, There are quite a few issues with your code but i will attempt to fix them. In your HTML / JS you should use proper naming in your control names, i have changed the [] in the names with a logical incremental integer value which will then loop … | |
Re: well in theory this is wrong: `var QuotationPrice = (kilometres() * fuelCost()) + wearAndTear() + labourCost() + additionals();` should be `var QuotationPrice = (kilometres * fuelCost) + wearAndTear + labourCost + additionals;` | |
Hi al you wonderful daniweb peoplez :) I am currently on a mission to write some cool javascript / jquery / ajax controls and now i realised that if I call the control multiple times it seems to lose scope. I realise that this is a small design flaw, and … | |
Hi All. For some odd reason it feels like this should be an extremely easy principle but yet I cannot seem to do this properly. I know that there might be other ways to accomplish this but for the sake of my current project, i require this. What i need … | |
Hi there guys, I have quite a stupid question which for some reason I cannot wrap my head around. I have a table with supposed 4 cells (2 rows x 2 columns) but I want to set the 2nd column's rowspan to 2 making 3 cells <table> <tr> <td id="cell1" … | |
Hi There, I am quite new to simpleXML and I would like to know how I can access child nodes by index singe I do not have the node name The XML would look like this: <?xml version="1.0" encoding="UTF-8"?> <Root> <SubRoot> <Content ItemType="ItemType1"> <ItemDetails> <ItemDetail> <City Code="CPT"><![CDATA[Cape Town]]> </City> <Item … | |
Re: > tring[] fileA = System.IO.File What us the error you get on the line : string[] fileA = System.IO.File.ReadAllLines(@"textBox1.Text"); ? My bets are that you need to open the file in a stream ? You can always also use : System.IO.File.Copy ? | |
![]() | Re: Well since you use the word panel - i am assuming that you use ASP.NET ? or are you working with WinfOrms? The approach you would use for ASP.NET would be to use <asp:Button ID="btnClickMe" Text="Click Here to alternate between panels" onClientClick="CheckPanels(); return false;" /> <div id="divONE"></div> <div id="divTWO"></div> Use … |
Dear Daniweb members. I am having quite a troublesome time here with OleDb. What I am trying to achieve is to allow my users to connect to an uploaded Excel workbook, then to be able to select data from the sheets. I have a query designer in the front end … | |
HI. I have a situation where we need to pull data from multiple data sources into one dataset. Once we have the data in one dataset we would like to somehow manage to execute some sort of [complex] select query on the data in order to generate a new DataTable … | |
Re: You should not delete the "unneeded placeholder" because it is there for a reason. Master pages act as components on a form, not a form in itself. The one placeholder contains the master page's content while the other will contain the content page's content. Hope this helps. | |
HI i am trying to convert a doc file to a pdf file. please see my conversion code below [CODE] private string m_SourceFilePath; private string m_DestFilePath; public bool DoConversion() { bool returnValue; Word.WdExportFormat exportFormat = Microsoft.Office.Interop.Word.WdExportFormat.wdExportFormatPDF; object paramMissing = Type.Missing; Word.ApplicationClass wordApplication = new Word.ApplicationClass(); Word.Document wordDocument = null; try … | |
Re: You have one of the following issues. if the compiler gives you an error : make sure you right click on the image and choose "include in project" the path to your image might also be wrong, i recommend using "~/img.jpg" please make sure you dont have an absolute path … | |
Re: Oracle scripts are similar to T-SQL scripts, you should be able to do basic insert update select and delete commands in the same manner. this will apply to MySQL, ACCESS , EXCEL and PostgreSQL - SQLite. [CODE]SELECT COMMAND : SELECT [column1], [column2] FROM [Table] WHERE .... INSERT COMMAND : INSERT … | |
Re: welcome to the world of windows server security. My best bet would be to allow permissions on the folder of your whole web application to the application. the chances of this working is scarce. but i dont see any other way. | |
Re: you need to be more specific. The prime cause is most likely that you are using threading, inappropriately. Threading can cause a lot of unexpected locks that you wont find whilst testing on XP / VISTA / WIN7 try to minimize threading. and make sure that there are no code … | |
Hi, I am experiencing some abnormal application behavior. I wrote an application in C# that does hourly database , as well as directory backups. Its constructed in a way that all settings are saved in XML file. and once the user allows the application to start doing the scheduled backups, … | |
Re: Hey there, you might want to visit this site [URL="http://www.connectionstrings.com/"]http://www.connectionstrings.com/[/URL] a sample connection string as mentioned there would look like this: Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword; [COLOR="Red"]PS :NEVER PUT ON YOUR REAL LOGIN DETAILS !!!!!!!!! Anyone can access your server with those details[/COLOR] What you are searching for is to log … | |
Re: Hi there, you CAN pass a parameter through to the form2, you just do it wrong. check out the code i modified for you [CODE] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication1 { public partial class Form1 : Form … | |
Good day, i am creating a component, with an enum property for the property grid. [CODE] // The DataSources enumeration. public enum DataSources { MSSQL = 0, MYSQL = 1, POSTGRESQL = 2, ORACLE = 3, DSN = 4, EXCEL = 5, ACCESS = 6, } private DataSources m_DataSources; /// … |
The End.