No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
13 Posted Topics
Hi Guys, I tried searching on the net for a code to compress/zip files in VB.Net, but could not find any solution. Can anyone help me with this - I do not like that one of using 3rd party components to do this. Alternatively, I need a code that will … | |
I have a string "Hello World" I want to change the color of [COLOR="red"]Hello[/COLOR] to red using the [B]setCMYKColorFillF[/B] function. I'm writing the string to a PDF file I know I'll use to write to the pdf: private PdfContentByte WriteTxt = null; WriteTxt.setCMYKColorFillF(float Cyan, float Magenta, float Yellow, float Black); … | |
I have a flash file that reads an xml file and writes the text on the flash. The problem I have is when the client does not have the font that I'm using. I looked on many websites and they always say you have to do the following [LIST=1] [*]Open … | |
I am having a problem with sending an email with an attachment Set msg = CreateObject("CDO.Message") msg.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing")=2 msg.Configuration.fields("http://schemas.microsoft.com/cdo/configuration/smtpserver").Value="100.1.2.3" msg.Subject = "Test Subject" msg.From = "some@email.com" msg.To = "some@email.com" msg.TextBody = "Test Message" msg.AddAttachment "C:\files\a.doc") This works fine, but my problem is when a client/user use his computer to send an … | |
I have two questions 1. How do I use a Replace() function in JSP e.g. String strName = "My name is"; String strName2 = replace(strName, "is", "is Michael"); 2. How do I make a string to start with a capital letter e.g. I want [COLOR=red]d[/COLOR]avid to be [COLOR=red]D[/COLOR]avid Thank you. | |
I have a problem with my Hashtable output Hashtable HashTest = new Hashtable(); HashTest.put("B_1", "A"); HashTest.put("B_3", "B"); HashTest.put("B_5", "C"); HashTest.put("B_7", "D"); HashTest.put("B_9", "E"); HashTest.put("B_11", "F"); HashTest.put("J_1", "G"); HashTest.put("J_3", "H"); HashTest.put("J_5", "I"); HashTest.put("J_7", "J"); HashTest.put("J_9", "K"); Enumeration enum1, enum2; enum1 = HashTest.keys (); enum2 = HashTest.elements (); String CityCode, CityName; while … | |
Hi guys, I have a form with many text fields that are created from another program (java) <input type=text name = 'myname1'> <input type=text name = 'myname2'> <input type=text name = 'myname3'> . . . . . and I have a javascript that loops through these text fields for (var … | |
Hi guys I have a tricky XML/Java situation that I need some tips on I have an XML file <country> <country-name code=”USA”> <city>City1</city> <city>City2</city> <city>City3</city> </country-name> <country-name code=”FRA”> <city>City1</city> <city>City2</city> <city>City3</city> </country-name> </country > Firstly I need to count how many cities per country. I know I have to get … | |
Good day, I have a PDF file that acts as my template. I know how to use the x, y cordinate to put an image into that PDF file. My problem is that my PDF file has about five pages and I want to put this image in the second … | |
Hi Guys, I am using that inet FTP control in VB6. I can download files from the FTP server to my local directory, but during the download, i lose network connection and the application just bombs out. How do I resume the download to where it left off in VB6? … | |
Hi Guys, I have a web server called [B]Server123[/B] that is hosting my web application called [B]Myapp[/B]. There are users that connect to this using [URL]http://Server123/Myapp/default.aspx[/URL] There is an ftp server called [B]FtpServer123[/B] that has files that I need the users to download to their local machines. What I need … | |
Hi guys, I have an ftp server that I need to copy files from. The files are big, so i need to compress them first before i can download them. How do I do this in VB.net I can see all the directories and files using asp.net and vb.net, but … | |
Hi Guys, I have an aspx page called Main.aspx which has several text boxes and a button. When I click on this button, it opens up a popup window called SubMain.aspx I want to drag and drop those text boxes from the Main.aspx page to this new popup window. Is … |
The End.